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

problem of result returned by variable

Subject: problem of result returned by variable
From: corine amel zayanie <corine_amel@xxxxxxxx>
Date: Tue, 22 Aug 2006 13:33:53 +0000 (GMT)
requete xsl
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>  
</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"/>  
</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">  
<xsl:choose>  
<xsl:when test=".//DEP = $requete/DEP and .//ANI= $requete/ANI">  
<!-- MY PROBLEM : WHEN I HAVE : test=".//DEP = $requete/DEP and .//ANI= $requete/ANI" the RESUALT is CORRECT 
WHEN I MAKE test="$varReq1" THE result is NOT CORRECT 
INSPITE OF content OF varReq1 vraiable is .//DEP = $requete/DEP and .//ANI= $requete/ANI 
My Question why the result is not same as the result when test=".//DEP = $requete/DEP and .//ANI= $requete/ANI" 
--> 
<tr><td><xsl:variable name="num">  
<xsl:number level="any" from="LISTE-A"/>  
</xsl:variable>  
<xsl:value-of select="$num"/>  
</td>  
<td><font color="#FF8040"> <xsl:value-of select="NUMERO"/></font></td>  
<td><font color="#FF8040"> dep</font></td>  
<td><font color="blue">ani</font></td></tr>  
</xsl:when>  

</xsl:choose>  
</xsl:for-each>  
</xsl:template>  
</xsl:stylesheet> 

Best regards

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.