[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: Warren Hedley <w.hedley@xxxxxxxxxxxxxx>
Date: Thu, 30 Mar 2000 09:21:17 +1200
Re: how to select part of the tree?
"K. Ari Krupnikov" wrote:
> 
> Hi,
>         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 />
> 
> <b>Mazda</b>
> <i>Miata</i>
> 1990
>         Konstantin Krupnikov
>         ari@xxxxxxx

The other text is popping up because of the built-in template
for text() nodes (section 5.8 of the spec) which copies them
through.

If you add the following to your stylesheet, the built-in
template will be overridden:

<xsl:template match="text()" />

The alternative is to specify the full path to the important
nodes in your root template, causing all other data to be
ignored. For example:

<xsl:template match="/">
  <xsl:apply-templates
    select="vehicles/vehicle/make | vehicles/vehicle/model" />
</xsl:template>

Hope this helps.

-- 
Warren Hedley
Department of Engineering Science
Auckland University
New Zealand


 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.