Changeset 107:379a2a893fd1 for šablona/makra/skriptování.xsl
- Timestamp:
- 07/05/12 19:10:42 (12 years ago)
- Branch:
- default
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
šablona/makra/skriptování.xsl
r106 r107 19 19 <xsl:stylesheet version="2.0" 20 20 xmlns="http://www.w3.org/1999/xhtml" 21 xmlns:h="http://www.w3.org/1999/xhtml" 21 22 xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro" 22 23 xmlns:j="java:cz.frantovo.xmlWebGenerator.makra.Skriptování" … … 50 51 //s:stránka/s:perex/text() 51 52 )"/> 52 <xsl:choose> 53 <xsl:when test="$výstupSkriptu"> 54 <xsl:choose> 55 <xsl:when test="@výstup = 'xml'"><xsl:value-of select="$výstupSkriptu" disable-output-escaping="yes"/></xsl:when> 56 <xsl:otherwise><xsl:value-of select="$výstupSkriptu"/></xsl:otherwise> 57 </xsl:choose> 58 </xsl:when> 59 <xsl:otherwise> 60 <xsl:message terminate="yes">Při interpretaci skriptu došlo k chybě.</xsl:message> 61 </xsl:otherwise> 62 </xsl:choose> 53 <xsl:apply-templates select="$výstupSkriptu/h:html/h:body/node()"/> 63 54 </xsl:when> 64 55