[6] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
| 2 | <xsl:stylesheet version="2.0" |
---|
| 3 | xmlns="http://www.w3.org/2005/Atom" |
---|
[18] | 4 | xmlns:s="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana" |
---|
| 5 | xmlns:k="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/konfigurace" |
---|
[6] | 6 | xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce" |
---|
| 7 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
---|
| 8 | xmlns:fn="http://www.w3.org/2005/xpath-functions" |
---|
[18] | 9 | exclude-result-prefixes="fn s k j"> |
---|
[6] | 10 | <xsl:output method="xml" indent="yes" encoding="UTF-8"/> |
---|
| 11 | |
---|
[15] | 12 | <xsl:param name="vstupníPřípona" select="'.xml'"/> |
---|
| 13 | <xsl:param name="výstupníPřípona" select="'.xhtml'"/> |
---|
| 14 | |
---|
[21] | 15 | <xsl:template match="/"> |
---|
[6] | 16 | |
---|
[47] | 17 | <xsl:if test="k:web/k:uuid = '399a714c-956e-444c-a8f4-afe8f0df802a'"> |
---|
| 18 | <xsl:message>Vygenerujte si prosím svoje vlastní UUID pro agregované výstupy a uložte ho do souboru web.conf.</xsl:message> |
---|
| 19 | <!-- Nové UUID si můžete vygenerovat např. příkazem: uuidgen --> |
---|
| 20 | </xsl:if> |
---|
| 21 | |
---|
[6] | 22 | <feed> |
---|
[18] | 23 | <title><xsl:value-of select="k:web/k:název"/></title> |
---|
| 24 | <subtitle><xsl:value-of select="k:web/k:podtitul"/></subtitle> |
---|
| 25 | <link rel="self" href="{concat(k:web/k:url, 'atom.xml')}"/> |
---|
| 26 | <link href="{k:web/k:url}"/> |
---|
[6] | 27 | <updated><xsl:value-of select="current-dateTime()"/></updated> |
---|
| 28 | <author> |
---|
[18] | 29 | <name><xsl:value-of select="k:web/k:autor/k:jméno"/></name> |
---|
| 30 | <email><xsl:value-of select="k:web/k:autor/k:email"/></email> |
---|
[6] | 31 | </author> |
---|
[18] | 32 | <id><xsl:value-of select="concat('urn:uuid:', k:web/k:uuid)"/></id> |
---|
[6] | 33 | |
---|
[7] | 34 | <xsl:variable name="konfigurace" select="/"/> |
---|
[18] | 35 | <xsl:for-each select="collection(concat('../vstup/?select=*', $vstupníPřípona))[empty(s:stránka/s:skrytá) or not(s:stránka/s:skrytá)]"> |
---|
[6] | 36 | <entry> |
---|
[18] | 37 | <title><xsl:value-of select="s:stránka/s:nadpis"/></title> |
---|
[15] | 38 | <xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], $vstupníPřípona, '')"/> |
---|
[18] | 39 | <link href="{concat($konfigurace/k:web/k:url, encode-for-uri($soubor), $výstupníPřípona)}" /> |
---|
| 40 | <id><xsl:value-of select="concat('urn:', $konfigurace/k:web/k:kod ,':strana:', encode-for-uri($soubor))"/></id> |
---|
[6] | 41 | <updated><xsl:value-of select="j:posledníZměna(document-uri(.))"/></updated> |
---|
[18] | 42 | <summary><xsl:value-of select="s:stránka/s:perex"/></summary> |
---|
[6] | 43 | </entry> |
---|
| 44 | </xsl:for-each> |
---|
| 45 | |
---|
| 46 | </feed> |
---|
| 47 | </xsl:template> |
---|
| 48 | |
---|
| 49 | </xsl:stylesheet> |
---|