perky 03/01/09 14:40:40
Modified: korean aliases.py
Added: korean mackorean.py
Log:
Add MacKorean alias.
Revision Changes Path
1.9 +3 -1 KoreanCodecs/korean/aliases.py
Index: aliases.py
===================================================================
RCS file: /cvsroot/koco/KoreanCodecs/korean/aliases.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- aliases.py 9 Jan 2003 21:35:48 -0000 1.8
+++ aliases.py 9 Jan 2003 22:40:39 -0000 1.9
@@ -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.8 2003/01/09 21:35:48 perky Exp $
+# $Id: aliases.py,v 1.9 2003/01/09 22:40:39 perky Exp $
#
import encodings.aliases
@@ -41,4 +41,6 @@
'qwerty2bul': 'korean.qwerty2bul',
'unijohab': 'korean.unijohab',
'macjohab': 'korean.unijohab',
+ 'mackorean': 'korean.mackorean',
+ 'macwansung': 'korean.macwansung',
})
1.1 KoreanCodecs/korean/mackorean.py
Index: mackorean.py
===================================================================
#
# This file is part of KoreanCodecs.
#
# Copyright(C) 2002-2003 Hye-Shik Chang <pe...@Fr...>.
#
# KoreanCodecs is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# KoreanCodecs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with KoreanCodecs; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id: mackorean.py,v 1.1 2003/01/09 22:40:39 perky Exp $
#
try:
from korean.c.mackorean import *
except ImportError:
from korean.python.mackorean import *
|