šablona/atom.xsl
changeset 15 cfb2fc0ca242
parent 7 5b46493979c9
child 18 45e41566f8a6
     1.1 --- a/šablona/atom.xsl	Sun Apr 03 16:51:06 2011 +0200
     1.2 +++ b/šablona/atom.xsl	Thu Apr 28 00:16:27 2011 +0200
     1.3 @@ -8,6 +8,9 @@
     1.4  	exclude-result-prefixes="fn g j">
     1.5  	<xsl:output	method="xml" indent="yes" encoding="UTF-8"/>
     1.6  	
     1.7 +	<xsl:param name="vstupníPřípona" select="'.xml'"/>
     1.8 +	<xsl:param name="výstupníPřípona" select="'.xhtml'"/>
     1.9 +	
    1.10  	<xsl:template match="/">		
    1.11  	
    1.12  		<feed>
    1.13 @@ -23,11 +26,11 @@
    1.14  			<id><xsl:value-of select="concat('urn:uuid:', g:web/g:uuid)"/></id>
    1.15  			
    1.16  			<xsl:variable name="konfigurace" select="/"/>
    1.17 -			<xsl:for-each select="collection('../vstup/?select=*.xml')[empty(g:stránka/g:skrytá) or not(g:stránka/g:skrytá)]">
    1.18 +			<xsl:for-each select="collection(concat('../vstup/?select=*', $vstupníPřípona))[empty(g:stránka/g:skrytá) or not(g:stránka/g:skrytá)]">
    1.19  				<entry>
    1.20  					<title><xsl:value-of select="g:stránka/g:nadpis"/></title>
    1.21 -					<xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], '.xml', '')"/>
    1.22 -					<link href="{concat($konfigurace/g:web/g:url, encode-for-uri($soubor), '.xhtml')}" />
    1.23 +					<xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], $vstupníPřípona, '')"/>
    1.24 +					<link href="{concat($konfigurace/g:web/g:url, encode-for-uri($soubor), $výstupníPřípona)}" />
    1.25  					<id><xsl:value-of select="concat('urn:', $konfigurace/g:web/g:kod ,':strana:', encode-for-uri($soubor))"/></id>
    1.26  					<!--2010-10-09T20:51:04Z-->
    1.27  					<updated><xsl:value-of select="j:posledníZměna(document-uri(.))"/></updated>