Annotation of parser3/tests/108.xsl, revision 1.2
1.2 ! paf 1: <?xml version="1.0"?>
! 2: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
! 3: <!--<xsl:output doctype-public ="-//W3C//DTD XHTML" indent="yes"/>-->
! 4:
! 5: <xsl:param name="param1">defparam1</xsl:param>
! 6: <xsl:param name="param2">defparam2</xsl:param>
! 7:
! 8: <xsl:variable name="var1">
! 9: <inside>in?<deep value="1"/></inside>
! 10: </xsl:variable>
! 11:
! 12: <xsl:template name="test">
! 13: test return
! 14: </xsl:template>
! 15:
! 16: <xsl:template match="people">
! 17: <html>
! 18: <head>z</head>
! 19: param1=<xsl:value-of select="$param1"/><br/>
! 20: param2=<xsl:value-of select="$param2"/><br/>
! 21:
! 22: test return: =<xsl:copy-of select="$var1"/>=
! 23: <something background=""/>
! 24:
! 25: <xsl:apply-templates/>
! 26: <hr/>
! 27: <xsl:call-template name="test"/>
! 28: </html>
! 29: </xsl:template>
! 30:
! 31: <xsl:template match="name">
! 32: <b><xsl:value-of select="."/></b>
! 33: </xsl:template>
! 34: </xsl:stylesheet>
E-mail: