[KoCo-CVS] [Commit] KoreanCodecs/korean/mappings appleextension.py
Brought to you by:
perky
From: Hye-Shik C. <pe...@us...> - 2003-01-10 03:14:23
|
perky 03/01/09 19:14:22 Modified: korean/mappings appleextension.py Log: Add some character mappings that Apple thinks as 'Standard' but Microsoft doesn't. Revision Changes Path 1.2 +16 -1 KoreanCodecs/korean/mappings/appleextension.py Index: appleextension.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/korean/mappings/appleextension.py,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- appleextension.py 10 Jan 2003 01:55:51 -0000 1.1 +++ appleextension.py 10 Jan 2003 03:14:22 -0000 1.2 @@ -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: appleextension.py,v 1.1 2003/01/10 01:55:51 perky Exp $ +# $Id: appleextension.py,v 1.2 2003/01/10 03:14:22 perky Exp $ # decoding_map = { @@ -1164,6 +1164,21 @@ '\xad\xaf': u'\u21e7\uf87f', '\xad\xb0': u'!\uf87f', '\xff': u'\u2026\uf87f', + +# Apple regards these as 'Standard' but conflicts with Microsoft's mapping. +'\xa2\xe6': u'1\u20de\uf87c', +'\xa2\xe7': u'2\u20de\uf87c', +'\xa2\xc1': u'\u25c9', +'\xa2\xa6': u'\u02dc', +'\xa3\xfe': u'\u203e', +'\xa1\xa9': u'\u2013', +'\xa1\xab': u'\u2016', +'\xa1\xaa': u'\u2014', +'\xa1\xad': u'\u301c', +'\xa1\xfe': u'\xac', +'\xa1\xcb': u'\xa2', +'\xa1\xcd': u'\xa5', +'\xa1\xcc': u'\xa3', } encoding_map = {} |