This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: xsl:with-param and xsl:apply-templates


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]