|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: apply-templates with exceptions
> > Hey, just found out how to get a "negative" node list (thank-you, > archives!): > > <xsl:apply-templates select="*[not(name() = 'title')]" /> > > I'll use this unless anyone has a cleaner or more efficient method? > Well, it's definitely better to write select="*[not(self::title)] if you know the name at compile time (for a start, it avoids namespace complications). In XPath 2.0 you can write select="* except title". Another approach is to apply-templates on all the elements (perhaps in a special mode) and then define a null template <xsl:template match="title" mode="xxx"/> This last approach is definitely the neatest once you have a (growing) list of elements to be excluded. Michael Kay XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








