šablona/atom.xsl
changeset 15 cfb2fc0ca242
parent 7 5b46493979c9
child 18 45e41566f8a6
--- a/šablona/atom.xsl	Thu Apr 28 00:16:00 2011 +0200
+++ b/šablona/atom.xsl	Thu Apr 28 00:16:27 2011 +0200
@@ -8,6 +8,9 @@
 	exclude-result-prefixes="fn g j">
 	<xsl:output	method="xml" indent="yes" encoding="UTF-8"/>
 	
+	<xsl:param name="vstupníPřípona" select="'.xml'"/>
+	<xsl:param name="výstupníPřípona" select="'.xhtml'"/>
+	
 	<xsl:template match="/">		
 	
 		<feed>
@@ -23,11 +26,11 @@
 			<id><xsl:value-of select="concat('urn:uuid:', g:web/g:uuid)"/></id>
 			
 			<xsl:variable name="konfigurace" select="/"/>
-			<xsl:for-each select="collection('../vstup/?select=*.xml')[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(g:stránka/g:skrytá) or not(g:stránka/g:skrytá)]">
 				<entry>
 					<title><xsl:value-of select="g:stránka/g:nadpis"/></title>
-					<xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], '.xml', '')"/>
-					<link href="{concat($konfigurace/g:web/g:url, encode-for-uri($soubor), '.xhtml')}" />
+					<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-->
 					<updated><xsl:value-of select="j:posledníZměna(document-uri(.))"/></updated>