--- a/šablona/atom.xsl Sat Apr 30 17:06:59 2011 +0200
+++ b/šablona/atom.xsl Sat Apr 30 19:34:55 2011 +0200
@@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns="http://www.w3.org/2005/Atom"
- xmlns:g="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/prostor"
+ xmlns:s="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
+ xmlns:k="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/konfigurace"
xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
- exclude-result-prefixes="fn g j">
+ exclude-result-prefixes="fn s k j">
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
<xsl:param name="vstupníPřípona" select="'.xml'"/>
@@ -14,27 +15,26 @@
<xsl:template match="/">
<feed>
- <title><xsl:value-of select="g:web/g:název"/></title>
- <subtitle><xsl:value-of select="g:web/g:podtitul"/></subtitle>
- <link rel="self" href="{concat(g:web/g:url, 'atom.xml')}"/>
- <link href="{g:web/g:url}"/>
+ <title><xsl:value-of select="k:web/k:název"/></title>
+ <subtitle><xsl:value-of select="k:web/k:podtitul"/></subtitle>
+ <link rel="self" href="{concat(k:web/k:url, 'atom.xml')}"/>
+ <link href="{k:web/k:url}"/>
<updated><xsl:value-of select="current-dateTime()"/></updated>
<author>
- <name><xsl:value-of select="g:web/g:autor/g:jméno"/></name>
- <email><xsl:value-of select="g:web/g:autor/g:email"/></email>
+ <name><xsl:value-of select="k:web/k:autor/k:jméno"/></name>
+ <email><xsl:value-of select="k:web/k:autor/k:email"/></email>
</author>
- <id><xsl:value-of select="concat('urn:uuid:', g:web/g:uuid)"/></id>
+ <id><xsl:value-of select="concat('urn:uuid:', k:web/k:uuid)"/></id>
<xsl:variable name="konfigurace" select="/"/>
- <xsl:for-each select="collection(concat('../vstup/?select=*', $vstupníPřípona))[empty(g:stránka/g:skrytá) or not(g:stránka/g:skrytá)]">
+ <xsl:for-each select="collection(concat('../vstup/?select=*', $vstupníPřípona))[empty(s:stránka/s:skrytá) or not(s:stránka/s:skrytá)]">
<entry>
- <title><xsl:value-of select="g:stránka/g:nadpis"/></title>
+ <title><xsl:value-of select="s:stránka/s:nadpis"/></title>
<xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], $vstupníPřípona, '')"/>
- <link href="{concat($konfigurace/g:web/g:url, encode-for-uri($soubor), $výstupníPřípona)}" />
- <id><xsl:value-of select="concat('urn:', $konfigurace/g:web/g:kod ,':strana:', encode-for-uri($soubor))"/></id>
- <!--2010-10-09T20:51:04Z-->
+ <link href="{concat($konfigurace/k:web/k:url, encode-for-uri($soubor), $výstupníPřípona)}" />
+ <id><xsl:value-of select="concat('urn:', $konfigurace/k:web/k:kod ,':strana:', encode-for-uri($soubor))"/></id>
<updated><xsl:value-of select="j:posledníZměna(document-uri(.))"/></updated>
- <summary><xsl:value-of select="g:stránka/g:perex"/></summary>
+ <summary><xsl:value-of select="s:stránka/s:perex"/></summary>
</entry>
</xsl:for-each>