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

Re: problem of result returned by variable

Subject: Re: problem of result returned by variable
From: "andrew welch" <andrew.j.welch@xxxxxxxxx>
Date: Tue, 22 Aug 2006 09:50:46 +0100
Re:  problem of result returned by variable
On 8/22/06, corine amel zayanie <corine_amel@xxxxxxxx> wrote:
problem of result returned by variable
I explain my problem between <!-- -->

<xsl:output method="html" media-type="text/html; charset=ISO-8859-1" version="4.0"/>
<xsl:template match="/">
<html>
<body>
<table border="0" width="*" >
<tr><th>Nombre noeud</th>
<th>Numero du A</th>
</tr>
<xsl:call-template name="doc">
<xsl:with-param name="requete" select="document('requete.xml')/requete"/>
</xsl:call-template>

The context node here is the root /


</table>
</body>
</html>
</xsl:template>
<xsl:template name ="doc" match="LISTE-A">
<xsl:param name="requete"/>
<xsl:call-template name="doc2">
<xsl:with-param name="requete" select="$requete"/>
<xsl:with-param name="varReq1" select=".//DEP = $requete/DEP and .//ANI= $requete/ANI"/>

The context here is still the root / so .//DEP and .//ANI are document wide


</xsl:call-template>
</xsl:template>
<xsl:template name ="doc2" match="LISTE-A">
<xsl:param name="varReq1"/>
<xsl:param name="requete"/>
<xsl:value-of select=".//DEP = $requete/DEP and .//ANI= $requete/ANI"/>
<xsl:for-each select="//A">

The context node is now each A in the document


<xsl:choose>
<xsl:when test=".//DEP = $requete/DEP and .//ANI= $requete/ANI">

The test is now using DEP and ANI descendants of the context node (which is <A>) so its only checking descendants of each <A> in the document this time which is why you get a different result - do you really mean to use ".//" and not just "//"?

Either way if you are checking the same global condition you should
really make it a global variable.

cheers
andrew

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.