RE: template that matches all children of a given node?

Subject: RE: template that matches all children of a given node?
From: Matt Coolidge <Matt@xxxxxxxxxx>
Date: Wed, 16 Aug 2000 11:51:31 -0400
Yes thats it exactly - thanks for the help.

-MC

-----Original Message-----
From: Ben Robb [mailto:Ben@xxxxxxxxxx]
Sent: Wednesday, August 16, 2000 10:09 AM
To: 'xsl-list@xxxxxxxxxxxxxxxx'
Subject: RE: template that matches all children of a given node?


I think what you are asking is that you want to copy a nodeset to the output
tree in its entirety. For this you have to use <xsl:copy-of select=XPath>
which does a deep copy of the selected nodeset.

For example:

<xsl:template match="x">
	<xsl:copy-of select="."/>
</xsl:template>

Ben

> -----Original Message-----
> From: Matt Coolidge [mailto:Matt@xxxxxxxxxx]
> Sent: 16 August 2000 15:01
> To: xsl-list@xxxxxxxxxxxxxxxx
> Subject: xsl:template that matches all children of a given node?
> 
> 
> Hi there. How would one write an <xml:template match> to copy all of a
> node's children AND THEIR data? I have been able to copy just 
> the nodes, and
> just the data, but copying BOTH seems to be eluding me...
> 
> Thanks for the help,
> Matt Coolidge
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


 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