aboutsummaryrefslogtreecommitdiffstats
path: root/enc/trans/iso-8859-3-tbl.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-05 12:32:13 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-05 12:32:13 +0000
commitf694ec83e885f273ac4e0535d7f9e5e1ed9a70be (patch)
tree49ad7d76b005b123cfe2cab8bec01ab4666be2e0 /enc/trans/iso-8859-3-tbl.rb
parent81577c26ee741b69b1a5e7215eca9b4b0b3092bf (diff)
downloadruby-f694ec83e885f273ac4e0535d7f9e5e1ed9a70be.tar.gz
* tool/build-transcode: new file.
* tool/transcode-tblgen.rb: new file. * enc/trans/make_transdb.rb: exclude *.erb.c. * enc/depend: exclude *.erb.c. * enc/trans/utf_16_32.erb.c: new file. * enc/trans/single_byte.erb.c: new file. * enc/trans/japanese.erb.c: new file. * enc/trans/korean.erb.c: new file. * enc/trans/iso-8859-2-tbl.rb: new file. * enc/trans/iso-8859-3-tbl.rb: new file. * enc/trans/iso-8859-4-tbl.rb: new file. * enc/trans/iso-8859-5-tbl.rb: new file. * enc/trans/iso-8859-6-tbl.rb: new file. * enc/trans/iso-8859-7-tbl.rb: new file. * enc/trans/iso-8859-8-tbl.rb: new file. * enc/trans/iso-8859-9-tbl.rb: new file. * enc/trans/iso-8859-10-tbl.rb: new file. * enc/trans/iso-8859-11-tbl.rb: new file. * enc/trans/iso-8859-13-tbl.rb: new file. * enc/trans/iso-8859-14-tbl.rb: new file. * enc/trans/iso-8859-15-tbl.rb: new file. * enc/trans/eucjp-tbl.rb: new file. * enc/trans/sjis-tbl.rb: new file. * enc/trans/euckr-tbl.rb: new file. * enc/trans/utf_16_32.c: regenerated. * enc/trans/single_byte.c: regenerated. * enc/trans/japanese.c: regenerated. * enc/trans/korean.c: regenerated. [ruby-dev:35730] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/trans/iso-8859-3-tbl.rb')
-rw-r--r--enc/trans/iso-8859-3-tbl.rb91
1 files changed, 91 insertions, 0 deletions
diff --git a/enc/trans/iso-8859-3-tbl.rb b/enc/trans/iso-8859-3-tbl.rb
new file mode 100644
index 0000000000..4751ee0c0a
--- /dev/null
+++ b/enc/trans/iso-8859-3-tbl.rb
@@ -0,0 +1,91 @@
+ISO_8859_3_TO_UCS_TBL = [
+ ["A0",0xA0],
+ ["A1",0x126],
+ ["A2",0x2D8],
+ ["A3",0xA3],
+ ["A4",0xA4],
+ ["A6",0x124],
+ ["A7",0xA7],
+ ["A8",0xA8],
+ ["A9",0x130],
+ ["AA",0x15E],
+ ["AB",0x11E],
+ ["AC",0x134],
+ ["AD",0xAD],
+ ["AF",0x17B],
+ ["B0",0xB0],
+ ["B1",0x127],
+ ["B2",0xB2],
+ ["B3",0xB3],
+ ["B4",0xB4],
+ ["B5",0xB5],
+ ["B6",0x125],
+ ["B7",0xB7],
+ ["B8",0xB8],
+ ["B9",0x131],
+ ["BA",0x15F],
+ ["BB",0x11F],
+ ["BC",0x135],
+ ["BD",0xBD],
+ ["BF",0x17C],
+ ["C0",0xC0],
+ ["C1",0xC1],
+ ["C2",0xC2],
+ ["C4",0xC4],
+ ["C5",0x10A],
+ ["C6",0x108],
+ ["C7",0xC7],
+ ["C8",0xC8],
+ ["C9",0xC9],
+ ["CA",0xCA],
+ ["CB",0xCB],
+ ["CC",0xCC],
+ ["CD",0xCD],
+ ["CE",0xCE],
+ ["CF",0xCF],
+ ["D1",0xD1],
+ ["D2",0xD2],
+ ["D3",0xD3],
+ ["D4",0xD4],
+ ["D5",0x120],
+ ["D6",0xD6],
+ ["D7",0xD7],
+ ["D8",0x11C],
+ ["D9",0xD9],
+ ["DA",0xDA],
+ ["DB",0xDB],
+ ["DC",0xDC],
+ ["DD",0x16C],
+ ["DE",0x15C],
+ ["DF",0xDF],
+ ["E0",0xE0],
+ ["E1",0xE1],
+ ["E2",0xE2],
+ ["E4",0xE4],
+ ["E5",0x10B],
+ ["E6",0x109],
+ ["E7",0xE7],
+ ["E8",0xE8],
+ ["E9",0xE9],
+ ["EA",0xEA],
+ ["EB",0xEB],
+ ["EC",0xEC],
+ ["ED",0xED],
+ ["EE",0xEE],
+ ["EF",0xEF],
+ ["F1",0xF1],
+ ["F2",0xF2],
+ ["F3",0xF3],
+ ["F4",0xF4],
+ ["F5",0x121],
+ ["F6",0xF6],
+ ["F7",0xF7],
+ ["F8",0x11D],
+ ["F9",0xF9],
+ ["FA",0xFA],
+ ["FB",0xFB],
+ ["FC",0xFC],
+ ["FD",0x16D],
+ ["FE",0x15D],
+ ["FF",0x2D9],
+]