Re: [xsl] not()'ing a false variable, xalan 2.4.D1

Subject: Re: [xsl] not()'ing a false variable, xalan 2.4.D1
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 8 Nov 2002 09:36:58 GMT

    <!-- make a false variable entitled 'false-variable' -->
    <xsl:variable name="false-variable">
      <xsl:value-of select="false()"/>
    </xsl:variable>

no, you want

 <xsl:variable name="false-variable" select="false()"/>

as if you use xsl:variable with non empty content then you generate a
result tree fragment with (in this case) a root node containing a text
node containing the characters f a l s e, which will act as true in a
boolean context,

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread