Okie dokie:
I have a template call:
<xsl:call-template name="main">
<xsl:with-param name="gentext">
<gentext>Data data data</gentext>
</xsl:with-param>
</xsl:call-template>
And a called template!
<xsl:template name="main">
<xsl:param name="gentext" />
<xsl:apply-templates select="$gentext" />
</xsl:template>
<xsl:template match="gentext" ... etc
MSXML (3) doesn't fault this, submits the param to be matched -
Saxon complains that this is a rtf not a node-set.
Who's right? Or is it one of those terrible spec vagueries again?
Thanks<
matt
******************************************************************
Warning: This email, including any attachments,
is for the use of the intended recipient(s) only.
Republication and redissemination,
including posting to news groups or web pages,
is strictly prohibited without the express prior consent of Brooker's Limited.
******************************************************************
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|