This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Non-existing node



> if there's any reserved word or something to refer to an empty-nodeset.
> Let's say the reserved word is "ENS" (Empty Node Set), that way you could 
> write something like this:
> 	
> 	<xsl:if test="Parent/MyNode=ENS">...</xsl:if>

There are no reserved words in XPath at all (which is an important
feature as it has to work with any XML: ENS in the above selects child
elements called ENS, there are no words "free".

In this case you dion't want an = test at all, a non empty node set
coerces to true, so you just need

<xsl:if test="not(Parent/MyNode)">...</xsl:if>

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]