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

Re: "Tunneling" a parameter in document order

Subject: Re: "Tunneling" a parameter in document order
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 13 Apr 2012 10:02:14 +0100
Re:  "Tunneling" a parameter in document order
On 13/04/2012 09:31, Christian Roth wrote:
As for the basic requirement, I tried to describe it with: "Keeping a
global variable's value current while doing a depth-first traversal
of a document, where the variable's value is not scoped by either the
document's element hierarchy, nor the nesting of XSLT template
calls."


The normal way to achieve that is to arrange that each apply templates only selects one node at a time, traversing in that order, passing on a new value of the parameter when needed.

so given
<a>
   <b><c/><b>
   <b><c/><b>
   <b><c/><b>
</a>

don't do

<xsl:template match="*">
   ... <xsl:apply-templates/>
</xsl:template>

as that will do all three <b> branches essentially 9or perhaps really) in parallel so you can not pass information from branch to branch, only down the tree.

do


<xsl:template match="*">
... <xsl:apply-templates select="(*,ancestor-or-self::*[following-sibling::*][1]/following-sibling::*)[1]/>
</xsl:template>


as that will match elements in the order
a,b1,c1,b2,c2,b3,c3
so you can pass information using parameters down that order.

David


________________________________________________________________________ The Numerical Algorithms Group Ltd is a company registered in England and Wales with company number 1249803. The registered office is: Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________


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.