Norman Walsh writes:
> Assuming a test document of "<doc><p>foo</p></doc>", I expect
> the xsl:message to produce "??? 1, doc, Rubble", but it produces
> "??? 0, doc, Flintstone". Why?
...
> <xsl:template name="head.content">
> <xsl:param name="node" select="."/>
> <title>
> <xsl:apply-templates select="." mode="title.refX">
> <xsl:with-param name="text-only" select="'1'"/>
> <xsl:with-param name="FRED" select="'Rubble'"/>
> </xsl:apply-templates>
> </title>
> </xsl:template>
if you do
<xsl:apply-templates select="$node" mode="title.refX">
it works. no, I can see that it does not help, but surely it is what
you meant anyway?
Sebastian
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|