Annotation of parser3/src/www/htdocs/global.xsl, revision 1.4
1.1 parser 1: <?xml version="1.0"?>
2: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
1.4 ! parser 3: <xsl:param name="param1">defparam1</xsl:param>
1.1 parser 4:
1.3 parser 5: <xsl:template match="people">
1.1 parser 6: <html>
1.4 ! parser 7: <title><xsl:copy-of select="$param1"/></title>
1.1 parser 8: <xsl:apply-templates/>
9: </html>
10: </xsl:template>
11:
1.3 parser 12: <xsl:template match="name">
1.1 parser 13: <b><xsl:value-of select="."/></b>
14: </xsl:template>
15: </xsl:stylesheet>
E-mail: