xsl-list
[Top] [All Lists]

[xsl] how to remove namespace declarations

2007-08-28 04:46:31
hi

i have to remove namespace declarations in certain elements. i.e. i have this one:

<Facts xmlns:html="http://www.w3.org/HTML/1998/html4"; xmlns:xlink="http://www.w3.org/1999/xlink";>
  <lotOfElements/>
</Facts>

and i want to get this one:

<Facts>
  <lotOfElements/>
</Facts>

i can't manage to get there. even when i try to remove all attributes from the element

<xsl:template match="Facts">
  <xsl:copy>
    <xsl:apply-templates select="*"/>
  </xsl:copy>
</xsl:template>

does not remove these unnecessary namespaces. i was searching for an answer but could only find how to remove namespace prefixes. but i have to remove the declarations. any help is very appreciated.

best regards
frank

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>