Subject: RE: how to pass parameters (msxml/xt/Saxon)
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Tue, 17 Oct 2000 16:15:53 +0100
|
> <xsl:template match="/">
> <!-- ... -->
> <xsl:apply-templates mode="Xrevised">
> <xsl:with-param name="xyz" select="1234"/>
> </xsl:apply-templates>
> <!-- ... -->
> </xsl:template>
>
> <xsl:template match="text()" mode="Xrevised">
> <xsl:param name="xyz"/><!--<xsl:param name="xyz" select="678"/>-->
> <xsl:text>template output:</xsl:text><br />
> <xsl:value-of select="$xyz"/> <br />
> </xsl:template>
>
Unless the root node has text children, which it won't if the input is a
well-formed tree, the first template doesn't call the second directly, it
does so via a built-in template for element nodes. The built-in template
does not pass the parameters through.
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|