Is it possible to overwrite global variables?

David Carlisle davidc at nag.co.uk
Thu Sep 9 10:15:14 BST 1999



You'd probably be better asking xsl questions on xsl-list rather than
xml-dev:
 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

but anyway...

The answer to your question is no, but don't despair:-)


<xsl:if test="Cond1">
  <!-- this sets GlobaleVariable in the current scope -->
<xsl:variable name="GlobaleVariable" select="1">
  <!-- the current scope ends here -->
</xsl:if>

<xsl:if test="Cond2">
  <!-- this sets GlobaleVariable in the current scope -->
<xsl:variable name="GlobaleVariable" select="2">
  <!-- the current scope ends here -->
</xsl:if>

You don't want a condition to control whether or not to set a variable,
you want to set a variable to an expression who's value depends on a
condition: 

<xsl:variable name="GlobaleVariable">
 <xsl:choose>
 <xsl:when test="Cond1">
    <xsl:value-of select="...1"/>
 </xsl:when>
 <xsl:when test="Cond2">
    <xsl:value-of select="...2"/>
 </xsl:when>
 </xsl:choose>
</xsl:variable>

David

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)





More information about the Xml-dev mailing list