Thread: [KoCo-CVS] [Commit] cjkcodecs CHANGES
Brought to you by:
perky
From: Hye-Shik C. <pe...@us...> - 2003-06-19 19:13:00
|
perky 03/06/19 12:12:58 Modified: . CHANGES Log: Fix a bug that JIS X 0201 routine doesn't encode and decode 0x7f. Revision Changes Path 1.2 +3 -1 cjkcodecs/CHANGES Index: CHANGES =================================================================== RCS file: /cvsroot/koco/cjkcodecs/CHANGES,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- CHANGES 19 Jun 2003 17:49:01 -0000 1.1 +++ CHANGES 19 Jun 2003 19:12:58 -0000 1.2 @@ -1,5 +1,7 @@ Changes with CJKCodecs 1.0 - *) Changes a few characters of a big5 codepoint mapping to cp950's + *) Changed a few characters of a big5 codepoint mapping to cp950's rather than 0xfffd. (documented on NOTES.big5) + + *) Fixed a bug that JIS X 0201 routine doesn't encode and decode 0x7f. |
From: Hye-Shik C. <pe...@us...> - 2003-06-20 09:22:59
|
perky 03/06/20 02:22:58 Modified: . CHANGES Log: Add a workaround for PyObject_GenericGetAttr to enable compiling with mingw32. Revision Changes Path 1.4 +3 -0 cjkcodecs/CHANGES Index: CHANGES =================================================================== RCS file: /cvsroot/koco/cjkcodecs/CHANGES,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CHANGES 20 Jun 2003 09:04:52 -0000 1.3 +++ CHANGES 20 Jun 2003 09:22:57 -0000 1.4 @@ -16,3 +16,6 @@ *) Fixed a bug that cp932 codec couldn't decode half-width katakana. + *) Added a workaround for PyObject_GenericGetAttr to enable compiling + with mingw32. [Young-Sik Won] + |
From: Hye-Shik C. <pe...@us...> - 2003-06-20 17:23:01
|
perky 03/06/20 10:22:59 Modified: . CHANGES Log: Enable utf-8 codec encode and decode iso-10646-2 characters using surrogate pair. Revision Changes Path 1.5 +3 -0 cjkcodecs/CHANGES Index: CHANGES =================================================================== RCS file: /cvsroot/koco/cjkcodecs/CHANGES,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- CHANGES 20 Jun 2003 09:22:57 -0000 1.4 +++ CHANGES 20 Jun 2003 17:22:59 -0000 1.5 @@ -19,3 +19,6 @@ *) Added a workaround for PyObject_GenericGetAttr to enable compiling with mingw32. [Young-Sik Won] + *) Enable utf-8 codec encode and decode iso-10646-2 characters using + surrogate pair. + |
From: Hye-Shik C. <pe...@us...> - 2003-07-05 19:49:04
|
perky 03/07/05 12:49:02 Modified: . CHANGES Log: StreamWriter became to be able to buffer incomplete sequences. (this feature is used for surrogate-pair and mapping from unicode character with a following modifier) Revision Changes Path 1.8 +4 -0 cjkcodecs/CHANGES Index: CHANGES =================================================================== RCS file: /cvsroot/koco/cjkcodecs/CHANGES,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- CHANGES 1 Jul 2003 20:45:27 -0000 1.7 +++ CHANGES 5 Jul 2003 19:49:02 -0000 1.8 @@ -25,3 +25,7 @@ *) Fixed gb18030 codec's syntax error that disturbs compilation on python compiled with --with-unicode=ucs4 option. [Son, Kyung-uk] + *) StreamWriter became to be able to buffer incomplete sequences. + (this feature is used for surrogate-pair and mapping from unicode + character with a following modifier) + |
From: Hye-Shik C. <pe...@us...> - 2003-07-09 21:00:49
|
perky 03/07/09 14:00:47 Modified: . CHANGES Log: Fix hz codec's bug that doesn't initialize the encoding mode to ASCII. Revision Changes Path 1.14 +3 -0 cjkcodecs/CHANGES Index: CHANGES =================================================================== RCS file: /cvsroot/koco/cjkcodecs/CHANGES,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- CHANGES 9 Jul 2003 19:30:01 -0000 1.13 +++ CHANGES 9 Jul 2003 21:00:47 -0000 1.14 @@ -36,3 +36,6 @@ U+FF3C because EUC-JP 0x5C is also a REVERSE SOLIDUS and 0xA1C0 is FULLWIDTH REVERSE SOLIDUS on japanese environments. + *) Fixed hz codec's bug that doesn't initialize the encoding mode to + ASCII. + |
From: Hye-Shik C. <pe...@us...> - 2003-07-19 10:49:01
|
perky 03/07/19 03:49:00 Modified: . CHANGES Log: UTF-8 codec isn't removed. Revision Changes Path 1.19 +1 -1 cjkcodecs/CHANGES Index: CHANGES =================================================================== RCS file: /cvsroot/koco/cjkcodecs/CHANGES,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- CHANGES 19 Jul 2003 10:46:08 -0000 1.18 +++ CHANGES 19 Jul 2003 10:49:00 -0000 1.19 @@ -1,6 +1,6 @@ Changes with CJKCodecs 1.0 - *) UTF-16, UTF-8 codec is removed from distribution. + *) UTF-16 codecs are removed from distribution. *) Fixed UTF-7 codec's bug that fails to decode surrogate pair on ucs4-python |