Re: [xsl] adding attributes to an existing element

Subject: Re: [xsl] adding attributes to an existing element
From: Saverio Perugini <sperugin@xxxxxxxxxxxxxxxx>
Date: Tue, 15 Oct 2002 11:47:20 -0400 (EDT)
On Tue, 15 Oct 2002, Jeni Tennison wrote:

> Try copying the existing attributes with xsl:copy-of. Something like:
>
> <xsl:template match="name">
>   <name number="20">
>     <xsl:copy-of select="@*" />
>   </name>
> </xsl:template>

Thanks.  However, can this solution be used if I do not know the
element name (in this case, `name') a-priori?

For example, if I'd like to do this in:

<xsl:template match="/db/*">
   ...
</xsl:template>

Best,

S. Perugini


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread