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 2004/02/03 11:39:24 UTC

DO NOT REPLY [Bug 26627] New: - attributes in mixed case are reported as already used, but they don't

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=26627>.
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=26627

attributes in mixed case are reported as already used, but they don't

           Summary: attributes in mixed case are reported as already used,
                    but they don't
           Product: XalanC
           Version: CurrentCVS
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: XalanC
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: rz@webde-ag.de


Since Xalan-C 1.6 some attributes, which are only once in the Stylesheet are
reported as "already used". Also occures with Xalana-C 1.7 and current CVS

Example#1 message reported by using Xalan binary:

XSLT warning: Fatal Error at (file tableTest.xsl , line 7 , column {null} ): The
attribute 'width' is already used in element 'TABLE' (tableTest.xsl, line 7,
column 63)
SAXParseException: The attribute 'width' is already used in element 'TABLE'
(tableTest.xsl, line 7, column 63)

Example#2 message reported by using Xalan binary:

XSLT warning: Fatal Error at (file mixedCaseTest.xsl , line 7 , column {null} ):
The attribute 'width' is already used in element 'myTag' (mixedCaseTest.xsl,
line 7, column 63)
SAXParseException: The attribute 'width' is already used in element 'myTag'
(mixedCaseTest.xsl, line 7, column 63)

By changing all attributes to either lower- or uppercase is an workaround at
least for html-output.

This Problem also occures for namespace prefixes, in my case used for my own
extension functions. But here I can't attach an simple example.