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

Re: Passing local variable from one template to anothe

Subject: Re: Passing local variable from one template to another
From: Oliver Becker <obecker@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 25 Jul 2001 09:29:18 +0200 (MET DST)
passing a local variable
Hi Alex,

> I need to pass value of the local variable defined in one template to another
> template.
> The following source does not work. What's wrong ? Thanks a lot in advance.

You always have to keep two things in mind when using variables:
1. variables can't be updated
2. variables are locally scoped

That means you have to restructure the logic of your stylesheet.
If you are familiar with functions in some procedural programming languages,
your example could be interpreted as follows:

> <?xml version="1.0"?>
> 
> <xsl:stylesheet     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
> version="1.0">
> 
>  <xsl:output method="text"/>
> 
>  <xsl:template match="/">

func main() {  // pseudo syntax

>     <xsl:apply-templates select="A/B/C">
>     </xsl:apply-templates>

   abc();

>     <xsl:apply-templates select="A/B/D/E/F">
> 
>      <xsl:with-param name="XYZ" select="$XYZ" >
>      </xsl:with-param>
> 
>     </xsl:apply-templates>

   abcdef(xyz);
   // oops, xyz isn't defined

>  </xsl:template>

}

>  <xsl:template match="A/B/C">

func abc() {
 
>   <xsl:variable name="XYZ">
> 
>     <xsl:value-of select="K/L/M/N/O"/>
> 
>   </xsl:variable>

   xyz = value("klmno"); // haven't found another equivalent ...

>  </xsl:template>

}
// you created a local variable xyz, but you didn't use it

>  <xsl:template match="A/B/D/E/F">

func abcef() {

>    <xsl:text>BLAH-BLAH-BLAH-111</xsl:text>
> 
>    ......................................
> 
>    <xsl:value-of select="$XYZ" />

   print xyz;
   // oops, xyz isn't defined   

>    ......................................
> 
>    <xsl:text>BLAH-BLAH-BLAH-999</xsl:text>
> 
>  </xsl:template>

}
 
> </xsl:stylesheet>

Alright, this isn't a solution for your problem, but maybe it's helpful
to solve it yourself.

BTW: the equivalent of "func foo(bar) { ... }" would be
<xsl:template match="..." name="foo">
   <xsl:param name="bar" />
   ...
</xsl:template>

the equivalent of "x = foo(z)" then could be
<xsl:variable name="x">
   <xsl:call-template name="foo">  <!-- or xsl:apply-templates select=... -->
      <xsl:with-param name="bar" select="$z" />
   </xsl:call-template>
</xsl:variable>

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@xxxxxxxxxxxxxxxxxxxxxxx             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.