5 xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce" |
5 xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce" |
6 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
6 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
7 xmlns:fn="http://www.w3.org/2005/xpath-functions" |
7 xmlns:fn="http://www.w3.org/2005/xpath-functions" |
8 exclude-result-prefixes="fn g j"> |
8 exclude-result-prefixes="fn g j"> |
9 <xsl:output method="xml" indent="yes" encoding="UTF-8"/> |
9 <xsl:output method="xml" indent="yes" encoding="UTF-8"/> |
|
10 |
|
11 <xsl:param name="vstupníPřípona" select="'.xml'"/> |
|
12 <xsl:param name="výstupníPřípona" select="'.xhtml'"/> |
10 |
13 |
11 <xsl:template match="/"> |
14 <xsl:template match="/"> |
12 |
15 |
13 <feed> |
16 <feed> |
14 <title><xsl:value-of select="g:web/g:název"/></title> |
17 <title><xsl:value-of select="g:web/g:název"/></title> |
21 <email><xsl:value-of select="g:web/g:autor/g:email"/></email> |
24 <email><xsl:value-of select="g:web/g:autor/g:email"/></email> |
22 </author> |
25 </author> |
23 <id><xsl:value-of select="concat('urn:uuid:', g:web/g:uuid)"/></id> |
26 <id><xsl:value-of select="concat('urn:uuid:', g:web/g:uuid)"/></id> |
24 |
27 |
25 <xsl:variable name="konfigurace" select="/"/> |
28 <xsl:variable name="konfigurace" select="/"/> |
26 <xsl:for-each select="collection('../vstup/?select=*.xml')[empty(g:stránka/g:skrytá) or not(g:stránka/g:skrytá)]"> |
29 <xsl:for-each select="collection(concat('../vstup/?select=*', $vstupníPřípona))[empty(g:stránka/g:skrytá) or not(g:stránka/g:skrytá)]"> |
27 <entry> |
30 <entry> |
28 <title><xsl:value-of select="g:stránka/g:nadpis"/></title> |
31 <title><xsl:value-of select="g:stránka/g:nadpis"/></title> |
29 <xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], '.xml', '')"/> |
32 <xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], $vstupníPřípona, '')"/> |
30 <link href="{concat($konfigurace/g:web/g:url, encode-for-uri($soubor), '.xhtml')}" /> |
33 <link href="{concat($konfigurace/g:web/g:url, encode-for-uri($soubor), $výstupníPřípona)}" /> |
31 <id><xsl:value-of select="concat('urn:', $konfigurace/g:web/g:kod ,':strana:', encode-for-uri($soubor))"/></id> |
34 <id><xsl:value-of select="concat('urn:', $konfigurace/g:web/g:kod ,':strana:', encode-for-uri($soubor))"/></id> |
32 <!--2010-10-09T20:51:04Z--> |
35 <!--2010-10-09T20:51:04Z--> |
33 <updated><xsl:value-of select="j:posledníZměna(document-uri(.))"/></updated> |
36 <updated><xsl:value-of select="j:posledníZměna(document-uri(.))"/></updated> |
34 <summary><xsl:value-of select="g:stránka/g:perex"/></summary> |
37 <summary><xsl:value-of select="g:stránka/g:perex"/></summary> |
35 </entry> |
38 </entry> |