[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: <xsl:apply-templates select="not('nodename')"/> ?

Subject: RE: <xsl:apply-templates select="not('nodename')"/> ?
From: Stuart Brown <sbrown@xxxxxxxxxxxxx>
Date: Tue, 27 Aug 2002 16:15:41 +0100
xslt select not
Hi Michael,

> I would like to preferentially list some children ahead of 
> others. I'm 
> trying to do it like this:
> 
> <xsl:apply-templates select="./apple"/>
> <xsl:apply-templates select="./orange"/>
> <xsl:apply-templates select="not(apple|orange)"/>
> 
> ... I want for the third line to process all other children. It's not 
> working that way though. What's the right syntax to achieve this?

It's probably better to use template modes for this:

<xsl:apply-templates mode="doApples"/>
<xsl:apply-templates mode="doOranges"/>
<xsl:apply-templates mode="theRest"/>

<!-- Apples mode: process apple and ignore everything else -->
<xsl:template match="apple" mode="doApples">
  <xsl:copy/>
</xsl:template>
<xsl:template match="*" mode="doApples"/>

<!-- Oranges mode: process orange and ignore everything else -->
<xsl:template match="orange" mode="doOranges">
  <xsl:copy/>
</xsl:template>
<xsl:template match="*" mode="doOranges"/>

<!-- The rest: ignore apples and oranges -->
<xsl:template match="apple | orange" mode="theRest"/>
<xsl:template match="mango" mode="theRest">
  <xsl:copy/>
</xsl:template>
<xsl:template match="durian" mode="theRest">
  <xsl:copy/>
</xsl:template>

If you really want to do it your way, use select="not(name() = 'apple' or
name() = 'orange')".

Hope this helps,

Stuart


> -----Original Message-----
> From: Michael Rothwell [mailto:rothwell@xxxxxxxxxxxxxxxxxxx]
> Sent: 27 August 2002 16:02
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  <xsl:apply-templates select="not('nodename')"/> ?
> 
> 
> I would like to preferentially list some children ahead of 
> others. I'm 
> trying to do it like this:
> 
> <xsl:apply-templates select="./apple"/>
> <xsl:apply-templates select="./orange"/>
> <xsl:apply-templates select="not(apple|orange)"/>
> 
> ... I want for the third line to process all other children. It's not 
> working that way though. What's the right syntax to achieve this?
> 
> Thanks,
> 
> -M
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.