Annotation of parser3/www/htdocs/global.xsl, revision 1.7

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>
1.6       paf         6: <xsl:param name="param2">defparam2</xsl:param>
1.1       paf         7: 
                      8:        <xsl:template match="doc">
1.6       paf         9:                param1=<xsl:value-of select="$param1"/><br/>
                     10:                param2=<xsl:value-of select="$param2"/><br/>
                     11: 
1.1       paf        12:                test return <something background=""/>
                     13:        </xsl:template>
                     14: 
                     15:        <xsl:template name="test">
                     16:                test return
                     17:        </xsl:template>
                     18: 
                     19:   <xsl:template match="people">
                     20:      <html>
                     21:      <head>z</head>
1.7     ! paf        22:                para1=<xsl:copy-of select="$param1"/>
1.1       paf        23:        <xsl:apply-templates/>
                     24:        <hr/>
                     25:        <xsl:call-template name="test"/>
                     26:      </html>   
                     27:   </xsl:template>
                     28: 
                     29:   <xsl:template match="name">
                     30:     <b><xsl:value-of select="."/></b>
                     31:   </xsl:template>
                     32: </xsl:stylesheet>

E-mail: