xsl-list
[Top] [All Lists]

Re: [xsl] Replacing default namespace

2007-07-01 14:57:47
Martin Honnen wrote:

To avoid that use a template like this

  <xsl:template match="*">
    <xsl:element name="{name()}" namespace="{namespace-uri()}">
      <xsl:apply-templates select="@* | node()"/>
    </xsl:element>
  </xsl:template>

for element nodes that you want to copy without its namespaces nodes.

Your code mimics the xsl:copy behavior. I assume you meant:

<xsl:element name="{name()}" namespace="http://othernamespace";>

Or:

<xsl:element name="{name()}" namespace="">

which will remove the namespace entirely (and will effectively remove the prefix, placing the element in the default null namespace).

-- Abel




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