From 5f8e0f8ef9a422691dd72e8a953a42a41478fcb4 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Wed, 4 May 2011 16:18:09 +0900 Subject: Releasing debian version 0.5.1-1 --- libwc/map/mk_gb_ucs_map.pl | 92 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 libwc/map/mk_gb_ucs_map.pl (limited to 'libwc/map/mk_gb_ucs_map.pl') diff --git a/libwc/map/mk_gb_ucs_map.pl b/libwc/map/mk_gb_ucs_map.pl new file mode 100644 index 0000000..9a63c5a --- /dev/null +++ b/libwc/map/mk_gb_ucs_map.pl @@ -0,0 +1,92 @@ + +@NAME = (); +while() { + chop; + s/\s*$//; + (($n, $m, $c) = split(" ", $_, 3)) >= 3 || next; + push(@NAME, $n); + $MAP{$n} = $m; + $CODE{$n} = $c; +} + +foreach $name (@NAME) { + +$code = $CODE{$name}; +$map = $MAP{$name}; + +print "$name\t$map\t$code\n"; + +@to_ucs = (); +%from_ucs = (); +open(MAP, "< $map"); +open(OUT, "> ${name}_ucs.map"); +while() { + /^#/ && next; + s/#.*//; + (($i, $u) = split(" ")) || next; + $i = hex($i); + $u = hex($u); + $to_ucs[$i] = $u; + if ($u > 0) { + $from_ucs{$u} = $i; + } +} + +# compatibility with GBK(CP936), GB18030 +delete $from_ucs{$to_ucs[0x2124]}; +delete $from_ucs{$to_ucs[0x212A]}; +$from_ucs{0x00B7} = 0x2124; +$from_ucs{0x2014} = 0x212A; +$to_ucs[0x2124] = 0x00B7; +$to_ucs[0x212A] = 0x2014; + +# print OUT < $b } keys %from_ucs; +$nucs = @ucs + 0; + +print OUT <