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

*** shadow/1403 Tue May 22 07:35:53 2001
--- shadow/1403.tmp.6087        Tue Jun 26 12:19:11 2001
***************
*** 2,9 ****
  | xsltc has problems with output escaping                                    |
  +----------------------------------------------------------------------------+
  |        Bug #: 1403                        Product: XalanJ2                 |
! |       Status: NEW                         Version: 2.0.0                   |
! |   Resolution:                            Platform: Sun                     |
  |     Severity: Major                    OS/Version: Solaris                 |
  |     Priority: High                      Component: org.apache.xalan.xsltc  |
  +----------------------------------------------------------------------------+
--- 2,9 ----
  | xsltc has problems with output escaping                                    |
  +----------------------------------------------------------------------------+
  |        Bug #: 1403                        Product: XalanJ2                 |
! |       Status: RESOLVED                    Version: 2.0.0                   |
! |   Resolution: FIXED                      Platform: Sun                     |
  |     Severity: Major                    OS/Version: Solaris                 |
  |     Priority: High                      Component: org.apache.xalan.xsltc  |
  +----------------------------------------------------------------------------+
***************
*** 127,129 ****
--- 127,193 ----
             (1) xsl:output method="html" while
                 xsl:text disable-output-escaping="no"
             (2) same case as Xsltc is failing (see above).
+ 
+ 
+ ------- Additional Comments From [EMAIL PROTECTED]  2001-06-26 12:19 -------
+ I retested with output08 and it passed. Also, I took Todd's stylesheet and added
+ a line with output-escaping=yes, ran it against Xalan, Saxon, and XSLTC and got
+ the following results.
+ 
+ outut method = text
+ xalan
+ no - Foo>Bar
+ yes - Foo>Bar
+ 
+ saxon
+ no - Foo>Bar
+ yes - Foo>Bar
+ 
+ xsltc
+ no - Foo>Bar
+ yes - Foo>Bar
+ 
+ outut method = html
+ xalan
+ no - Foo>Bar
+ yes- Foo>Bar
+ 
+ saxon
+ no - Foo>Bar
+ yes- Foo>Bar
+ 
+ xsltc
+ no - Foo>Bar
+ yes- Foo>Bar
+ 
+ outut method = xml
+ xalan
+ <?xml version="1.0" encoding="UTF-8"?>
+ no - Foo&gt;Bar
+ yes - Foo>Bar
+ 
+ saxon
+ <?xml version="1.0" encoding="utf-8"?>
+ no - Foo&gt;Bar
+ yes - Foo>Bar
+ 
+ xsltc
+ <?xml version="1.0" encoding="utf-8" ?>
+ no - Foo&gt;Bar
+ yes - Foo>Bar
+ 
+ outut method = none
+ xalan
+ <?xml version="1.0" encoding="UTF-8"?>
+ no - Foo&gt;Bar
+ yes - Foo>Bar
+ 
+ saxon
+ <?xml version="1.0" encoding="utf-8"?>
+ no - Foo&gt;Bar
+ yes - Foo>Bar
+ 
+ xsltc
+ <?xml version="1.0" encoding="utf-8" ?>
+ no - Foo&gt;Bar
+ yes - Foo>Bar

Reply via email to