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

Re: how to select part of the tree?

Subject: Re: how to select part of the tree?
From: "K. Ari Krupnikov" <ari@xxxxxxx>
Date: Wed, 29 Mar 2000 13:43:58 -0500
part of a tree

"John E. Simpson" wrote:
> 
> At 09:32 PM 03/28/2000 -0500, K. Ari Krupnikov wrote:
> >         I'm trying to select some of the nodes in an XML document, but I keep
> >getting the whole tree. How do I make sure only <make> and <model> nodes
> >in this example are returned?
> >
> >      ...[snip]...
> >
> ><xsl:template match="make">
> >   <b><xsl:apply-templates/></b>
> ></xsl:template>
> >
> ><xsl:template match="model">
> >   <i><xsl:apply-templates/></i>
> ></xsl:template>
> 
> Replace each <xsl:apply-templates/> elements with <xsl:value-of select="."/>.
> 
> <xsl:apply-templates/> says, "...now process the matched node and all its
> children." That's why you're getting all the other stuff in your result.
> <xsl:value-of select="."/> says, "...add the value of the matched node to
> the result tree."
> 

Do you mean something like this?
This XSL produces the exact same result as the original one. What did I
miss?

Ari

=================================================================
== stylesheet

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

<xsl:template match="make">
   <b><xsl:value-of select="."/></b>
</xsl:template>

<xsl:template match="model">
   <i><xsl:value-of select="."/></i>
</xsl:template>

</xsl:stylesheet>


 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.