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

XSLT and Shift_JIS





------- Additional Comments From [EMAIL PROTECTED]  2002-04-25 14:39 -------
Hi Alex,

I am not sure how you are using the compiler, I can tell you what I
did to test this:

I have the example xml file you attached to the bug report, I called it
'jisExample.xml'. For a stylesheet I just created one that does a copy
called 'copy.xsl' which is simply:

<xsl:stylesheet version='1.0' 
    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:output method="xml" encoding="Shift_JIS"/>
<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>

I compiled the stylesheet and ran it against your xml input file
jisExample.xml and redirected the output to another file 'y.xml'. I 
viewed the output file in Netscape browser, and I see the japanese characters
just fine when I changed the character set under View->Character Set->
Japanese (Shift-JIS).

Can you tell me how you are using the compiler so we can fix the problem
that you are having?  Thanks

Reply via email to