equal
deleted
inserted
replaced
20 </head> |
20 </head> |
21 <body> |
21 <body> |
22 <xsl:apply-templates select="document(fn:encode-for-uri('../vstup/záhlaví.inc'))/g:stránka/h:text/node()"/> |
22 <xsl:apply-templates select="document(fn:encode-for-uri('../vstup/záhlaví.inc'))/g:stránka/h:text/node()"/> |
23 <h1><xsl:value-of select="g:stránka/g:nadpis"/></h1> |
23 <h1><xsl:value-of select="g:stránka/g:nadpis"/></h1> |
24 <xsl:apply-templates select="g:stránka/h:text/node()"/> |
24 <xsl:apply-templates select="g:stránka/h:text/node()"/> |
|
25 <ul id="nabídka"> |
|
26 <xsl:for-each select="collection('../vstup/?select=*.xml')[g:stránka/g:pořadí]"> |
|
27 <xsl:sort select="empty(./g:stránka/g:pořadí)"/> |
|
28 <xsl:sort select="./g:stránka/g:pořadí"/> |
|
29 <li> |
|
30 <xsl:variable name="xmlSoubor" select="tokenize(document-uri(.), '/')[last()]"/> |
|
31 <xsl:variable name="xhtmlSoubor" select="replace($xmlSoubor, '.xml', '.xhtml')"/> |
|
32 <a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./g:stránka/g:nadpis"/></a> |
|
33 </li> |
|
34 </xsl:for-each> |
|
35 </ul> |
25 <xsl:apply-templates select="document(fn:encode-for-uri('../vstup/zápatí.inc'))/g:stránka/h:text/node()"/> |
36 <xsl:apply-templates select="document(fn:encode-for-uri('../vstup/zápatí.inc'))/g:stránka/h:text/node()"/> |
26 </body> |
37 </body> |
27 </html> |
38 </html> |
28 </xsl:template> |
39 </xsl:template> |
29 |
40 |