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

RE: xsl:variable question

Subject: RE: xsl:variable question
From: "Long Zhao" <LZhao@xxxxxxxxxxxxxxxx>
Date: Wed, 19 Dec 2001 16:53:42 -0600
tom zhao
You are RIGHT!!!
but for the scope issue, i am right.

Long

-----Original Message-----
From: Thomas B. Passin [mailto:tpassin@xxxxxxxxxxxx]
Sent: Wednesday, December 19, 2001 5:23 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  xsl:variable question


Aside from the question about the scope of the variable, which Wendell
and
Joshua raised, there is a fundamental issue.  In the first example, you
assign a value "1" to the variable.  In the second, you try to assign a
nodeset consisting of elements named "1", which of course cannot exist
since
it would be illegal for an element name.  To make the second formulation
equivalent, you should write

<xsl:variable name="mode" select='"1"'/>

(that's '.."1"..' where I am inserting two dots to space out the inner
and
outer quotes for visibility).  This assigns the string value "1" to the
variable, just as in the first example.

Cheers,

Tom P


[Long Zhao]


here are two xsl files :

<xsl:template match="/">
<xsl:variable name="mode">1</xsl:variable>
......
</xsl:template>

<xsl:template name="dosomething">
<xsl:if test="$mode='1'">
.....
</xsl:if>
.....
</template>
------------------------------------
<xsl:template match="/">
<xsl:variable name="mode" select='1'/>
......
</xsl:template>

<xsl:template name="dosomething">
<xsl:if test="$mode='1'">
.....
</xsl:if>
.....
</template>

why the first one does not work, but the second one works.

am i doing anything wrong in the first xsl?




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


 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.