Annotation of parser3/src/www/htdocs/global.xsl, revision 1.1

1.1     ! parser      1: <?xml version="1.0"?> 
        !             2: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
        !             3: <xsl:param name="param1"/>
        !             4: 
        !             5:   <xsl:template match="doc">
        !             6:     <html>
        !             7:        <title>test3</title>
        !             8:        <xsl:apply-templates/>
        !             9:        <hr/>
        !            10:        param1=<xsl:value-of select="$param1"/>.
        !            11:     </html>
        !            12:   </xsl:template>
        !            13: 
        !            14:   <xsl:template match="important">
        !            15:     <b><xsl:value-of select="."/></b>
        !            16:   </xsl:template>
        !            17: </xsl:stylesheet>

E-mail: