[Pkg-javascript-commits] [node-iconv-lite] 59/83: Added MS Macintosh Code Page Support
matthew pideil
mpideil-guest at moszumanska.debian.org
Tue Apr 1 19:56:51 UTC 2014
This is an automated email from the git hooks/post-receive script.
mpideil-guest pushed a commit to branch master
in repository node-iconv-lite.
commit acb76984c6e39fa875825714f26cbc0ce2ebe03a
Author: Niggler <nirk.niggler at gmail.com>
Date: Wed Mar 20 22:20:20 2013 -0400
Added MS Macintosh Code Page Support
Microsoft applications recognize the following code page numbers for Mac CPs:
10000 Macintosh Roman
10006 Macintosh Greek
10007 Macintosh Cyrillic
10029 Macintosh Central Europe <-- Added in this commit
10079 Macintosh Icelandic
10081 Macintosh Turkish
Note that the ICONV binary on OSX doesn't recognize these codes.
http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/ has the relevant defs
The CENTEURO.TXT file was used to generate the missing Central Europe codepage
---
encodings/singlebyte.js | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/encodings/singlebyte.js b/encodings/singlebyte.js
index 10d72e4..f41a7ea 100644
--- a/encodings/singlebyte.js
+++ b/encodings/singlebyte.js
@@ -25,6 +25,12 @@ module.exports = {
"1256": "windows1256",
"1257": "windows1257",
"1258": "windows1258",
+ "10000": "macroman",
+ "10006": "macgreek",
+ "10007": "maccyrillic",
+ "10029": "maccenteuro",
+ "10079": "maciceland",
+ "10081": "macturkish",
"20866": "koi8r",
"21866": "koi8u",
"28591": "iso88591",
@@ -283,6 +289,10 @@ module.exports = {
"chars": "������Ά�·¬¦‘’Έ―ΉΊΪΌ��ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄±υφχ§ψ΅°¨ωϋΰώ■ "
},
"ibm869": "cp869",
+ "maccenteuro": {
+ "type": "singlebyte",
+ "chars": "ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ"
+ },
"maccroatian": {
"type": "singlebyte",
"chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈Ć«Č… ÀÃÕŒœĐ—“”‘’÷◊�©⁄¤‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ"
@@ -327,4 +337,4 @@ module.exports = {
"type": "singlebyte",
"chars": "─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"
}
-};
\ No newline at end of file
+};
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-iconv-lite.git
More information about the Pkg-javascript-commits
mailing list