RE: [xsl] Adding attributes

Subject: RE: [xsl] Adding attributes
From: Jeff Beadle <Jbeadle@xxxxxxxx>
Date: Thu, 7 Feb 2002 09:24:37 -0500
this'll work:

<xsl:template match="myelement">
	<xsl:copy>
		<xsl:copy-of select="attribute::*"/>
		<xsl:attribute name="color">blind</xsl:attribute>
		<xsl:copy-of select="descendant::*"/>
	</xsl:copy>
</xsl:template>

-Jeff

-----Original Message-----
From: Ivan Rubin Ayma [mailto:Iayma@xxxxxxxxxxxx]
Sent: Thursday, February 07, 2002 9:13 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] Adding attributes


Hello,

How can I add an attribute to an element and copy the attributes it
already had?

Suppose I had an XML:

<myelement type="10">
	<somedata/>
</myelement>

and with the transformation I need to get:

<myelement type="10" color="blind">
	<somedata/>
</myelement>

Thanks,

 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