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

Re: Variable Scope and xsl:if

Subject: Re: Variable Scope and xsl:if
From: David_Marston@xxxxxxxxx
Date: Tue, 18 Apr 2000 12:07:34 -0400
xsl if xsl variable scope
Perhaps you could re-arrange the whole situation.

Omar Lopez Ruiz sent this:
<xsl:template matches="whatever">
  <xsl:if test="something=true">
        <some xsl tags and xsl:call templates>
        <xsl:variable name="foo" select="true">
  </xsl:if>
  <xsl:if test="something=false">
        <some other xsl tags>
        <xsl:variable name="foo" select="false">
  </xsl:if>
  <xsl:value-of select="$foo"/>    <!-- There's no foo var!!-->
</xsl:template>

It could be changed to:
<xsl:template matches="whatever">
  <xsl:variable name="foo" select="something"/>
  <xsl:choose>
    <xsl:when test="$foo">    <!-- Assumed to be
       faster than re-evaluating the "something" expression -->
      <some xsl tags and xsl:call templates>
    </xsl:when>
    <xsl:otherwise>
      <some other xsl tags>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

By the way, notice that
  <xsl:if test="something=true">
is equivalent to
  <xsl:if test="something">
and if you're unsure of whether "something" is suitably
boolean, you could say
  <xsl:if test="boolean(something)">
for your own peace of mind.
.................David Marston


 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.