You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Scott Boag/CAM/Lotus <Sc...@lotus.com> on 2000/12/07 07:33:26 UTC

Re: [C2]: Namespace bug in XalanTransformer

This was a really dumb bug in Xalan that occured when copying an element.
I just checked in a fix.

BTW, please be sure to CC the Xalan-dev list if you suspect a Xalan bug.

-scott




                                                                                                                   
                    "Carsten                                                                                       
                    Ziegeler"            To:     <co...@xml.apache.org>                                       
                    <cziegeler@su        cc:     (bcc: Scott Boag/CAM/Lotus)                                       
                    ndn.de>              Subject:     [C2]: Namespace bug in XalanTransformer                      
                                                                                                                   
                    12/06/2000                                                                                     
                    06:53 AM                                                                                       
                    Please                                                                                         
                    respond to                                                                                     
                    cocoon-dev                                                                                     
                                                                                                                   
                                                                                                                   




Hello,

namespaces are not correctly handled by the current Xalan Version inside
C2.
The endElement event does not contain the correct information. Here is my
simple test case.

If you use the following XML file:

<?xml version="1.0"?>
<page xmlns:sunshine="http://sunshine.sundn.de/sunshine/1.0">
<test>
           <sunshine:wrong/>
</test>
</page>

and this pipeline:

<map:generate src="test.xml"/>
<map:transform src="test.xsl"/>
<map:transform type="log">

with a stylesheet which this stylesheet:

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

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

The log transformer gets the following events:
[setup] ---------------------------- [Wed Dec 06 12:47:33 GMT+01:00 2000]
----------------------------
[startDocument]
[startElement] uri=null,local=page,raw=page
[characters]

[characters]

[startPrefixMapping]
prefix=sunshine,uri=http://sunshine.sundn.de/sunshine/1.0
[startElement]
uri=http://sunshine.sundn.de/sunshine/1.0,local=wrong,raw=sunshine:wrong
[            ] 1.
uri=http://www.w3.org/2000/xmlns/,local=sunshine,qname=xmlns:sunshine,type=CDATA,value=http://sunshine.sundn.de/sunshine/1.0

[endElement] uri=,local=,qname=sunshine:wrong
[endPrefixMapping] prefix=sunshine
[characters]

[characters]

[endElement] uri=,local=,qname=page
[endDocument]

The endElement event has no uri and no local name set.

Regards
Carsten Ziegeler

Open Source Group              sunShine - Lighting up e:Business
================================================================
Carsten Ziegeler, S&N AG, Klingenderstrasse 5, D-33100 Paderborn
www.sundn.de                           mailto:cziegeler@sundn.de
================================================================
(See attached file: test.xml)(See attached file: test.xsl)