Annotation of parser3/www/htdocs/global.xsl, revision 1.3
1.1 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:
7: <xsl:template match="doc">
8: test return <something background=""/>
9: </xsl:template>
10:
11: <xsl:template name="test">
12: test return
13: </xsl:template>
14:
15: <xsl:template match="people">
16: <html>
17: <head>z</head>
18: para1=<xsl:copy-of select="$param1"/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
19: <xsl:apply-templates/>
20: <hr/>
21: <xsl:call-template name="test"/>
22: </html>
23: </xsl:template>
24:
25: <xsl:template match="name">
26: <b><xsl:value-of select="."/></b>
27: </xsl:template>
28: </xsl:stylesheet>
E-mail: