xsl-list
[Top] [All Lists]

xsl:copy and namespaces definitions

2005-06-24 07:05:30
Hi, 

I don't understand why namespaces definitions get copied. Can you help
me transform my stylesheet?

Here's my xslt result: 

        <?xml version="1.0" encoding="UTF-8"?>
                <page>
                        <a xmlns:toto="http://www.toto.com";>ho</a>
                        <b xmlns:toto="http://www.toto.com";>ha</b>
                </page>

But I expect this:

        <?xml version="1.0" encoding="UTF-8"?>
                <page>
                        <a>ho</a>
                        <b>ha</b>
                </page>

Here's my source xml:

        <?xml version="1.0" encoding="UTF-8"?>
        <page>
                <content xmlns:toto="http://www.toto.com";>
                        <a>ho</a>
                        <b>ha</b>
                </content>
        </page>

And here's my stylesheet:

<?xml version="1.0" encoding="UTF-8"?>
        <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:template match="content">
                        <xsl:apply-templates select="*"/>
                </xsl:template>

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



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