[xsl] Namespaces II

Subject: [xsl] Namespaces II
From: gamperlm@xxxxxxxxxxxx (Gamperl Markus)
Date: Wed, 02 Jul 2003 03:19:23 -0400
Hello!

I haven't solved my namespaces-problem yet...

Following XML:
--------------

<Content xmlns="urn:DTD930" xmlns:xlink="http://www.w3.org/1999/xlink";>
<text_eng>
<p>Test Test Test Test</p>
</text_eng>
</Content>

Following XSL-Stylesheet:
-------------------------

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:text="urn:DTD930">

<xsl:template match="text:Content">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="text:text_eng">
<text_module xml:lang="en">
<xsl:copy-of select="*"/>
</text_module>
</xsl:template>

I get the following output:
---------------------------
<text_module xmlns="urn:DTD930" xml:lang="en">
<p xmlns="urn:DTD930">Test Test Test Test</p>
</text_module>

Question:
---------

Is there a way to get the xmlns attribute away (delete) from the output???

Thank you in advance!
Markus



__________________________________________________________________
McAfee VirusScan Online from the Netscape Network.
Comprehensive protection for your entire computer. Get your free trial today!
http://channels.netscape.com/ns/computing/mcafee/index.jsp?promo=393397

Get AOL Instant Messenger 5.1 free of charge.  Download Now!
http://aim.aol.com/aimnew/Aim/register.adp?promo=380455

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread