Subject: Re: 1) Position of keyed element, 2) Determining unique attribute values
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 12 Jan 2006 12:22:24 GMT
|
> Is it possible to place an <xsl:attribute> as a child of a <xsl:copy-
> of select=".">
No but you can place it as a child of xsl:copy, which is what you want
to do here.
Or do I need to
enumerate xsl:element/xsl:attribute for all elements and attributes
possible in my input?
No you can just use @*, something like
<xsl:copy>
<xsl:copy-of seelct="@*"/>
<xsl:attribute name="new">stufff
to give you an element with the same name and attributes as you had
before, plus a new attribute new=...
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|