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

Re: Re: Unwanted namespace prefix _0

Subject: Re: Re: Unwanted namespace prefix _0
From: Graydon <graydon@xxxxxxxxx>
Date: Mon, 23 Dec 2013 13:03:12 -0500
Re:  Re: Unwanted namespace prefix _0
On Mon, Dec 23, 2013 at 09:49:07AM -0800, Martin Holmes scripsit:
> It's easy to cleanup with a regex search-and-replace, but it's
> really annoying. There must be some way around it, otherwise people
> would be asking this question all the time, surely? I assumed I'd
> just forgotten something obvious or screwed something up.

I'm not sure I understand your specific problem, but if you're using the
identity template and XSLT 2.0, instead of

<xsl:template match="node()|@*">
  <xsl:copy>
      <xsl:apply-templates select="node()|@*" />
  </xsl:copy>
</xsl:template>

you may wish to try

<xsl:template match="node()|@*">
   <xsl:copy copy-namespaces="no">
       <xsl:apply-templates select="node()|@*" />
   </xsl:copy>
</xsl:template>

That won't help you with namespaces that really have to be there, but if what
you're trying to do is, effectively, copy the document out of some defined
namespace in the source document into the default namespace in the result
document I think it'll work.

-- Graydon

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.