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

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

E-mail: