[KoCo-CVS] [Commit] KoreanCodecs/korean aliases.py
Brought to you by:
perky
From: Chang <pe...@us...> - 2002-04-26 09:29:03
|
perky 02/04/26 02:28:59 Modified: korean aliases.py Log: - Add aliases with '-' for some strange win32 environments Revision Changes Path 1.2 +9 -1 KoreanCodecs/korean/aliases.py Index: aliases.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/korean/aliases.py,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- aliases.py 17 Apr 2002 10:43:21 -0000 1.1 +++ aliases.py 26 Apr 2002 09:28:59 -0000 1.2 @@ -1,20 +1,28 @@ # Hye-Shik Chang <17 Apr 2002> -# $Id: aliases.py,v 1.1 2002/04/17 10:43:21 perky Exp $ +# $Id: aliases.py,v 1.2 2002/04/26 09:28:59 perky Exp $ import encodings.aliases encodings.aliases.aliases.update({ +# some environment of win32 doesn't resolve '-' by '_' 'cp949': 'korean.cp949', 'ms949': 'korean.cp949', 'uhc': 'korean.cp949', + 'euc-kr': 'korean.euc_kr', 'euc_kr': 'korean.euc_kr', 'euckr': 'korean.euc_kr', 'ksc5601': 'korean.euc_kr', + 'ksc5601-1987': 'korean.euc_kr', 'ksc5601_1987': 'korean.euc_kr', + 'ksc_5601-1987':'korean.euc_kr', 'ksc_5601_1987':'korean.euc_kr', + 'ks_c_5601-1987':'korean.euc_kr', + 'ks_c_5601_1987':'korean.euc_kr', 'ksx1001': 'korean.euc_kr', + 'iso-2022-kr': 'korean.iso_2022_kr', 'iso_2022_kr': 'korean.iso_2022_kr', 'iso2022kr': 'korean.iso_2022_kr', + 'iso2022-kr': 'korean.iso_2022_kr', 'iso2022_kr': 'korean.iso_2022_kr', 'johab': 'korean.johab', 'qwerty2bul': 'korean.qwerty2bul', |