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/05/17 23:23:02 UTC

[Bug 1411] Changed - namespace-alias not outputting XSL URI in stylesheet element

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

*** shadow/1411	Thu Apr 19 14:11:58 2001
--- shadow/1411.tmp.22266	Thu May 17 14:23:02 2001
***************
*** 73,76 ****
     </out:variable>
     </out:stylesheet>
  </xsl:template>
! </xsl:stylesheet>
--- 73,102 ----
     </out:variable>
     </out:stylesheet>
  </xsl:template>
! </xsl:stylesheet>
! 
! ------- Additional Comments From tamiro@east.sun.com  2001-05-17 14:23 -------
! Recent code changes improved the situation but the ouput still doesn't
! completely match expected output.
! 
! XSLTC Obtained Results
! -----------------------
! <?xml version="1.0" encoding="utf-8" ?>
! <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
!   <xsl:variable name="v"/></xsl:stylesheet>
!  
! Xalan Results
! -------------
! <?xml version="1.0" encoding="UTF-8"?>
! <out:stylesheet xmlns:out="http://www.w3.org/1999/XSL/Transform" version="1.0">
! <out:variable name="v"/>
! </out:stylesheet>
! 
!  Saxon Results
! --------------
! <?xml version="1.0" encoding="utf-8"?>
! <out:stylesheet xmlns:out="http://www.w3.org/1999/XSL/Transform"
! xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
!    <out:variable name="v"/>
! 
! I'm using my mk024 test to verify.