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

Re: XPath: excluding a descendant

Subject: Re: XPath: excluding a descendant
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 1 Sep 2003 17:10:07 +0100
xpath select no descendant
> <xsl:apply-templates select="abcd:Gathering[not(self::LongitudeDecimal)]"/>

this would select all Gathering elements in abcd namespace that are not
LongitudeDecimal in no namespace (which is the same as
select="abcd:Gathering")

I guess you don't want to exclude anything at this point
just have

<xsl:apply-templates select="abcd:Gathering"/>

together with a template 

<xsl:template match="LongitudeDecimal"/>

that does nothing on thse elements.

then when you do want to process the elements do (according to taste)

<xsl:apply-templates
abcd:Gathering/GatheringSite/SiteCoordinates/LongitudeDecimal"
mode="somemode"/>

together with some templates in somemode to do whatever needs doing or

if you don't want a new mode do


<xsl:apply-templates
abcd:Gathering/GatheringSite/SiteCoordinates/LongitudeDecimal/node()"
/>

so you process the children of LongitudeDecimal.

this assumes Gathering is in a namespace and the other elements are not,
it's hard to tell from your post. If everything is in a namespace prefix
all element names in all Xpaths with abcd:

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 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.