[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl]


Subject: RE: [xsl] <xsl:apply-templates/>
From: "Houman Khorasani" <Houman.Khorasani@xxxxxxxxxxx>
Date: Tue, 5 Dec 2006 17:11:06 -0000

God bless you! ;)

Thanks
houman

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: 05 December 2006 16:41
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] <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