I have an XML document with un-namespaced elements, and I want to use XSLT to add namespaces to them. Most elements will be in namespace A; a few will be in namespace B. How do I do this?
|
|
|
|
|
|
|
With foo.xml
and foo.xsl
I get
Is that what you’re looking for? |
||
|
|
|
Here's what I have so far:
This almost works; the problem is that it's not copying attributes. From what I've read thusfar, xsl:element doesn't have a way to copy all of the attributes from the element as-is (use-attribute-sets doesn't appear to cut it). |
||
|
|
|
You will need two main ingredients for this recipe. The sauce stock will be the identity transform, and the main flavor will be given by the The following, untested code, should add the http://example.com/ namespace to all elements.
Personal message: Hello, Jeni Tennison. I know you are reading this. |
||
|
