RE: [xsl] Namespaces II

Subject: RE: [xsl] Namespaces II
From: "Jim Fuller" <jim.fuller@xxxxxxxxxxxxxxxxxx>
Date: Wed, 2 Jul 2003 08:59:23 +0100

> -----Original Message-----
> From: Gamperl Markus [mailto:gamperlm@xxxxxxxxxxxx]
> 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???

ensure that u use exclude-result-prefixes="text" on xsl:stylesheet

you will have use the local-name() function e.g. as illustrated below to manually construct your elements

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


hth, jim fuller
This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient please contact the sender immediately. Any disclosure, copying, distribution or any other use of this communication is strictly prohibitedand may be unlawful. Stuart Lawrence Marketing Communications Limited reserves the right to monitor and intercept communications for unlawful business purposes.

This also confirms that this message has been swept for viruses, although Stuart Lawrence Marketing Communications Limited accepts no responsibility for any loss or damage resulting directly or indirectly from the use of this email or contents.

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


Current Thread