[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Automatically copying an element's attributes and

Subject: Re: Automatically copying an element's attributes and their values
From: David Carlisle <davidc@xxxxxxxxx>
Date: Sun, 7 Sep 2003 21:46:20 +0100
Re:  Automatically copying an element's attributes and

] <ns0:para>
] 	<xsl:for-each select="@*">
]       	<xsl:attribute name="name()">
] 			<xsl:value-of select="."/>
] 		</xsl:attribute>
]     </xsl:for-each>
] 

the name attribute  of xsl:attribute takes an AVT not an XPath
expression so as above it is trying to generate an attribute callned
name() which isn't allowed by XML rules, hence the error you showed.
To get the name() function to be evaluated surround with {}
as in name="{name()}" however thi sis much more than you need

I would like to pass through attributes and their
] values without having to a) test to see if the
] attribute has a value specified, and b) explicitly
] output the value.

could be paraphrased as "I want to copy all the attributes"
so...

<ns0:para>
  <xsl:copy-of select="@*"/>
...

David

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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.