1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <xsl:stylesheet version="2.0" |
---|
3 | xmlns="http://www.w3.org/2005/Atom" |
---|
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 | 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" |
---|
9 | exclude-result-prefixes="fn s k j"> |
---|
10 | <xsl:output method="xml" indent="yes" encoding="UTF-8"/> |
---|
11 | |
---|
12 | <xsl:param name="vstupníPřípona" select="'.xml'"/> |
---|
13 | <xsl:param name="výstupníPřípona" select="'.xhtml'"/> |
---|
14 | |
---|
15 | <xsl:template match="/"> |
---|
16 | |
---|
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 | |
---|
22 | <feed> |
---|
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}"/> |
---|
27 | <updated><xsl:value-of select="current-dateTime()"/></updated> |
---|
28 | <author> |
---|
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> |
---|
31 | </author> |
---|
32 | <id><xsl:value-of select="concat('urn:uuid:', k:web/k:uuid)"/></id> |
---|
33 | |
---|
34 | <xsl:variable name="konfigurace" select="/"/> |
---|
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á)]"> |
---|
36 | <entry> |
---|
37 | <title><xsl:value-of select="s:stránka/s:nadpis"/></title> |
---|
38 | <xsl:variable name="soubor" select="replace(tokenize(document-uri(.), '/')[last()], $vstupníPřípona, '')"/> |
---|
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> |
---|
41 | <updated><xsl:value-of select="j:posledníZměna(document-uri(.))"/></updated> |
---|
42 | <summary><xsl:value-of select="s:stránka/s:perex"/></summary> |
---|
43 | </entry> |
---|
44 | </xsl:for-each> |
---|
45 | |
---|
46 | </feed> |
---|
47 | </xsl:template> |
---|
48 | |
---|
49 | </xsl:stylesheet> |
---|