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

Re: <xsl:apply-templates/>

Subject: Re: <xsl:apply-templates/>
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 5 Dec 2006 16:41:00 GMT
Re:  <xsl:apply-templates/>
	<xsl:template match="/">

That matches the root of the document, not the element that you have
confusingly called Root (which is its child) so 

	<xsl:apply-templates/>
applies to <Root> which recursively applies the default template to all
elements of the docuemnt.

	<xsl:template match="/">
		<Root>
 		<xsl:apply-templates select="Root/Header"/>
                </Root>
	</xsl:template>

would work, or simply

	<xsl:template match="/">
		<Root>
		<xsl:copy-of select="Root/Header"/>		
                </Root>
	</xsl:template>

David

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-2007 All Rights Reserved.