xsl-list
[Top] [All Lists]

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

2002-11-08 02:36:58


    <!-- 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



<Prev in Thread] Current Thread [Next in Thread>