Re: [xsl] XPath: excluding a descendant

Subject: Re: [xsl] XPath: excluding a descendant
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 2 Sep 2003 14:40:51 +0100
> Uh, sorry for stupidity! I have got it now, just as
> 
> (...)
>  <xsl:apply-templates select="abcd:Gathering"/>
>  <xsl:apply-templates select="LongitudeDecimal"/>
> (...)
> 
> <xsl:template match="LongitudeDecimal">
>     <!-- do nothing -->
> </xsl:template>
> 

If that works then your document is quite unlike the document that you
posted.

Firstly you again have Gathering in a namespace and LongitudeDecimal not
in a namespace. secondly in your example LongitudeDecimal was a
descendent of Gathering not a sibling. If it is not a sibling then
>  <xsl:apply-templates select="abcd:Gathering"/>
>  <xsl:apply-templates select="LongitudeDecimal"/>
one of these two willa do nothing as they can not both be
children of the current node (unless the template it is in matches the
parent of both of these)


<xsl:template match="LongitudeDecimal">

this will not match any element in a namespace.

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