xsl-list
[Top] [All Lists]

Re: 1) Position of keyed element, 2) Determining unique attribute values

2006-01-12 05:22:24

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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--