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

RE: child and descendant: what is the difference really

Subject: RE: child and descendant: what is the difference really
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Mon, 30 Oct 2000 14:48:46 -0400 (EST)
what is descendant
Essentially, all I want is for everything between the <ni:body> tags to be
copied to the output HTML. I have solved this with the following:

<xsl:template match="ni:body"> 
<xsl:copy-of select="node()" /> 
</xsl:template> 

This copies all the children of the current node (because node() means
child::node()), with their descendants (because xsl:copy-of is recursive).  

but I don't understand my answer as I would have expected: 

<xsl:copy-of select="text() | descendant::node()" /> 

The problem with this is that it will copy nodes more than once. It copies
each of the descendant nodes (because of the descendant::node(), and for
each one it copies all its descendants  (because xsl:copy-of is recursive).

Mike Kay  




 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.