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

Re: how to remove xmlns attributes in html out put via

Subject: Re: how to remove xmlns attributes in html out put via copy-of
From: Geert Josten <Geert.Josten@xxxxxxxxxxx>
Date: Fri, 10 Dec 2004 16:13:06 +0100
xsl remove xmlns
Hi Jan,

Copy-of will copy namespaces as well, you will have to get rid of them explicitely. Try:

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

<xsl:template match="entry:Para">
  <p>
    <xsl:apply-templates select="node()" />
  </p>
</xsl:template>

Cheers,
Geert

Jan Limpens wrote:

hi,

in my xml I have xhtml markup such as this:

<Document xmlns="http://limpens.com/entry">
<Para>The solution came in the form of <a
href="http://authors.aspalliance.com/PaulWilson/Articles/?id=14">Wilson's
Master pages</a>.</Para>
</Document>

my xslt tries to convert this to valid xml
	<xsl:template match="entry:Para">
		<p>
			<xsl:copy-of select="node()" />
		</p>
	</xsl:template>

but produces xmlns attributes in the xhtml tags, such as...
<p>The solution came in the form of <a
href="http://authors.aspalliance.com/PaulWilson/Articles/?id=14"
xmlns="http://limpens.com/entry">Wilson's Master pages</a>.</p>

wheather this is correct behaviour or not, I don't like the added
namespace in the anchor element too much, because it breaks my
otherwise valid xhtml.

I am using the .net (version 1.0) processor.
I tried to look it up in the archives and the faq, but didn't find
anything useful (whereas I am quite positive my question has already
been answered numeous times), so I hope nobody minds.

Thanks in advance!

-- Geert.Josten@xxxxxxxxxxx IT-consultant at Daidalos BV, Zoetermeer (NL)

http://www.daidalos.nl/
tel:+31-(0)79-3316961
fax:+31-(0)79-3316464

GPG: 1024D/12DEBB50

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.