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

RE: Is this node, the document root... best test?

Subject: RE: Is this node, the document root... best test?
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Mon, 20 Oct 2003 17:58:09 +0100
this.node
> In a template, matching on "*", I need to test, if this node, is the 
> document root node.

Start by getting your terminology right! By reverse engineering your
code, I think you are trying to test for the "outermost element": that
is, the element whose parent is a root node, in XPath 1.0 terminology.
>     <xsl:when test="not(parent::*)">
>       This works, but is it safe/efficient?

This is fine, except that it will match both the root node and the
outermost element node. If you want to match the outermost element
without matching the root, use

test=".. and not(parent::*)"

>     </xsl:when>
>     <!-- Method (2) -->
>     <xsl:when test="string(name(parent::*)) = ''">
>       This works, but is it safe/efficient?

This is clumsy. If parent::* selects anything, then it will select an
element, and name() applied to an element is always a non-empty string,
and string() applied to a non-empty string always gives you a non-empty
string, so the test is equivalent to test="not(parent::*)".

Michael Kay


 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.