|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Renaming an element when using copy-of
Without seeing more of your code.
<xsl:template match="/"> <xsl:apply-templates/> </xsl:template> <xsl:template match="source"> <newname> <xsl:copy-of select="@*"/> <xsl:apply-templates/> </newname> </xsl:template> <xsl:template match="child_element"> <newchildname> <xsl:copy-of select="@*"/> <xsl:apply-templates/> </newchildname> </xsl:template> <xsl:template match="*"> <xsl:copy> <xsl:copy-of select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template>
Spence On 6/13/06, Chad Chelius <cchelius@xxxxxxxxxxxxxxx> wrote: I am trying to copy the contents of an element called <source> using a template but I want to change it's name when doing so. This <source> element contains several children that I want to carry over but I also want to rename them as well. I'm currently using:
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








