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: Excluding nodes


>How do I match everything except a given node?
>I know //*/* matches any node with an element as a parent. I want to match
>every node with an element as a parent except for one node with a specific
>name (news_detail.)
>Something like -
>//*/*/@!=news_detail ???

Pretty close:

<xsl:template match="//*/*[not(name(.) = 'news_detail')]">

Should do it -

Cheers,
Matt
******************************************************************
Warning: This email, including any attachments, 
is for the use of the intended recipient(s) only.
Republication and redissemination, 
including posting to news groups or web pages, 
is strictly prohibited without the express prior consent of Brooker's Limited.
******************************************************************


 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]