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

Re: Passing a parameter from one matched template to a

Subject: Re: Passing a parameter from one matched template to another
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Wed, 15 May 2002 01:21:02 +0200
template nuts
> <xsl:variable name="input"><ARE><YOU><NUTS></xsl:variable>

Is it <ARE/><YOU/><NUTS/> (example 1) or <ARE><YOU><NUTS/></YOU></ARE> (example 2)?

Example 1:

<xsl:apply-templates select="vendor:node-set($input)/*[1]" />

<xsl:template match="ARE">
  <xsl:param name="x" select="''"/>
  <xsl:apply-templates select="following-sibling::*[1]">
    <xsl:with-param name="x" select="anything-passed-to-template-YOU"/>
  </xsl:apply-templates>
</xsl:template>

<xsl:template match="YOU">
  <xsl:param name="x" select="''"/>
  <xsl:apply-templates select="following-sibling::*[1]">
    <xsl:with-param name="x" select="anything-passed-to-template-NUTS"/>
  </xsl:apply-templates>
</xsl:template>

<xsl:template match="NUTS">
  <xsl:param name="x" select="''"/>
</xsl:template>

Example 2:

<xsl:apply-templates select="vendor:node-set($input)" />

<xsl:template match="ARE">
  <xsl:param name="x" select="''"/>
  <xsl:apply-templates>
    <xsl:with-param name="x" select="anything-passed-to-template-YOU"/>
  </xsl:apply-templates>
</xsl:template>

<xsl:template match="YOU">
  <xsl:param name="x" select="''"/>
  <xsl:apply-templates>
    <xsl:with-param name="x" select="anything-passed-to-template-NUTS"/>
  </xsl:apply-templates>
</xsl:template>

<xsl:template match="NUTS">
  <xsl:param name="x" select="''"/>
</xsl:template>

paul morgan schrieb:
Is it possible to pass a parameter from one matched template to another?

That is, with the following:

<xsl:variable name="input"><ARE><YOU><NUTS></xsl:variable>

<xsl:apply-templates select="vendor:node-set($input)" />

I'd like each template that is matched to pass along a value (as determined by the matched template) to the next template that is matched.

    <xsl:template  match="ARE">
        <xsl:param name="x" select="''"/>
        <!-- create some value that should be accessed by the
             next template matched -- in my example, "YOU" -->
    </xsl:template>

    <xsl:template  match="YOU">
        <xsl:param name="x" select="''"/>
        <!-- create some value that should be accessed by the
             next template matched -- in my example, "NUTS" -->
    </xsl:template>

    <xsl:template  match="NUTS">
        <xsl:param name="x" select="''"/>
        <!-- whatever -->
    </xsl:template>

Thanks,

Paul


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.