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

Re: Help with matching

Subject: Re: Help with matching
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 18 Oct 1999 14:06:11 +0100 (BST)
template matching help
> Any tips?

it depends a bit what you want to do, do you want to just be in a
recursive template matching situation, and have different templates fire
for those two cases, or do you want to be sat at a foo node and query if
there is a bar/bar child, in which case do something different.

In the second case you could have

<xsl:template match="foo">
<xsl:choose>
<xsl:when test="bar/bar">
 <xsl:text> case 2</xsl:text>
 <xsl:apply-templates select="bar/bar"/>
</xslwhen>
<xsl:otherwise>
 <xsl:text> case 1</xsl:text>
 <xsl:apply-templates select="bar"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>

In the former case you just want different templates like

<xsl:template match="foo">
 <xsl:apply-templates/>
</xsl:template>


<xsl:template match="bar/bar" priority="3">
 I'm a bar with a bar parent
 <xsl:apply-templates/>
</xsl:template>

<xsl:template match="bar[bar]" priority="2">
 I'm a bar with bar children (and not a bar parent)
 <xsl:apply-templates/>
</xsl:template>


<xsl:template match="bar">
 I'm a bar that's all alone
 <xsl:apply-templates/>
</xsl:template>


I just typed this into the mail buffer not tested;-0

David


 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.