xsl-list
[Top] [All Lists]

Re: how to prevent adding xmlns attribute

2004-11-11 08:14:39
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:exsl="http://exslt.org/common"; version="1.0" exclude-result-prefixes="exsl">



Dusan Zatkovsky wrote:

Hi.

I have one question:

xml:
-----
<root>
        <lama/>
</root>


xsl:
-----
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xmlns:exsl="http://exslt.org/common"; version="1.0">
        <xsl:output method="xml"/>

        <xsl:variable name="dataVar">
                <root>
                        <data>123456</data>
                </root>
        </xsl:variable>

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

        <xsl:template match="lama">
                <lama>
                        <xsl:value-of 
select="exsl:node-set($dataVar)/root/data"/>
                </lama>
        </xsl:template>

</xsl:stylesheet>


output:
-------
<lama xmlns:exsl="http://exslt.org/common";>12345</lama>


I need to remove namespace from 'lama' tag:
<lama>12345</lama>

How to do this?

I am using XalanC.

Thanks.



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



<Prev in Thread] Current Thread [Next in Thread>