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

It becomes the entity output of Unicode.

           Summary: It becomes the entity output of Unicode.
           Product: XalanC
           Version: 1.0.x
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: XalanC
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


I am troubled by the character code conversion of Xalan. 
If it is going to output by EUC-JP, 
it will become the entity code output of UTF-8.
# If UTF-8 are specified, it will be shrewdly set to UTF-8.

Is it impossible although he wants to surely take out with EUC-JP?


sample:
---- e.xml ------------------------------------------------
<?xml version="1.0" encoding="EUC-JP" ?>
<dmy>●</dmy>
-----------------------------------------------------------

---- e.xsl ------------------------------------------------
<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="html" encoding="EUC-JP"/>
<xsl:template match="/">
<html><body>
<xsl:value-of select="dmy"/>
</body></html>
</xsl:template>

</xsl:stylesheet>
-----------------------------------------------------------
Xalan e.xml e.xsl
<html>
<body>&#9679;</body>   ← I want ●
</html>

---
RedHat 7.3
gcc 2.96
icu 2.4
xerces 2.3
xalan 1.6

Reply via email to