[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Problem using recursive apply-templates calls

Subject: Re: Problem using recursive apply-templates calls
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 15 Sep 2006 23:51:52 +0100
xslt1 parameter recursive
> I think that variable isn't being decremented properly,

You pass a parameter to 

<xsl:apply-templates select="Performers">
  <xsl:with-param name="performerLevels" select="2"/>
</xsl:apply-templates>


to the Peformers template but 
   <xsl:template match="Performers">
doesn't have any parameter declared so the parameter is ignored.
You need to declare it and then explixtly pass it on as

<xsl:apply-templates select="Performers">
  <xsl:with-param name="performerLevels" select="$performerLevels"/>
</xsl:apply-templates>


(XSLT2 introduces tunnel parameters that automatically pass themselves
on, but in xslt1 you need to do it explictly)

David

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.