You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/11/15 19:16:16 UTC

DO NOT REPLY [Bug 4894] New: - xsltc creates element with invalid name (namespace48)

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4894>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4894

xsltc creates element with invalid name (namespace48)

           Summary: xsltc creates element with invalid name (namespace48)
           Product: XalanJ2
           Version: CurrentCVS
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: org.apache.xalan.xsltc
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: tom.amiro@sun.com


conf test namespace48 has 

    <xsl:element name="err:">

which in effect is trying to create an element with an invalid
names (one with a null local part).

Correct output should have 

    <out xmlns:err="www.error.com"><yyy/></out>

XSLTC incorrectly outputs:

    <out xmlns:err="www.error.com"><err:><yyy/></err:></out>