xsl-list
[Top] [All Lists]

Removing namespace attributes

2005-09-21 17:31:12
I want to strip all namespaces and one attribute (declared in the namespace).

In my stylesheet, I declare the namespaces
and then list them in the exclude-result-prefixes.
But it doesn't work.  The namespaces remain.

Thank you for your ideas,
Hank

Hank Ratzesberger
NEES Programmer
Institute for Crustal Studies
University of California, Santa Barbara


<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
 xmlns:flextps="http://flextps.org/schema/";
 xmlns:xlink="http://www.w3.org/1999/xlink";
 exclude-result-prefixes="flextps">
 <xsl:template match="@* | node()">
    <xsl:if test="name()!='xlink:href'">
      <xsl:copy>
        <xsl:apply-templates select="@* | node()" />
      </xsl:copy>
    </xsl:if>
  </xsl:template>
</xsl:stylesheet>






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