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: Mixed content variation



> 1.  Select the text node and all child nodes of <foo> except for the <date>
> child

select="node()[not(self::foo)]

actually that picks up comments and pis as well, more exactly just
elements or text is

select="text()|*[not(self::foo)]"


David


 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]