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/07/17 21:29:55 UTC

DO NOT REPLY [Bug 10306] - Namespace declaration not created for used prefix with associated 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=10306>.
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=10306

Namespace declaration not created for used prefix with associated namespace

David_Marston@lotus.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |TestID, XSLTBug
           Priority|Other                       |High



------- Additional Comments From David_Marston@lotus.com  2002-07-17 19:29 -------
While namespace117 passes, I have seen this bug when there is other
attribute activity happening. For example,
<xsl:template match="/">
  <out>
    <xsl:attribute name="x">X</xsl:attribute>
    <xsl:attribute name="y:z">Z</xsl:attribute>
  </out>
</xsl:template>
should expose the problem. Likewise, so would
<xsl:template match="/">
  <out x="X">
    <xsl:attribute name="y:z">Z</xsl:attribute>
  </out>
</xsl:template>