Changeset 4:1bb39595a51c
- Timestamp:
- 04/03/11 01:46:20 (14 years ago)
- Branch:
- default
- Files:
-
- 3 added
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
build.xml
r2 r4 14 14 15 15 <factory name="net.sf.saxon.TransformerFactoryImpl"> 16 <attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/> 16 <attribute name="http://saxon.sf.net/feature/allow-external-functions" value="true"/> 17 17 </factory> 18 18 -
vstup/index.xml
r2 r4 2 2 <nadpis>Chovatelská stanice</nadpis> 3 3 <perex>Úvodní stránka našeho webu.</perex> 4 4 <pořadí>10</pořadí> 5 5 6 <text xmlns="http://www.w3.org/1999/xhtml"> 6 7 <p> … … 9 10 </p> 10 11 </text> 11 12 12 13 </stránka> -
šablona/stránka.xsl
r3 r4 23 23 <h1><xsl:value-of select="g:stránka/g:nadpis"/></h1> 24 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 36 <xsl:apply-templates select="document(fn:encode-for-uri('../vstup/zápatí.inc'))/g:stránka/h:text/node()"/> 26 37 </body>