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=6976>. 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=6976 number format for other locale is wrong ------- Additional Comments From [EMAIL PROTECTED] 2002-03-12 07:20 ------- I find that I forget set the encoding to gb2312 before, but when set it as, there still have minor problem(can reproduce it using the second attachment): 1. for format token "一" 1) <xsl:number value="1000" format="一" letter-value="traditional"/> will get U+F4E00 U+5343 u+96F6, the last one U+96F6 should be removed, same situation for set value as '100', '10000', '1100', '10100' etc, which means when the U+96F6 is the last one which should be removed 2) <xsl:number value="1" format="一" letter-value="alphabetic"/> which will get U+FF21, it's better keep same as in 1), and move this function to item 2's tradition as bellow. 2. format token "A" and "a": It's better: if letter-value="alphabetic" will get the same sequence as it's in C locale. if letter-value="traditional" will get the fullwith form for 'A' or 'a' sequence. 3. describe as before, it's better merge this function into 2's tradition.
