RE: [xsl] Whitelist preceding siblings

Subject: RE: [xsl] Whitelist preceding siblings
From: Fredrik Bengtsson <Fredrik.Bengtsson@xxxxxxxxxxxx>
Date: Fri, 15 Apr 2011 15:12:39 +0000
Wow, dunce hat of the day to me for not even realizing that nested [] are
valid. This opens up some new possibilities. Thanks a lot for all of your
prompt answers!


-----Original Message-----
From: Martin Honnen [mailto:Martin.Honnen@xxxxxx]
Sent: den 15 april 2011 15:54
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Whitelist preceding siblings

Fredrik Bengtsson wrote:

> I've tried something like the following with no luck:
>
> <xsl:template match="x">  ...
> <xsl:template match="x[preceding-sibling::*][not(self::a or self::b or
self::c)]">  ...

   <xsl:template match="x[preceding-sibling::*[not(self::a or self::b or
self::c)]]">
should match any "x" elements having one of the "unwanted" siblings.


--

	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

Current Thread