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 2002/02/26 16:19:22 UTC

DO NOT REPLY [Bug 6677] - cannot create xsl:attribute element with prefix for a namespace

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

cannot create xsl:attribute element with prefix for a namespace

David_Marston@lotus.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
           Keywords|                            |TestID
         Resolution|                            |FIXED



------- Additional Comments From David_Marston@lotus.com  2002-02-26 15:19 -------
There was a problem with an older version. It now works correctly in 2.3.
Test case namespace117 covers this situation, or actually the case where you
try to assign a value to the attribute:
<xsl:attribute name="bee:see" namespace="bee.com">true</xsl:attribute>
results in
xmlns:bee="bee.com" bee:see="true"
in the start tag of the appropriate element. If xsl:attribute has no content,
as you illustrated, then Xalan is not obligated to emit an attribute. But the
ns0:dummy=""
is an illegal syntax, and we no longer generate it.