42 | | <xsl:value-of select="j:interpretuj(text(), @jazyk, document-uri(/), //s:stránka/s:nadpis/text(), //s:stránka/s:perex/text())"/> |
| 43 | |
| 44 | <xsl:variable name="výstupSkriptu" select="j:interpretuj( |
| 45 | text(), |
| 46 | @jazyk, |
| 47 | @výstup, |
| 48 | document-uri(/), |
| 49 | //s:stránka/s:nadpis/text(), |
| 50 | //s:stránka/s:perex/text() |
| 51 | )"/> |
| 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> |
| 63 | |
| 64 | |