Thread: [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',
|
|
From: Chang <pe...@us...> - 2002-04-26 10:33:20
|
perky 02/04/26 03:33:19
Modified: korean aliases.py
Log:
- Avoid strange phenomenon around installing *.pth
into PLATLIB on win32 (why?)
- take away aliases with '-' (it's working now!)
Revision Changes Path
1.3 +1 -7 KoreanCodecs/korean/aliases.py
Index: aliases.py
===================================================================
RCS file: /cvsroot/koco/KoreanCodecs/korean/aliases.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- aliases.py 26 Apr 2002 09:28:59 -0000 1.2
+++ aliases.py 26 Apr 2002 10:33:18 -0000 1.3
@@ -1,5 +1,5 @@
# Hye-Shik Chang <17 Apr 2002>
-# $Id: aliases.py,v 1.2 2002/04/26 09:28:59 perky Exp $
+# $Id: aliases.py,v 1.3 2002/04/26 10:33:18 perky Exp $
import encodings.aliases
@@ -8,21 +8,15 @@
'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',
|
|
From: Chang <pe...@us...> - 2002-04-26 11:39:38
|
perky 02/04/26 04:39:36
Modified: korean aliases.py
Log:
- Add korean into sys.path if python version is lower than 2.1
- Delete useless comment :)
Revision Changes Path
1.4 +1 -2 KoreanCodecs/korean/aliases.py
Index: aliases.py
===================================================================
RCS file: /cvsroot/koco/KoreanCodecs/korean/aliases.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- aliases.py 26 Apr 2002 10:33:18 -0000 1.3
+++ aliases.py 26 Apr 2002 11:39:35 -0000 1.4
@@ -1,10 +1,9 @@
# Hye-Shik Chang <17 Apr 2002>
-# $Id: aliases.py,v 1.3 2002/04/26 10:33:18 perky Exp $
+# $Id: aliases.py,v 1.4 2002/04/26 11:39:35 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',
|
|
From: Hye-Shik C. <pe...@us...> - 2003-01-02 10:48:31
|
perky 03/01/02 02:48:30
Modified: korean aliases.py
Log:
alias ksx1001-1998 -> euc-kr
Revision Changes Path
1.7 +2 -1 KoreanCodecs/korean/aliases.py
Index: aliases.py
===================================================================
RCS file: /cvsroot/koco/KoreanCodecs/korean/aliases.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- aliases.py 19 Jul 2002 00:01:52 -0000 1.6
+++ aliases.py 2 Jan 2003 10:48:29 -0000 1.7
@@ -17,7 +17,7 @@
# along with KoreanCodecs; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
-# $Id: aliases.py,v 1.6 2002/07/19 00:01:52 perky Exp $
+# $Id: aliases.py,v 1.7 2003/01/02 10:48:29 perky Exp $
#
import encodings.aliases
@@ -33,6 +33,7 @@
'ksc_5601_1987':'korean.euc_kr',
'ks_c_5601_1987':'korean.euc_kr',
'ksx1001': 'korean.euc_kr',
+ 'ksx1001_1998': 'korean.euc_kr',
'iso_2022_kr': 'korean.iso_2022_kr',
'iso2022kr': 'korean.iso_2022_kr',
'iso2022_kr': 'korean.iso_2022_kr',
|
|
From: Hye-Shik C. <pe...@us...> - 2003-01-10 06:50:45
|
perky 03/01/09 22:50:44
Modified: korean aliases.py
Log:
Fix a dumb typo. macwansung -> mackorean
Revision Changes Path
1.10 +2 -2 KoreanCodecs/korean/aliases.py
Index: aliases.py
===================================================================
RCS file: /cvsroot/koco/KoreanCodecs/korean/aliases.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- aliases.py 9 Jan 2003 22:40:39 -0000 1.9
+++ aliases.py 10 Jan 2003 06:50:44 -0000 1.10
@@ -17,7 +17,7 @@
# along with KoreanCodecs; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
-# $Id: aliases.py,v 1.9 2003/01/09 22:40:39 perky Exp $
+# $Id: aliases.py,v 1.10 2003/01/10 06:50:44 perky Exp $
#
import encodings.aliases
@@ -42,5 +42,5 @@
'unijohab': 'korean.unijohab',
'macjohab': 'korean.unijohab',
'mackorean': 'korean.mackorean',
- 'macwansung': 'korean.macwansung',
+ 'macwansung': 'korean.mackorean',
})
|