From: Rafael Garcia-Suarez Date: Thu, 20 May 2004 13:30:25 +0000 (+0000) Subject: Upgrade to Encode 2.00. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7237418a8f516d6002de239a7ae175380a62b3c8;hp=bc2a472ee2496e18323688445a703595a998e3a4;p=p5sagit%2Fp5-mst-13.2.git Upgrade to Encode 2.00. p4raw-id: //depot/perl@22835 --- diff --git a/ext/Encode/Byte/Byte.pm b/ext/Encode/Byte/Byte.pm index 638a992..d40c1c3 100644 --- a/ext/Encode/Byte/Byte.pm +++ b/ext/Encode/Byte/Byte.pm @@ -1,6 +1,6 @@ package Encode::Byte; use Encode; -our $VERSION = do { my @r = (q$Revision: 1.23 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use XSLoader; XSLoader::load(__PACKAGE__,$VERSION); diff --git a/ext/Encode/CN/CN.pm b/ext/Encode/CN/CN.pm index e163c06..be5a830 100644 --- a/ext/Encode/CN/CN.pm +++ b/ext/Encode/CN/CN.pm @@ -4,7 +4,7 @@ BEGIN { die "Encode::CN not supported on EBCDIC\n"; } } -our $VERSION = do { my @r = (q$Revision: 1.24 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode; use XSLoader; diff --git a/ext/Encode/Changes b/ext/Encode/Changes index b034b93..83b8221 100644 --- a/ext/Encode/Changes +++ b/ext/Encode/Changes @@ -1,9 +1,27 @@ # Revision history for Perl extension Encode. # -# $Id: Changes,v 1.99 2003/12/29 02:47:16 dankogai Exp dankogai $ +# $Id: Changes,v 2.0 2004/05/16 20:55:15 dankogai Exp $ # -$Revision: 1.99 $ $Date: 2003/12/29 02:47:16 $ +$Revision: 2.0 $ $Date: 2004/05/16 20:55:15 $ +* version updated to 2.00 + -- sorry, no big feature change. I just hate version 1.100 :) +! lib/Encode/Guess.pm + Unicode/Unicode.pm + addressed UTF-(8|32LE) + BOM misguessing + https://rt.cpan.org/Ticket/Display.html?id=6279 +! Encode.pm + s/is_utif8/is_utf8/ in POD +! Encode/lib/Encode/CN/HZ.pm + Fixes "make test" failure after the patch to pp_hot.c + by Sadahiro-san + Message-Id: <20040222182357.6B39.BQW10602@nifty.com> +! bin/piconv + From: autrijus@autrijus.org + Subject: [PATCH] "piconv -C 512" badly broken + Message-Id: <1072870210.769.5.camel@localhost> + +1.99 2003/12/29 02:47:16 ! Unicode/Unicode.xs find_encoding("UTF-16BE")->encode("abc") now null terminates http://www.mail-archive.com/perl5-porters@perl.org/msg69766.html diff --git a/ext/Encode/EBCDIC/EBCDIC.pm b/ext/Encode/EBCDIC/EBCDIC.pm index 4eb674a..200a82f 100644 --- a/ext/Encode/EBCDIC/EBCDIC.pm +++ b/ext/Encode/EBCDIC/EBCDIC.pm @@ -1,6 +1,6 @@ package Encode::EBCDIC; use Encode; -our $VERSION = do { my @r = (q$Revision: 1.21 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use XSLoader; XSLoader::load(__PACKAGE__,$VERSION); diff --git a/ext/Encode/Encode.pm b/ext/Encode/Encode.pm index 2d6b7e2..62be76e 100644 --- a/ext/Encode/Encode.pm +++ b/ext/Encode/Encode.pm @@ -1,9 +1,9 @@ # -# $Id: Encode.pm,v 1.99 2003/12/29 02:47:16 dankogai Exp dankogai $ +# $Id: Encode.pm,v 2.0 2004/05/16 20:55:15 dankogai Exp $ # package Encode; use strict; -our $VERSION = "1.99_01"; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; sub DEBUG () { 0 } use XSLoader (); XSLoader::load(__PACKAGE__, $VERSION); diff --git a/ext/Encode/Encode.xs b/ext/Encode/Encode.xs index 8bdcdfa..77d53af 100644 --- a/ext/Encode/Encode.xs +++ b/ext/Encode/Encode.xs @@ -1,5 +1,5 @@ /* - $Id: Encode.xs,v 1.56 2003/06/18 09:29:02 dankogai Exp $ + $Id: Encode.xs,v 2.0 2004/05/16 20:55:15 dankogai Exp $ */ #define PERL_NO_GET_CONTEXT diff --git a/ext/Encode/Encode/Changes.e2x b/ext/Encode/Encode/Changes.e2x index f6b5a77..5c67c55 100644 --- a/ext/Encode/Encode/Changes.e2x +++ b/ext/Encode/Encode/Changes.e2x @@ -1,5 +1,5 @@ # -# $Id: Changes.e2x,v 1.10 2002/03/31 21:00:50 dankogai Exp $ +# $Id: Changes.e2x,v 2.0 2004/05/16 20:55:15 dankogai Exp $ # Revision history for Perl extension Encode::$_Name_. # diff --git a/ext/Encode/JP/JP.pm b/ext/Encode/JP/JP.pm index 260d07f..696f928 100644 --- a/ext/Encode/JP/JP.pm +++ b/ext/Encode/JP/JP.pm @@ -5,7 +5,7 @@ BEGIN { } } use Encode; -our $VERSION = do { my @r = (q$Revision: 1.25 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use XSLoader; XSLoader::load(__PACKAGE__,$VERSION); diff --git a/ext/Encode/KR/KR.pm b/ext/Encode/KR/KR.pm index 16f39b2..e9d4073 100644 --- a/ext/Encode/KR/KR.pm +++ b/ext/Encode/KR/KR.pm @@ -4,7 +4,7 @@ BEGIN { die "Encode::KR not supported on EBCDIC\n"; } } -our $VERSION = do { my @r = (q$Revision: 1.23 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode; use XSLoader; diff --git a/ext/Encode/META.yml b/ext/Encode/META.yml index f14074f..b0a48f0 100644 --- a/ext/Encode/META.yml +++ b/ext/Encode/META.yml @@ -1,10 +1,10 @@ # http://module-build.sourceforge.net/META-spec.html #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# name: Encode -version: 1.99 +version: 2.00 version_from: Encode.pm installdirs: perl requires: distribution_type: module -generated_by: ExtUtils::MakeMaker version 6.21_01 +generated_by: ExtUtils::MakeMaker version 6.17 diff --git a/ext/Encode/Symbol/Symbol.pm b/ext/Encode/Symbol/Symbol.pm index 23bd274..7ad8ca9 100644 --- a/ext/Encode/Symbol/Symbol.pm +++ b/ext/Encode/Symbol/Symbol.pm @@ -1,6 +1,6 @@ package Encode::Symbol; use Encode; -our $VERSION = do { my @r = (q$Revision: 1.22 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use XSLoader; XSLoader::load(__PACKAGE__,$VERSION); diff --git a/ext/Encode/TW/TW.pm b/ext/Encode/TW/TW.pm index a203c29..2e1abc0 100644 --- a/ext/Encode/TW/TW.pm +++ b/ext/Encode/TW/TW.pm @@ -4,7 +4,7 @@ BEGIN { die "Encode::TW not supported on EBCDIC\n"; } } -our $VERSION = do { my @r = (q$Revision: 1.26 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode; use XSLoader; diff --git a/ext/Encode/Unicode/Unicode.pm b/ext/Encode/Unicode/Unicode.pm index 4c23c0e..8c661a4 100644 --- a/ext/Encode/Unicode/Unicode.pm +++ b/ext/Encode/Unicode/Unicode.pm @@ -4,7 +4,7 @@ use strict; use warnings; no warnings 'redefine'; -our $VERSION = do { my @r = (q$Revision: 1.40 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use XSLoader; XSLoader::load(__PACKAGE__,$VERSION); @@ -146,6 +146,9 @@ Little Endian (aka VAX byte order). For anything not marked either BE or LE, a character called Byte Order Mark (BOM) indicating the endianness is prepended to the string. +CAVEAT: Though BOM in utf8 (\xEF\xBB\xBF) is valid, it is meaningless +and as of this writing Encode suite just leave it as is (\x{FeFF}). + =over 4 =item BOM as integer when fetched in network byte order diff --git a/ext/Encode/Unicode/Unicode.xs b/ext/Encode/Unicode/Unicode.xs index de15da5..6dadbdc 100644 --- a/ext/Encode/Unicode/Unicode.xs +++ b/ext/Encode/Unicode/Unicode.xs @@ -1,5 +1,5 @@ /* - $Id: Unicode.xs,v 1.9 2003/12/29 02:47:16 dankogai Exp dankogai $ + $Id: Unicode.xs,v 2.0 2004/05/16 20:55:16 dankogai Exp $ */ #define PERL_NO_GET_CONTEXT diff --git a/ext/Encode/bin/enc2xs b/ext/Encode/bin/enc2xs index 61171d1..ce5fa8e 100644 --- a/ext/Encode/bin/enc2xs +++ b/ext/Encode/bin/enc2xs @@ -9,7 +9,7 @@ use strict; use warnings; use Getopt::Std; my @orig_ARGV = @ARGV; -our $VERSION = do { my @r = (q$Revision: 1.32 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; # These may get re-ordered. # RAW is a do_now as inserted by &enter diff --git a/ext/Encode/bin/piconv b/ext/Encode/bin/piconv index 06dea1f..fd546f0 100644 --- a/ext/Encode/bin/piconv +++ b/ext/Encode/bin/piconv @@ -1,5 +1,5 @@ #!./perl -# $Id: piconv,v 1.27 2003/06/18 09:29:02 dankogai Exp $ +# $Id: piconv,v 2.0 2004/05/16 20:55:16 dankogai Exp $ # use 5.8.0; use strict; diff --git a/ext/Encode/bin/ucm2table b/ext/Encode/bin/ucm2table index adcb9e8..4207c7d 100644 --- a/ext/Encode/bin/ucm2table +++ b/ext/Encode/bin/ucm2table @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: ucm2table,v 1.2 2002/04/30 16:13:37 dankogai Exp $ +# $Id: ucm2table,v 2.0 2004/05/16 20:55:16 dankogai Exp $ # use 5.006; diff --git a/ext/Encode/bin/ucmlint b/ext/Encode/bin/ucmlint index 99a74d0..bc0ebf5 100644 --- a/ext/Encode/bin/ucmlint +++ b/ext/Encode/bin/ucmlint @@ -1,10 +1,10 @@ #!/usr/local/bin/perl # -# $Id: ucmlint,v 0.2 2002/04/22 02:45:50 dankogai Exp $ +# $Id: ucmlint,v 2.0 2004/05/16 20:55:16 dankogai Exp $ # use strict; -our $VERSION = do { my @r = (q$Revision: 0.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Getopt::Std; our %Opt; diff --git a/ext/Encode/bin/ucmsort b/ext/Encode/bin/ucmsort index 2287198..d693cfe 100644 --- a/ext/Encode/bin/ucmsort +++ b/ext/Encode/bin/ucmsort @@ -1,6 +1,6 @@ #!/usr/local/bin/perl # -# $Id: ucmsort,v 0.1 2002/10/18 16:08:28 dankogai Exp $ +# $Id: ucmsort,v 2.0 2004/05/16 20:55:16 dankogai Exp $ # use strict; my @lines; diff --git a/ext/Encode/encoding.pm b/ext/Encode/encoding.pm index 2edf647..d1181ff 100644 --- a/ext/Encode/encoding.pm +++ b/ext/Encode/encoding.pm @@ -1,6 +1,6 @@ -# $Id: encoding.pm,v 1.48 2003/12/29 02:47:16 dankogai Exp dankogai $ +# $Id: encoding.pm,v 2.0 2004/05/16 20:55:16 dankogai Exp $ package encoding; -our $VERSION = do { my @r = (q$Revision: 1.48 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode; use strict; diff --git a/ext/Encode/lib/Encode/Alias.pm b/ext/Encode/lib/Encode/Alias.pm index e06dce5..fe33039 100644 --- a/ext/Encode/lib/Encode/Alias.pm +++ b/ext/Encode/lib/Encode/Alias.pm @@ -2,7 +2,7 @@ package Encode::Alias; use strict; no warnings 'redefine'; use Encode; -our $VERSION = do { my @r = (q$Revision: 1.38 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; sub DEBUG () { 0 } use base qw(Exporter); diff --git a/ext/Encode/lib/Encode/CJKConstants.pm b/ext/Encode/lib/Encode/CJKConstants.pm index bea2f3e..4ab40e7 100644 --- a/ext/Encode/lib/Encode/CJKConstants.pm +++ b/ext/Encode/lib/Encode/CJKConstants.pm @@ -1,13 +1,13 @@ # -# $Id: CJKConstants.pm,v 1.2 2003/04/24 17:43:16 dankogai Exp $ +# $Id: CJKConstants.pm,v 2.0 2004/05/16 20:55:16 dankogai Exp $ # package Encode::CJKConstants; use strict; -our $RCSID = q$Id: CJKConstants.pm,v 1.2 2003/04/24 17:43:16 dankogai Exp $; -our $VERSION = do { my @r = (q$Revision: 1.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $RCSID = q$Id: CJKConstants.pm,v 2.0 2004/05/16 20:55:16 dankogai Exp $; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Carp; diff --git a/ext/Encode/lib/Encode/CN/HZ.pm b/ext/Encode/lib/Encode/CN/HZ.pm index 02c764c..15440a4 100644 --- a/ext/Encode/lib/Encode/CN/HZ.pm +++ b/ext/Encode/lib/Encode/CN/HZ.pm @@ -3,8 +3,7 @@ package Encode::CN::HZ; use strict; use vars qw($VERSION); -#$VERSION = do { my @r = (q$Revision: 1.5 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; -$VERSION = 1.05_01; +$VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode qw(:fallbacks); diff --git a/ext/Encode/lib/Encode/Config.pm b/ext/Encode/lib/Encode/Config.pm index 724b444..0c752cf8 100644 --- a/ext/Encode/lib/Encode/Config.pm +++ b/ext/Encode/lib/Encode/Config.pm @@ -2,7 +2,7 @@ # Demand-load module list # package Encode::Config; -our $VERSION = do { my @r = (q$Revision: 1.7 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use strict; diff --git a/ext/Encode/lib/Encode/Encoder.pm b/ext/Encode/lib/Encode/Encoder.pm index dfa53f4..fe2a2b9 100644 --- a/ext/Encode/lib/Encode/Encoder.pm +++ b/ext/Encode/lib/Encode/Encoder.pm @@ -1,10 +1,10 @@ # -# $Id: Encoder.pm,v 0.7 2003/07/08 21:52:14 dankogai Exp $ +# $Id: Encoder.pm,v 2.0 2004/05/16 20:55:17 dankogai Exp $ # package Encode::Encoder; use strict; use warnings; -our $VERSION = do { my @r = (q$Revision: 0.7 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; require Exporter; our @ISA = qw(Exporter); diff --git a/ext/Encode/lib/Encode/Encoding.pm b/ext/Encode/lib/Encode/Encoding.pm index 6f19627..92f8c96 100644 --- a/ext/Encode/lib/Encode/Encoding.pm +++ b/ext/Encode/lib/Encode/Encoding.pm @@ -1,7 +1,7 @@ package Encode::Encoding; # Base class for classes which implement encodings use strict; -our $VERSION = do { my @r = (q$Revision: 1.33 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; require Encode; diff --git a/ext/Encode/lib/Encode/Guess.pm b/ext/Encode/lib/Encode/Guess.pm index 8a4f04c..5692cee 100644 --- a/ext/Encode/lib/Encode/Guess.pm +++ b/ext/Encode/lib/Encode/Guess.pm @@ -2,7 +2,7 @@ package Encode::Guess; use strict; use Encode qw(:fallbacks find_encoding); -our $VERSION = do { my @r = (q$Revision: 1.9 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; my $Canon = 'Guess'; sub DEBUG () { 0 } @@ -19,6 +19,7 @@ sub perlio_ok { 0 } our @EXPORT = qw(guess_encoding); our $NoUTFAutoGuess = 0; +our $UTF8_BOM = pack("C3", 0xef, 0xbb, 0xbf); sub import { # Exporter not used so we do it on our own my $callpkg = caller; @@ -78,12 +79,15 @@ sub guess { # cheat 1: BOM use Encode::Unicode; unless ($NoUTFAutoGuess) { - my $BOM = unpack('n', $octet); - return find_encoding('UTF-16') - if (defined $BOM and ($BOM == 0xFeFF or $BOM == 0xFFFe)); + my $BOM = pack('C3', unpack("C3", $octet)); + return find_encoding('utf8') + if (defined $BOM and $BOM eq $UTF8_BOM); $BOM = unpack('N', $octet); return find_encoding('UTF-32') if (defined $BOM and ($BOM == 0xFeFF or $BOM == 0xFFFe0000)); + $BOM = unpack('n', $octet); + return find_encoding('UTF-16') + if (defined $BOM and ($BOM == 0xFeFF or $BOM == 0xFFFe)); if ($octet =~ /\x00/o){ # if \x00 found, we assume UTF-(16|32)(BE|LE) my $utf; my ($be, $le) = (0, 0); @@ -192,6 +196,8 @@ To use it more practically, you have to give the names of encodings to check (I as follows). The name of suspects can either be canonical names or aliases. +CAVEAT: Unlike UTF-(16|32), BOM in utf8 is NOT AUTOMATICALLY STRIPPED. + # tries all major Japanese Encodings as well use Encode::Guess qw/euc-jp shiftjis 7bit-jis/; diff --git a/ext/Encode/lib/Encode/JP/H2Z.pm b/ext/Encode/lib/Encode/JP/H2Z.pm index b6a810a..0c84c62 100644 --- a/ext/Encode/lib/Encode/JP/H2Z.pm +++ b/ext/Encode/lib/Encode/JP/H2Z.pm @@ -1,13 +1,13 @@ # -# $Id: H2Z.pm,v 1.2 2002/04/27 18:59:50 dankogai Exp $ +# $Id: H2Z.pm,v 2.0 2004/05/16 20:55:17 dankogai Exp $ # package Encode::JP::H2Z; use strict; -our $RCSID = q$Id: H2Z.pm,v 1.2 2002/04/27 18:59:50 dankogai Exp $; -our $VERSION = do { my @r = (q$Revision: 1.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $RCSID = q$Id: H2Z.pm,v 2.0 2004/05/16 20:55:17 dankogai Exp $; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode::CJKConstants qw(:all); diff --git a/ext/Encode/lib/Encode/JP/JIS7.pm b/ext/Encode/lib/Encode/JP/JIS7.pm index b08cb6c..28503ec 100644 --- a/ext/Encode/lib/Encode/JP/JIS7.pm +++ b/ext/Encode/lib/Encode/JP/JIS7.pm @@ -1,7 +1,7 @@ package Encode::JP::JIS7; use strict; -our $VERSION = do { my @r = (q$Revision: 1.12 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode qw(:fallbacks); diff --git a/ext/Encode/lib/Encode/KR/2022_KR.pm b/ext/Encode/lib/Encode/KR/2022_KR.pm index ed660d2..8b4052b 100644 --- a/ext/Encode/lib/Encode/KR/2022_KR.pm +++ b/ext/Encode/lib/Encode/KR/2022_KR.pm @@ -1,7 +1,7 @@ package Encode::KR::2022_KR; use strict; -our $VERSION = do { my @r = (q$Revision: 1.6 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode qw(:fallbacks); diff --git a/ext/Encode/lib/Encode/MIME/Header.pm b/ext/Encode/lib/Encode/MIME/Header.pm index 71f9512..f000776 100644 --- a/ext/Encode/lib/Encode/MIME/Header.pm +++ b/ext/Encode/lib/Encode/MIME/Header.pm @@ -1,7 +1,7 @@ package Encode::MIME::Header; use strict; # use warnings; -our $VERSION = do { my @r = (q$Revision: 1.9 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use Encode qw(find_encoding encode_utf8 decode_utf8); use MIME::Base64; use Carp; diff --git a/ext/Encode/lib/Encode/Unicode/UTF7.pm b/ext/Encode/lib/Encode/Unicode/UTF7.pm index 7de8e41..a91bff7 100644 --- a/ext/Encode/lib/Encode/Unicode/UTF7.pm +++ b/ext/Encode/lib/Encode/Unicode/UTF7.pm @@ -1,12 +1,12 @@ # -# $Id: UTF7.pm,v 0.2 2003/05/19 04:56:03 dankogai Exp $ +# $Id: UTF7.pm,v 2.0 2004/05/16 20:55:17 dankogai Exp $ # package Encode::Unicode::UTF7; use strict; no warnings 'redefine'; use base qw(Encode::Encoding); __PACKAGE__->Define('UTF-7'); -our $VERSION = do { my @r = (q$Revision: 0.2 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; use MIME::Base64; use Encode; diff --git a/ext/Encode/t/Encoder.t b/ext/Encode/t/Encoder.t index af83cf6..2aab6c6 100644 --- a/ext/Encode/t/Encoder.t +++ b/ext/Encode/t/Encoder.t @@ -1,5 +1,5 @@ # -# $Id: Encoder.t,v 1.3 2002/04/16 23:35:00 dankogai Exp $ +# $Id: Encoder.t,v 2.0 2004/05/16 20:55:17 dankogai Exp $ # BEGIN { diff --git a/ext/Encode/t/Mod_EUCJP.pm b/ext/Encode/t/Mod_EUCJP.pm index f9aae7d..488f156 100644 --- a/ext/Encode/t/Mod_EUCJP.pm +++ b/ext/Encode/t/Mod_EUCJP.pm @@ -1,4 +1,4 @@ -# $Id: Mod_EUCJP.pm,v 1.1 2003/02/28 01:40:27 dankogai Exp $ +# $Id: Mod_EUCJP.pm,v 2.0 2004/05/16 20:55:17 dankogai Exp $ # This file is in euc-jp package Mod_EUCJP; use encoding "euc-jp"; diff --git a/ext/Encode/t/Unicode.t b/ext/Encode/t/Unicode.t index 4c72922..928a1d6 100644 --- a/ext/Encode/t/Unicode.t +++ b/ext/Encode/t/Unicode.t @@ -1,5 +1,5 @@ # -# $Id: Unicode.t,v 1.13 2003/06/18 09:29:02 dankogai Exp $ +# $Id: Unicode.t,v 2.0 2004/05/16 20:55:17 dankogai Exp $ # # This script is written entirely in ASCII, even though quoted literals # do include non-BMP unicode characters -- Are you happy, jhi? diff --git a/ext/Encode/t/at-cn.t b/ext/Encode/t/at-cn.t index e1cb79a..6249fee 100644 --- a/ext/Encode/t/at-cn.t +++ b/ext/Encode/t/at-cn.t @@ -34,16 +34,16 @@ use_ok('Encode::CN'); run_tests('Simplified Chinese only', { 'utf' => ( -pack('U*',12298,26131,32463,12299,31532,19968,21350). -pack('U*',24406,26352,65306). -pack('U*',22823,21705,20094,20803,65292,19975,29289,36164,22987,65292). -pack('U*',20035,32479,22825,12290). -pack('U*',20113,34892,38632,26045,65292,21697,29289,27969,24418,12290). -pack('U*',22823,26126,22987,32456,65292,20845,20301,26102,25104,65292). -pack('U*',26102,20056,20845,40857,20197,24481,22825,12290). -pack('U*',20094,36947,21464,21270,65292,21508,27491,24615,21629,65292). -pack('U*',20445,21512,22823,21644,65292,20035,21033,36126,12290). -pack('U*',39318,20986,24246,29289,65292,19975,22269,21688,23425,12290) +12298.26131.32463.12299.31532.19968.21350. +24406.26352.65306. +22823.21705.20094.20803.65292.19975.29289.36164.22987.65292. +20035.32479.22825.12290. +20113.34892.38632.26045.65292.21697.29289.27969.24418.12290. +22823.26126.22987.32456.65292.20845.20301.26102.25104.65292. +26102.20056.20845.40857.20197.24481.22825.12290. +20094.36947.21464.21270.65292.21508.27491.24615.21629.65292. +20445.21512.22823.21644.65292.20035.21033.36126.12290. +39318.20986.24246.29289.65292.19975.22269.21688.23425.12290 ), 'euc-cn' => join('', @@ -88,15 +88,15 @@ pack('U*',39318,20986,24246,29289,65292,19975,22269,21688,23425,12290) run_tests('Simplified Chinese + ASCII', { 'utf' => ( -pack('U*',35937,26352,65306,10). -pack('U*',22825,34892,20581,65292,21531,23376,20197,33258,24378,19981,24687,12290,10). -pack('U*',28508,40857,21247,29992,65292,38451,22312,19979,20063,12290,32). -pack('U*',35265,40857,22312,30000,65292,24503,26045,26222,20063,12290,32). -pack('U*',32456,26085,20094,20094,65292,21453,22797,36947,20063,12290,10). -pack('U*',25110,36291,22312,28170,65292,36827,26080,21646,20063,12290,39134). -pack('U*',40857,22312,22825,65292,22823,20154,36896,20063,12290,32). -pack('U*',20130,40857,26377,24724,65292,30408,19981,21487,20037,20063,12290,10). -pack('U*',29992,20061,65292,22825,24503,19981,21487,20026,39318,20063,12290) +35937.26352.65306.10. +22825.34892.20581.65292.21531.23376.20197.33258.24378.19981.24687.12290.10. +28508.40857.21247.29992.65292.38451.22312.19979.20063.12290.32. +35265.40857.22312.30000.65292.24503.26045.26222.20063.12290.32. +32456.26085.20094.20094.65292.21453.22797.36947.20063.12290.10. +25110.36291.22312.28170.65292.36827.26080.21646.20063.12290.39134. +40857.22312.22825.65292.22823.20154.36896.20063.12290.32. +20130.40857.26377.24724.65292.30408.19981.21487.20037.20063.12290.10. +29992.20061.65292.22825.24503.19981.21487.20026.39318.20063.12290 ), 'cp936' => join(chr(10), @@ -117,7 +117,7 @@ pack('U*',29992,20061,65292,22825,24503,19981,21487,20026,39318,20063,12290) }); run_tests('Traditional Chinese', { - 'utf', => pack('U*',20094,65306,20803,12289,20136,12289,21033,12289,35998), + 'utf', => 20094.65306.20803.12289.20136.12289.21033.12289.35998, 'gb12345-raw' => 'G,#:T*!":`!"@{!"Uj', 'gbk' => 'Ǭ£ºÔª¡¢ºà¡¢Àû¡¢Ø‘', }); diff --git a/ext/Encode/t/at-tw.t b/ext/Encode/t/at-tw.t index 21e77db..11abbf3 100644 --- a/ext/Encode/t/at-tw.t +++ b/ext/Encode/t/at-tw.t @@ -36,10 +36,10 @@ use_ok('Encode::TW'); run_tests('Basic Big5 range', { 'utf' => ( -pack('U*',24093,39640,38525,20043,33495,35028,20846,65292). -pack('U*',26389,30343,32771,26352,20271,24248,65108). -pack('U*',25885,25552,35998,20110,23391,38508,20846,65292). -pack('U*',24799,24218,23493,21566,20197,38477,65108) +24093.39640.38525.20043.33495.35028.20846.65292. +26389.30343.32771.26352.20271.24248.65108. +25885.25552.35998.20110.23391.38508.20846.65292. +24799.24218.23493.21566.20197.38477.65108 ), 'big5' => (join('', @@ -60,11 +60,11 @@ pack('U*',24799,24218,23493,21566,20197,38477,65108) run_tests('Hong Kong Extensions', { 'utf' => ( -pack('U*',24863,35613,25152,26377,20351,29992,32,80,101,114,108,32). -pack('U*',22021,26379,21451,65292,32102,25105,21707,22021). -pack('U*',25903,25345,12289,24847,35211,21644,40723,21237). -pack('U*',22914,26524,32232,30908,26377,20219,20309,37679,28431). -pack('U*',65292,35531,21578,35380,25105,21707,12290) +24863.35613.25152.26377.20351.29992.32.80.101.114.108.32. +22021.26379.21451.65292.32102.25105.21707.22021. +25903.25345.12289.24847.35211.21644.40723.21237. +22914.26524.32232.30908.26377.20219.20309.37679.28431. +65292.35531.21578.35380.25105.21707.12290 ), 'big5-hkscs' => join('', diff --git a/ext/Encode/t/enc_data.t b/ext/Encode/t/enc_data.t index 819e1a3..4d9b544 100644 --- a/ext/Encode/t/enc_data.t +++ b/ext/Encode/t/enc_data.t @@ -1,4 +1,4 @@ -# $Id: enc_data.t,v 1.1 2003/03/09 17:47:32 dankogai Exp $ +# $Id: enc_data.t,v 2.0 2004/05/16 20:55:18 dankogai Exp $ BEGIN { require Config; import Config; diff --git a/ext/Encode/t/enc_eucjp.t b/ext/Encode/t/enc_eucjp.t index 111a034..ab660af 100644 --- a/ext/Encode/t/enc_eucjp.t +++ b/ext/Encode/t/enc_eucjp.t @@ -1,4 +1,4 @@ -# $Id: enc_eucjp.t,v 1.5 2003/08/20 11:15:31 dankogai Exp $ +# $Id: enc_eucjp.t,v 2.0 2004/05/16 20:55:18 dankogai Exp $ # This is the twin of enc_utf8.t . BEGIN { diff --git a/ext/Encode/t/enc_module.t b/ext/Encode/t/enc_module.t index d6d9e7e..7cc150c 100644 --- a/ext/Encode/t/enc_module.t +++ b/ext/Encode/t/enc_module.t @@ -1,4 +1,4 @@ -# $Id: enc_module.t,v 1.6 2003/05/10 18:13:59 dankogai Exp $ +# $Id: enc_module.t,v 2.0 2004/05/16 20:55:18 dankogai Exp $ # This file is in euc-jp BEGIN { require Config; import Config; diff --git a/ext/Encode/t/enc_utf8.t b/ext/Encode/t/enc_utf8.t index 3f6fdc7..1c1a1c7 100644 --- a/ext/Encode/t/enc_utf8.t +++ b/ext/Encode/t/enc_utf8.t @@ -1,4 +1,4 @@ -# $Id: enc_utf8.t,v 1.4 2003/08/20 11:15:31 dankogai Exp $ +# $Id: enc_utf8.t,v 2.0 2004/05/16 20:55:18 dankogai Exp $ # This is the twin of enc_eucjp.t . BEGIN { diff --git a/ext/Encode/t/jperl.t b/ext/Encode/t/jperl.t index f78698d..60b0317 100644 --- a/ext/Encode/t/jperl.t +++ b/ext/Encode/t/jperl.t @@ -1,5 +1,5 @@ # -# $Id: jperl.t,v 1.25 2002/10/06 03:27:02 dankogai Exp $ +# $Id: jperl.t,v 2.0 2004/05/16 20:55:18 dankogai Exp $ # # This script is written in euc-jp diff --git a/ext/Encode/t/mime-header.t b/ext/Encode/t/mime-header.t index 25438bc..5f80347 100644 --- a/ext/Encode/t/mime-header.t +++ b/ext/Encode/t/mime-header.t @@ -1,5 +1,5 @@ # -# $Id: mime-header.t,v 1.8 2003/08/20 11:15:31 dankogai Exp $ +# $Id: mime-header.t,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # This script is written in utf8 # BEGIN { diff --git a/ext/Encode/t/rt.pl b/ext/Encode/t/rt.pl index 28924b2..41db7b9 100644 --- a/ext/Encode/t/rt.pl +++ b/ext/Encode/t/rt.pl @@ -1,6 +1,6 @@ #!/usr/local/bin/perl # -# $Id: rt.pl,v 1.2 2002/11/08 18:29:27 dankogai Exp $ +# $Id: rt.pl,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # BEGIN { diff --git a/ext/Encode/ucm/8859-1.ucm b/ext/Encode/ucm/8859-1.ucm index 080424b..223e566 100644 --- a/ext/Encode/ucm/8859-1.ucm +++ b/ext/Encode/ucm/8859-1.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-1.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-1.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-1.TXT diff --git a/ext/Encode/ucm/8859-10.ucm b/ext/Encode/ucm/8859-10.ucm index eb1a80c..1808fde 100644 --- a/ext/Encode/ucm/8859-10.ucm +++ b/ext/Encode/ucm/8859-10.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-10.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-10.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-10.TXT diff --git a/ext/Encode/ucm/8859-11.ucm b/ext/Encode/ucm/8859-11.ucm index 29bd1cd..260440a 100644 --- a/ext/Encode/ucm/8859-11.ucm +++ b/ext/Encode/ucm/8859-11.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-11.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-11.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-11.TXT diff --git a/ext/Encode/ucm/8859-13.ucm b/ext/Encode/ucm/8859-13.ucm index ee48e6c..0a64023 100644 --- a/ext/Encode/ucm/8859-13.ucm +++ b/ext/Encode/ucm/8859-13.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-13.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-13.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-13.TXT diff --git a/ext/Encode/ucm/8859-14.ucm b/ext/Encode/ucm/8859-14.ucm index 4e9a9d3..c4a2cba 100644 --- a/ext/Encode/ucm/8859-14.ucm +++ b/ext/Encode/ucm/8859-14.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-14.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-14.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-14.TXT diff --git a/ext/Encode/ucm/8859-15.ucm b/ext/Encode/ucm/8859-15.ucm index 7b72204..e63de8f 100644 --- a/ext/Encode/ucm/8859-15.ucm +++ b/ext/Encode/ucm/8859-15.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-15.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-15.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-15.TXT diff --git a/ext/Encode/ucm/8859-16.ucm b/ext/Encode/ucm/8859-16.ucm index 87563aa..70c9b7d 100644 --- a/ext/Encode/ucm/8859-16.ucm +++ b/ext/Encode/ucm/8859-16.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-16.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-16.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-16.TXT diff --git a/ext/Encode/ucm/8859-2.ucm b/ext/Encode/ucm/8859-2.ucm index 9e2fd38..fe61819 100644 --- a/ext/Encode/ucm/8859-2.ucm +++ b/ext/Encode/ucm/8859-2.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-2.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-2.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-2.TXT diff --git a/ext/Encode/ucm/8859-3.ucm b/ext/Encode/ucm/8859-3.ucm index 6066eb9..caf1cc5 100644 --- a/ext/Encode/ucm/8859-3.ucm +++ b/ext/Encode/ucm/8859-3.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-3.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-3.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-3.TXT diff --git a/ext/Encode/ucm/8859-4.ucm b/ext/Encode/ucm/8859-4.ucm index 901fe06..56f8d63 100644 --- a/ext/Encode/ucm/8859-4.ucm +++ b/ext/Encode/ucm/8859-4.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-4.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-4.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-4.TXT diff --git a/ext/Encode/ucm/8859-5.ucm b/ext/Encode/ucm/8859-5.ucm index f03b494..5099b90 100644 --- a/ext/Encode/ucm/8859-5.ucm +++ b/ext/Encode/ucm/8859-5.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-5.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-5.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-5.TXT diff --git a/ext/Encode/ucm/8859-6.ucm b/ext/Encode/ucm/8859-6.ucm index 9c79e25..20bc82f 100644 --- a/ext/Encode/ucm/8859-6.ucm +++ b/ext/Encode/ucm/8859-6.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-6.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-6.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-6.TXT diff --git a/ext/Encode/ucm/8859-7.ucm b/ext/Encode/ucm/8859-7.ucm index 818ef79..6ca7c86 100644 --- a/ext/Encode/ucm/8859-7.ucm +++ b/ext/Encode/ucm/8859-7.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-7.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-7.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-7.TXT diff --git a/ext/Encode/ucm/8859-8.ucm b/ext/Encode/ucm/8859-8.ucm index 87f7054..7572102 100644 --- a/ext/Encode/ucm/8859-8.ucm +++ b/ext/Encode/ucm/8859-8.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-8.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-8.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-8.TXT diff --git a/ext/Encode/ucm/8859-9.ucm b/ext/Encode/ucm/8859-9.ucm index 249dc89..02022eb 100644 --- a/ext/Encode/ucm/8859-9.ucm +++ b/ext/Encode/ucm/8859-9.ucm @@ -1,5 +1,5 @@ # -# $Id: 8859-9.ucm,v 1.1 2003/05/21 09:06:36 dankogai Exp $ +# $Id: 8859-9.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-9.TXT diff --git a/ext/Encode/ucm/adobeStdenc.ucm b/ext/Encode/ucm/adobeStdenc.ucm index fc2941a..c4e4c91 100644 --- a/ext/Encode/ucm/adobeStdenc.ucm +++ b/ext/Encode/ucm/adobeStdenc.ucm @@ -1,5 +1,5 @@ ## -# $Id: adobeStdenc.ucm,v 1.21 2002/04/09 20:06:15 dankogai Exp $ +# $Id: adobeStdenc.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/stdenc.txt diff --git a/ext/Encode/ucm/adobeSymbol.ucm b/ext/Encode/ucm/adobeSymbol.ucm index 79a44c9..1d735b3 100644 --- a/ext/Encode/ucm/adobeSymbol.ucm +++ b/ext/Encode/ucm/adobeSymbol.ucm @@ -1,5 +1,5 @@ # -# $Id: adobeSymbol.ucm,v 1.21 2002/04/09 20:06:15 dankogai Exp $ +# $Id: adobeSymbol.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/symbol.txt diff --git a/ext/Encode/ucm/adobeZdingbat.ucm b/ext/Encode/ucm/adobeZdingbat.ucm index 36792a3..b338f75 100644 --- a/ext/Encode/ucm/adobeZdingbat.ucm +++ b/ext/Encode/ucm/adobeZdingbat.ucm @@ -1,5 +1,5 @@ # -# $Id: adobeZdingbat.ucm,v 1.21 2002/04/09 20:06:15 dankogai Exp $ +# $Id: adobeZdingbat.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/ADOBE/zdingbat.txt diff --git a/ext/Encode/ucm/ascii.ucm b/ext/Encode/ucm/ascii.ucm index 14751fb..a1914c4 100644 --- a/ext/Encode/ucm/ascii.ucm +++ b/ext/Encode/ucm/ascii.ucm @@ -1,5 +1,5 @@ # -# $Id: ascii.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: ascii.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # "ascii" "US-ascii" diff --git a/ext/Encode/ucm/big5-eten.ucm b/ext/Encode/ucm/big5-eten.ucm index 7f6a9fb..db17574 100644 --- a/ext/Encode/ucm/big5-eten.ucm +++ b/ext/Encode/ucm/big5-eten.ucm @@ -1,5 +1,5 @@ # -# $Id: big5-eten.ucm,v 1.4 2003/03/31 03:27:27 dankogai Exp $ +# $Id: big5-eten.ucm,v 2.0 2004/05/16 20:55:19 dankogai Exp $ # # ./compile -n big5-eten -o Encode/big5-eten.ucm Encode/big5-eten.enc "big5-eten" diff --git a/ext/Encode/ucm/big5-hkscs.ucm b/ext/Encode/ucm/big5-hkscs.ucm index ad299d2..3fee675 100644 --- a/ext/Encode/ucm/big5-hkscs.ucm +++ b/ext/Encode/ucm/big5-hkscs.ucm @@ -1,5 +1,5 @@ # -# $Id: big5-hkscs.ucm,v 1.3 2003/03/31 03:27:27 dankogai Exp $ +# $Id: big5-hkscs.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # "big5-hkscs" 1 diff --git a/ext/Encode/ucm/cp037.ucm b/ext/Encode/ucm/cp037.ucm index 7137946..13cfeeb 100644 --- a/ext/Encode/ucm/cp037.ucm +++ b/ext/Encode/ucm/cp037.ucm @@ -1,5 +1,5 @@ # -# $Id: cp037.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp037.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP037.TXT diff --git a/ext/Encode/ucm/cp1006.ucm b/ext/Encode/ucm/cp1006.ucm index 74785b3..f1f9c5e 100644 --- a/ext/Encode/ucm/cp1006.ucm +++ b/ext/Encode/ucm/cp1006.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1006.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1006.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MISC/CP1006.TXT diff --git a/ext/Encode/ucm/cp1026.ucm b/ext/Encode/ucm/cp1026.ucm index a72b86d..11f93bc 100644 --- a/ext/Encode/ucm/cp1026.ucm +++ b/ext/Encode/ucm/cp1026.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1026.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1026.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP1026.TXT diff --git a/ext/Encode/ucm/cp1047.ucm b/ext/Encode/ucm/cp1047.ucm index 649ee77..ee97a89 100644 --- a/ext/Encode/ucm/cp1047.ucm +++ b/ext/Encode/ucm/cp1047.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1047.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $ +# $Id: cp1047.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # compile -n cp1047 -o Encode/cp1047.ucm Encode/cp1047.enc "cp1047" diff --git a/ext/Encode/ucm/cp1250.ucm b/ext/Encode/ucm/cp1250.ucm index ce7ffb9..8984f7b 100644 --- a/ext/Encode/ucm/cp1250.ucm +++ b/ext/Encode/ucm/cp1250.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1250.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1250.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1250.TXT diff --git a/ext/Encode/ucm/cp1251.ucm b/ext/Encode/ucm/cp1251.ucm index 6dfc0e6..656e0da 100644 --- a/ext/Encode/ucm/cp1251.ucm +++ b/ext/Encode/ucm/cp1251.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1251.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1251.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1251.TXT diff --git a/ext/Encode/ucm/cp1252.ucm b/ext/Encode/ucm/cp1252.ucm index 9d85be7..dfa13fd 100644 --- a/ext/Encode/ucm/cp1252.ucm +++ b/ext/Encode/ucm/cp1252.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1252.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1252.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1252.TXT diff --git a/ext/Encode/ucm/cp1253.ucm b/ext/Encode/ucm/cp1253.ucm index bd20006..072fe76 100644 --- a/ext/Encode/ucm/cp1253.ucm +++ b/ext/Encode/ucm/cp1253.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1253.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1253.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1253.TXT diff --git a/ext/Encode/ucm/cp1254.ucm b/ext/Encode/ucm/cp1254.ucm index 5d6640f..f671808 100644 --- a/ext/Encode/ucm/cp1254.ucm +++ b/ext/Encode/ucm/cp1254.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1254.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1254.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1254.TXT diff --git a/ext/Encode/ucm/cp1255.ucm b/ext/Encode/ucm/cp1255.ucm index 5eca164..e1f4e40 100644 --- a/ext/Encode/ucm/cp1255.ucm +++ b/ext/Encode/ucm/cp1255.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1255.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1255.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1255.TXT diff --git a/ext/Encode/ucm/cp1256.ucm b/ext/Encode/ucm/cp1256.ucm index 14c86a3..9f48645 100644 --- a/ext/Encode/ucm/cp1256.ucm +++ b/ext/Encode/ucm/cp1256.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1256.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1256.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1256.TXT diff --git a/ext/Encode/ucm/cp1257.ucm b/ext/Encode/ucm/cp1257.ucm index cb64f7a..31afb9b 100644 --- a/ext/Encode/ucm/cp1257.ucm +++ b/ext/Encode/ucm/cp1257.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1257.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1257.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1257.TXT diff --git a/ext/Encode/ucm/cp1258.ucm b/ext/Encode/ucm/cp1258.ucm index 60ed129..f673803 100644 --- a/ext/Encode/ucm/cp1258.ucm +++ b/ext/Encode/ucm/cp1258.ucm @@ -1,5 +1,5 @@ # -# $Id: cp1258.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp1258.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1258.TXT diff --git a/ext/Encode/ucm/cp424.ucm b/ext/Encode/ucm/cp424.ucm index e6d5845..9c2c716 100644 --- a/ext/Encode/ucm/cp424.ucm +++ b/ext/Encode/ucm/cp424.ucm @@ -1,5 +1,5 @@ # -# $Id: cp424.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp424.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MISC/CP424.TXT diff --git a/ext/Encode/ucm/cp437.ucm b/ext/Encode/ucm/cp437.ucm index d9fd791..f7e1756 100644 --- a/ext/Encode/ucm/cp437.ucm +++ b/ext/Encode/ucm/cp437.ucm @@ -1,5 +1,5 @@ # -# $Id: cp437.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp437.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP437.TXT diff --git a/ext/Encode/ucm/cp500.ucm b/ext/Encode/ucm/cp500.ucm index f223d84..99b0b2e 100644 --- a/ext/Encode/ucm/cp500.ucm +++ b/ext/Encode/ucm/cp500.ucm @@ -1,5 +1,5 @@ # -# $Id: cp500.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp500.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP500.TXT diff --git a/ext/Encode/ucm/cp737.ucm b/ext/Encode/ucm/cp737.ucm index 04c5be5..19b06df 100644 --- a/ext/Encode/ucm/cp737.ucm +++ b/ext/Encode/ucm/cp737.ucm @@ -1,5 +1,5 @@ # -# $Id: cp737.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp737.ucm,v 2.0 2004/05/16 20:55:20 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP737.TXT diff --git a/ext/Encode/ucm/cp775.ucm b/ext/Encode/ucm/cp775.ucm index a36684e..50b9409 100644 --- a/ext/Encode/ucm/cp775.ucm +++ b/ext/Encode/ucm/cp775.ucm @@ -1,5 +1,5 @@ # -# $Id: cp775.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp775.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP775.TXT diff --git a/ext/Encode/ucm/cp850.ucm b/ext/Encode/ucm/cp850.ucm index 920b60f..d77041d 100644 --- a/ext/Encode/ucm/cp850.ucm +++ b/ext/Encode/ucm/cp850.ucm @@ -1,5 +1,5 @@ # -# $Id: cp850.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp850.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP850.TXT diff --git a/ext/Encode/ucm/cp852.ucm b/ext/Encode/ucm/cp852.ucm index 95ba448..8ba2e47 100644 --- a/ext/Encode/ucm/cp852.ucm +++ b/ext/Encode/ucm/cp852.ucm @@ -1,5 +1,5 @@ # -# $Id: cp852.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp852.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP852.TXT diff --git a/ext/Encode/ucm/cp855.ucm b/ext/Encode/ucm/cp855.ucm index f0cf17c..b07ab04 100644 --- a/ext/Encode/ucm/cp855.ucm +++ b/ext/Encode/ucm/cp855.ucm @@ -1,5 +1,5 @@ # -# $Id: cp855.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp855.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP855.TXT diff --git a/ext/Encode/ucm/cp856.ucm b/ext/Encode/ucm/cp856.ucm index cbcf4ad..012404e 100644 --- a/ext/Encode/ucm/cp856.ucm +++ b/ext/Encode/ucm/cp856.ucm @@ -1,5 +1,5 @@ # -# $Id: cp856.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp856.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MISC/CP856.TXT diff --git a/ext/Encode/ucm/cp857.ucm b/ext/Encode/ucm/cp857.ucm index a72cbc4..8bf5600 100644 --- a/ext/Encode/ucm/cp857.ucm +++ b/ext/Encode/ucm/cp857.ucm @@ -1,5 +1,5 @@ # -# $Id: cp857.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp857.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP857.TXT diff --git a/ext/Encode/ucm/cp860.ucm b/ext/Encode/ucm/cp860.ucm index dd98d39..bf96321 100644 --- a/ext/Encode/ucm/cp860.ucm +++ b/ext/Encode/ucm/cp860.ucm @@ -1,5 +1,5 @@ # -# $Id: cp860.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp860.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP860.TXT diff --git a/ext/Encode/ucm/cp861.ucm b/ext/Encode/ucm/cp861.ucm index 996e266..e952ebe 100644 --- a/ext/Encode/ucm/cp861.ucm +++ b/ext/Encode/ucm/cp861.ucm @@ -1,5 +1,5 @@ # -# $Id: cp861.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp861.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP861.TXT diff --git a/ext/Encode/ucm/cp862.ucm b/ext/Encode/ucm/cp862.ucm index 54ff213..f7f4827 100644 --- a/ext/Encode/ucm/cp862.ucm +++ b/ext/Encode/ucm/cp862.ucm @@ -1,5 +1,5 @@ # -# $Id: cp862.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp862.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP862.TXT diff --git a/ext/Encode/ucm/cp863.ucm b/ext/Encode/ucm/cp863.ucm index b2a5ac9..43bb59f 100644 --- a/ext/Encode/ucm/cp863.ucm +++ b/ext/Encode/ucm/cp863.ucm @@ -1,5 +1,5 @@ # -# $Id: cp863.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp863.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP863.TXT diff --git a/ext/Encode/ucm/cp864.ucm b/ext/Encode/ucm/cp864.ucm index 83e3516..faeeec6 100644 --- a/ext/Encode/ucm/cp864.ucm +++ b/ext/Encode/ucm/cp864.ucm @@ -1,5 +1,5 @@ # -# $Id: cp864.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp864.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP864.TXT diff --git a/ext/Encode/ucm/cp865.ucm b/ext/Encode/ucm/cp865.ucm index 5c486fa..1e0f2c9 100644 --- a/ext/Encode/ucm/cp865.ucm +++ b/ext/Encode/ucm/cp865.ucm @@ -1,5 +1,5 @@ # -# $Id: cp865.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp865.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP865.TXT diff --git a/ext/Encode/ucm/cp866.ucm b/ext/Encode/ucm/cp866.ucm index 356915f..a6b45e6 100644 --- a/ext/Encode/ucm/cp866.ucm +++ b/ext/Encode/ucm/cp866.ucm @@ -1,5 +1,5 @@ # -# $Id: cp866.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp866.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT diff --git a/ext/Encode/ucm/cp869.ucm b/ext/Encode/ucm/cp869.ucm index 70cd289..cf8fdf5 100644 --- a/ext/Encode/ucm/cp869.ucm +++ b/ext/Encode/ucm/cp869.ucm @@ -1,5 +1,5 @@ # -# $Id: cp869.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp869.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP869.TXT diff --git a/ext/Encode/ucm/cp874.ucm b/ext/Encode/ucm/cp874.ucm index a2b8e0c..6dde1e4 100644 --- a/ext/Encode/ucm/cp874.ucm +++ b/ext/Encode/ucm/cp874.ucm @@ -1,5 +1,5 @@ # -# $Id: cp874.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp874.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP874.TXT diff --git a/ext/Encode/ucm/cp875.ucm b/ext/Encode/ucm/cp875.ucm index 2ea8f56..c5d4012 100644 --- a/ext/Encode/ucm/cp875.ucm +++ b/ext/Encode/ucm/cp875.ucm @@ -1,5 +1,5 @@ # -# $Id: cp875.ucm,v 1.20 2002/04/04 19:50:53 dankogai Exp $ +# $Id: cp875.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/EBCDIC/CP875.TXT diff --git a/ext/Encode/ucm/cp932.ucm b/ext/Encode/ucm/cp932.ucm index 664be1b..708700d 100644 --- a/ext/Encode/ucm/cp932.ucm +++ b/ext/Encode/ucm/cp932.ucm @@ -1,5 +1,5 @@ # -# $Id: cp932.ucm,v 1.22 2003/03/31 03:27:27 dankogai Exp $ +# $Id: cp932.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://oss.software.ibm.com/cvs/icu/charset/data/ucm/windows-932-2000.ucm diff --git a/ext/Encode/ucm/cp936.ucm b/ext/Encode/ucm/cp936.ucm index 42b4340..55bb4b9 100644 --- a/ext/Encode/ucm/cp936.ucm +++ b/ext/Encode/ucm/cp936.ucm @@ -1,5 +1,5 @@ # -# $Id: cp936.ucm,v 1.22 2003/03/31 03:27:27 dankogai Exp $ +# $Id: cp936.ucm,v 2.0 2004/05/16 20:55:21 dankogai Exp $ # # Original table can be obtained at # http://oss.software.ibm.com/cvs/icu/charset/data/ucm/windows-936-2000.ucm diff --git a/ext/Encode/ucm/cp949.ucm b/ext/Encode/ucm/cp949.ucm index 6485d1c..cb00d11 100644 --- a/ext/Encode/ucm/cp949.ucm +++ b/ext/Encode/ucm/cp949.ucm @@ -1,5 +1,5 @@ # -# $Id: cp949.ucm,v 1.23 2003/03/31 03:27:27 dankogai Exp $ +# $Id: cp949.ucm,v 2.0 2004/05/16 20:55:22 dankogai Exp $ # # Original table can be obtained at # http://oss.software.ibm.com/cvs/icu/charset/data/ucm/windows-949-2000.ucm diff --git a/ext/Encode/ucm/cp950.ucm b/ext/Encode/ucm/cp950.ucm index a595b22..d55bc47 100644 --- a/ext/Encode/ucm/cp950.ucm +++ b/ext/Encode/ucm/cp950.ucm @@ -1,5 +1,5 @@ # -# $Id: cp950.ucm,v 1.23 2003/03/31 03:27:27 dankogai Exp $ +# $Id: cp950.ucm,v 2.0 2004/05/16 20:55:22 dankogai Exp $ # # Original table can be obtained at # http://oss.software.ibm.com/cvs/icu/charset/data/ucm/windows-950-2000.ucm diff --git a/ext/Encode/ucm/ctrl.ucm b/ext/Encode/ucm/ctrl.ucm index b548296..0f42aa7 100644 --- a/ext/Encode/ucm/ctrl.ucm +++ b/ext/Encode/ucm/ctrl.ucm @@ -1,5 +1,5 @@ # -# $Id: ctrl.ucm,v 1.1 2002/05/28 18:33:15 dankogai Exp $ +# $Id: ctrl.ucm,v 2.0 2004/05/16 20:55:23 dankogai Exp $ # "ascii-ctrl" 1 diff --git a/ext/Encode/ucm/dingbats.ucm b/ext/Encode/ucm/dingbats.ucm index aafe6ff..d5610d8 100644 --- a/ext/Encode/ucm/dingbats.ucm +++ b/ext/Encode/ucm/dingbats.ucm @@ -1,5 +1,5 @@ # -# $Id: dingbats.ucm,v 1.0 2002/03/31 21:09:59 dankogai Exp $ +# $Id: dingbats.ucm,v 2.0 2004/05/16 20:55:23 dankogai Exp $ # "dingbats" 1 diff --git a/ext/Encode/ucm/euc-cn.ucm b/ext/Encode/ucm/euc-cn.ucm index e1dacd4..c4109b8 100644 --- a/ext/Encode/ucm/euc-cn.ucm +++ b/ext/Encode/ucm/euc-cn.ucm @@ -1,5 +1,5 @@ # -# $Id: euc-cn.ucm,v 1.1 2003/04/24 17:43:16 dankogai Exp $ +# $Id: euc-cn.ucm,v 2.0 2004/05/16 20:55:23 dankogai Exp $ # # ./compile -n euc-cn -o Encode/euc-cn.ucm Encode/euc-cn.enc "euc-cn" diff --git a/ext/Encode/ucm/euc-jp.ucm b/ext/Encode/ucm/euc-jp.ucm index 2896223..b12db47 100644 --- a/ext/Encode/ucm/euc-jp.ucm +++ b/ext/Encode/ucm/euc-jp.ucm @@ -1,5 +1,5 @@ # -# $Id: euc-jp.ucm,v 1.3 2003/04/24 17:43:16 dankogai Exp $ +# $Id: euc-jp.ucm,v 2.0 2004/05/16 20:55:23 dankogai Exp $ # "euc-jp" 1 diff --git a/ext/Encode/ucm/euc-kr.ucm b/ext/Encode/ucm/euc-kr.ucm index 9266233..7147e29 100644 --- a/ext/Encode/ucm/euc-kr.ucm +++ b/ext/Encode/ucm/euc-kr.ucm @@ -1,5 +1,5 @@ # -# $Id: euc-kr.ucm,v 1.1 2003/04/24 17:43:16 dankogai Exp $ +# $Id: euc-kr.ucm,v 2.0 2004/05/16 20:55:24 dankogai Exp $ # # ./compile -n euc-kr -o Encode/euc-kr.ucm Encode/euc-kr.enc "euc-kr" diff --git a/ext/Encode/ucm/gb12345.ucm b/ext/Encode/ucm/gb12345.ucm index 9fe6e6d..d8192ca 100644 --- a/ext/Encode/ucm/gb12345.ucm +++ b/ext/Encode/ucm/gb12345.ucm @@ -1,5 +1,5 @@ # -# $Id: gb12345.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $ +# $Id: gb12345.ucm,v 2.0 2004/05/16 20:55:24 dankogai Exp $ # # ./compile -n gb12345 -o Encode/gb12345.ucm Encode/gb12345.enc # diff --git a/ext/Encode/ucm/gb2312.ucm b/ext/Encode/ucm/gb2312.ucm index d38ccac..0ae6f61 100644 --- a/ext/Encode/ucm/gb2312.ucm +++ b/ext/Encode/ucm/gb2312.ucm @@ -1,5 +1,5 @@ # -# $Id: gb2312.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $ +# $Id: gb2312.ucm,v 2.0 2004/05/16 20:55:24 dankogai Exp $ # # ./compile -n gb2312 -o Encode/gb2312.ucm Encode/gb2312.enc # diff --git a/ext/Encode/ucm/gsm0338.ucm b/ext/Encode/ucm/gsm0338.ucm index a7fe1bf..50acc57 100644 --- a/ext/Encode/ucm/gsm0338.ucm +++ b/ext/Encode/ucm/gsm0338.ucm @@ -1,5 +1,5 @@ # -# $Id: gsm0338.ucm,v 1.1 2003/12/29 02:47:16 dankogai Exp dankogai $ +# $Id: gsm0338.ucm,v 2.0 2004/05/16 20:55:24 dankogai Exp $ # # ./compile -n gsm0338 -o Encode/gsm0338.ucm Encode/gsm0338.enc "gsm0338" diff --git a/ext/Encode/ucm/hp-roman8.ucm b/ext/Encode/ucm/hp-roman8.ucm index 3897892..0b63849 100644 --- a/ext/Encode/ucm/hp-roman8.ucm +++ b/ext/Encode/ucm/hp-roman8.ucm @@ -1,7 +1,7 @@ # -# $Id: hp-roman8.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $ +# $Id: hp-roman8.ucm,v 2.0 2004/05/16 20:55:24 dankogai Exp $ # -# Written $Id: hp-roman8.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $ +# Written $Id: hp-roman8.ucm,v 2.0 2004/05/16 20:55:24 dankogai Exp $ # ./compile -n roman8 -o Encode/roman8.ucm Encode/roman8.enc "hp-roman8" 1 diff --git a/ext/Encode/ucm/ir-165.ucm b/ext/Encode/ucm/ir-165.ucm index 50aeb65..a890aa5 100644 --- a/ext/Encode/ucm/ir-165.ucm +++ b/ext/Encode/ucm/ir-165.ucm @@ -1,5 +1,5 @@ # -# $Id: ir-165.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: ir-165.ucm,v 2.0 2004/05/16 20:55:25 dankogai Exp $ # # ./compile -n iso-ir-165 -o Encode/iso-ir-165.ucm Encode/iso-ir-165.enc "iso-ir-165" diff --git a/ext/Encode/ucm/jis0201.ucm b/ext/Encode/ucm/jis0201.ucm index fc4e466..33b63a8 100644 --- a/ext/Encode/ucm/jis0201.ucm +++ b/ext/Encode/ucm/jis0201.ucm @@ -1,5 +1,5 @@ # -# $Id: jis0201.ucm,v 1.2 2002/04/05 14:49:56 dankogai Exp $ +# $Id: jis0201.ucm,v 2.0 2004/05/16 20:55:25 dankogai Exp $ # "jis0201-raw" "jis0201" diff --git a/ext/Encode/ucm/jis0208.ucm b/ext/Encode/ucm/jis0208.ucm index 5522ab4..d60f6a0 100644 --- a/ext/Encode/ucm/jis0208.ucm +++ b/ext/Encode/ucm/jis0208.ucm @@ -1,5 +1,5 @@ # -# $Id: jis0208.ucm,v 1.2 2002/04/05 14:49:56 dankogai Exp $ +# $Id: jis0208.ucm,v 2.0 2004/05/16 20:55:25 dankogai Exp $ # "jis0208-raw" "jis0208" diff --git a/ext/Encode/ucm/jis0212.ucm b/ext/Encode/ucm/jis0212.ucm index 76d78e2..ebc4b73 100644 --- a/ext/Encode/ucm/jis0212.ucm +++ b/ext/Encode/ucm/jis0212.ucm @@ -1,5 +1,5 @@ # -# $Id: jis0212.ucm,v 1.1 2002/04/05 14:46:34 dankogai Exp $ +# $Id: jis0212.ucm,v 2.0 2004/05/16 20:55:25 dankogai Exp $ # "jis0212-raw" "jis0212" diff --git a/ext/Encode/ucm/johab.ucm b/ext/Encode/ucm/johab.ucm index 6d034ce..038a267 100644 --- a/ext/Encode/ucm/johab.ucm +++ b/ext/Encode/ucm/johab.ucm @@ -1,5 +1,5 @@ # -# $Id: johab.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: johab.ucm,v 2.0 2004/05/16 20:55:25 dankogai Exp $ # # ./compile -o johab.ucm johab.enc "johab" diff --git a/ext/Encode/ucm/koi8-f.ucm b/ext/Encode/ucm/koi8-f.ucm index 4eee360..ca69158 100644 --- a/ext/Encode/ucm/koi8-f.ucm +++ b/ext/Encode/ucm/koi8-f.ucm @@ -1,7 +1,7 @@ # -# $Id: koi8-f.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: koi8-f.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # -# Written $Id: koi8-f.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# Written $Id: koi8-f.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # ./compile -n koi8-f -o Encode/koi8-f.ucm Encode/koi8-f.enc "koi8-f" 1 diff --git a/ext/Encode/ucm/koi8-r.ucm b/ext/Encode/ucm/koi8-r.ucm index 21f1da3..3f0e86f 100644 --- a/ext/Encode/ucm/koi8-r.ucm +++ b/ext/Encode/ucm/koi8-r.ucm @@ -1,5 +1,5 @@ # -# $Id: koi8-r.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: koi8-r.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/MISC/KOI8-R.TXT diff --git a/ext/Encode/ucm/koi8-u.ucm b/ext/Encode/ucm/koi8-u.ucm index 7c022d6..9b34929 100644 --- a/ext/Encode/ucm/koi8-u.ucm +++ b/ext/Encode/ucm/koi8-u.ucm @@ -1,7 +1,7 @@ # -# $Id: koi8-u.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: koi8-u.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # -# Written $Id: koi8-u.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# Written $Id: koi8-u.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # ./compile -n koi8-u -o Encode/koi8-u.ucm Encode/koi8-u.enc "koi8-u" 1 diff --git a/ext/Encode/ucm/ksc5601.ucm b/ext/Encode/ucm/ksc5601.ucm index db94cdf..b6e894b 100644 --- a/ext/Encode/ucm/ksc5601.ucm +++ b/ext/Encode/ucm/ksc5601.ucm @@ -1,5 +1,5 @@ # -# $Id: ksc5601.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: ksc5601.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # # ./compile -n ksc5601 -o Encode/ksc5601.ucm Encode/ksc5601.enc "ksc5601-raw" diff --git a/ext/Encode/ucm/macArabic.ucm b/ext/Encode/ucm/macArabic.ucm index 60131c7..2fa32ea 100644 --- a/ext/Encode/ucm/macArabic.ucm +++ b/ext/Encode/ucm/macArabic.ucm @@ -1,5 +1,5 @@ # -# $Id: macArabic.ucm,v 1.21 2003/08/20 11:15:31 dankogai Exp $ +# $Id: macArabic.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/ARABIC.TXT diff --git a/ext/Encode/ucm/macCentEuro.ucm b/ext/Encode/ucm/macCentEuro.ucm index 0eaaafd..a885997 100644 --- a/ext/Encode/ucm/macCentEuro.ucm +++ b/ext/Encode/ucm/macCentEuro.ucm @@ -1,5 +1,5 @@ # -# $Id: macCentEuro.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macCentEuro.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/CENTEURO.TXT diff --git a/ext/Encode/ucm/macChinsimp.ucm b/ext/Encode/ucm/macChinsimp.ucm index 645cc78..881fee7 100644 --- a/ext/Encode/ucm/macChinsimp.ucm +++ b/ext/Encode/ucm/macChinsimp.ucm @@ -1,5 +1,5 @@ # -# $Id: macChinsimp.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macChinsimp.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/CHINSIMP.TXT diff --git a/ext/Encode/ucm/macChintrad.ucm b/ext/Encode/ucm/macChintrad.ucm index eabd9ce..9cbcf52 100644 --- a/ext/Encode/ucm/macChintrad.ucm +++ b/ext/Encode/ucm/macChintrad.ucm @@ -1,5 +1,5 @@ # -# $Id: macChintrad.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macChintrad.ucm,v 2.0 2004/05/16 20:55:26 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/CHINTRAD.TXT diff --git a/ext/Encode/ucm/macCroatian.ucm b/ext/Encode/ucm/macCroatian.ucm index 7fdf16e..fdd2f0f 100644 --- a/ext/Encode/ucm/macCroatian.ucm +++ b/ext/Encode/ucm/macCroatian.ucm @@ -1,5 +1,5 @@ # -# $Id: macCroatian.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macCroatian.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/CROATIAN.TXT diff --git a/ext/Encode/ucm/macCyrillic.ucm b/ext/Encode/ucm/macCyrillic.ucm index 42d0d43..13f70c3 100644 --- a/ext/Encode/ucm/macCyrillic.ucm +++ b/ext/Encode/ucm/macCyrillic.ucm @@ -1,5 +1,5 @@ # -# $Id: macCyrillic.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macCyrillic.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/CYRILLIC.TXT diff --git a/ext/Encode/ucm/macDingbats.ucm b/ext/Encode/ucm/macDingbats.ucm index 7af424a..2c77e72 100644 --- a/ext/Encode/ucm/macDingbats.ucm +++ b/ext/Encode/ucm/macDingbats.ucm @@ -1,5 +1,5 @@ # -# $Id: macDingbats.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macDingbats.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/DINGBATS.TXT diff --git a/ext/Encode/ucm/macFarsi.ucm b/ext/Encode/ucm/macFarsi.ucm index 0986d9e..695cee1 100644 --- a/ext/Encode/ucm/macFarsi.ucm +++ b/ext/Encode/ucm/macFarsi.ucm @@ -1,5 +1,5 @@ # -# $Id: macFarsi.ucm,v 1.21 2003/08/20 11:15:31 dankogai Exp $ +# $Id: macFarsi.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/FARSI.TXT diff --git a/ext/Encode/ucm/macGreek.ucm b/ext/Encode/ucm/macGreek.ucm index 733579d..baeb061 100644 --- a/ext/Encode/ucm/macGreek.ucm +++ b/ext/Encode/ucm/macGreek.ucm @@ -1,5 +1,5 @@ # -# $Id: macGreek.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macGreek.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/GREEK.TXT diff --git a/ext/Encode/ucm/macHebrew.ucm b/ext/Encode/ucm/macHebrew.ucm index 1d14cec..cb8471c 100644 --- a/ext/Encode/ucm/macHebrew.ucm +++ b/ext/Encode/ucm/macHebrew.ucm @@ -1,5 +1,5 @@ # -# $Id: macHebrew.ucm,v 1.21 2003/08/20 11:15:31 dankogai Exp $ +# $Id: macHebrew.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/HEBREW.TXT diff --git a/ext/Encode/ucm/macIceland.ucm b/ext/Encode/ucm/macIceland.ucm index d8cc605..ed185ac 100644 --- a/ext/Encode/ucm/macIceland.ucm +++ b/ext/Encode/ucm/macIceland.ucm @@ -1,5 +1,5 @@ # -# $Id: macIceland.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macIceland.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/ICELAND.TXT diff --git a/ext/Encode/ucm/macJapanese.ucm b/ext/Encode/ucm/macJapanese.ucm index a40d47e..892d3f7 100644 --- a/ext/Encode/ucm/macJapanese.ucm +++ b/ext/Encode/ucm/macJapanese.ucm @@ -1,5 +1,5 @@ # -# $Id: macJapanese.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macJapanese.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/JAPANESE.TXT diff --git a/ext/Encode/ucm/macKorean.ucm b/ext/Encode/ucm/macKorean.ucm index 31e8c99..54f05b6 100644 --- a/ext/Encode/ucm/macKorean.ucm +++ b/ext/Encode/ucm/macKorean.ucm @@ -1,5 +1,5 @@ # -# $Id: macKorean.ucm,v 1.20 2002/04/04 19:50:54 dankogai Exp $ +# $Id: macKorean.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/KOREAN.TXT diff --git a/ext/Encode/ucm/macROMnn.ucm b/ext/Encode/ucm/macROMnn.ucm index f51382e..6be54cd 100644 --- a/ext/Encode/ucm/macROMnn.ucm +++ b/ext/Encode/ucm/macROMnn.ucm @@ -1,5 +1,5 @@ # -# $Id: macROMnn.ucm,v 1.21 2002/04/09 20:06:15 dankogai Exp $ +# $Id: macROMnn.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/ROMANIAN.TXT diff --git a/ext/Encode/ucm/macRUMnn.ucm b/ext/Encode/ucm/macRUMnn.ucm index b3b1a6f..749038e 100644 --- a/ext/Encode/ucm/macRUMnn.ucm +++ b/ext/Encode/ucm/macRUMnn.ucm @@ -1,5 +1,5 @@ # -# $Id: macRUMnn.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: macRUMnn.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # ./compile -n macRumanian -o Encode/macRumanian.ucm Encode/macRumanian.enc "MacRumanian" diff --git a/ext/Encode/ucm/macRoman.ucm b/ext/Encode/ucm/macRoman.ucm index bd562f6..d191276 100644 --- a/ext/Encode/ucm/macRoman.ucm +++ b/ext/Encode/ucm/macRoman.ucm @@ -1,5 +1,5 @@ # -# $Id: macRoman.ucm,v 1.20 2002/04/04 19:50:55 dankogai Exp $ +# $Id: macRoman.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/ROMAN.TXT diff --git a/ext/Encode/ucm/macSami.ucm b/ext/Encode/ucm/macSami.ucm index aabb0a0..5ec4314 100644 --- a/ext/Encode/ucm/macSami.ucm +++ b/ext/Encode/ucm/macSami.ucm @@ -1,5 +1,5 @@ # -# $Id: macSami.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: macSami.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # ./compile -n macSami -o Encode/macSami.ucm Encode/macSami.enc "MacSami" diff --git a/ext/Encode/ucm/macSymbol.ucm b/ext/Encode/ucm/macSymbol.ucm index 5b24133..6d64b4a 100644 --- a/ext/Encode/ucm/macSymbol.ucm +++ b/ext/Encode/ucm/macSymbol.ucm @@ -1,5 +1,5 @@ # -# $Id: macSymbol.ucm,v 1.20 2002/04/04 19:50:55 dankogai Exp $ +# $Id: macSymbol.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/SYMBOL.TXT diff --git a/ext/Encode/ucm/macThai.ucm b/ext/Encode/ucm/macThai.ucm index 110e918..3940034 100644 --- a/ext/Encode/ucm/macThai.ucm +++ b/ext/Encode/ucm/macThai.ucm @@ -1,5 +1,5 @@ # -# $Id: macThai.ucm,v 1.20 2002/04/04 19:50:55 dankogai Exp $ +# $Id: macThai.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/THAI.TXT diff --git a/ext/Encode/ucm/macTurkish.ucm b/ext/Encode/ucm/macTurkish.ucm index f9ce9e5..24f8a13 100644 --- a/ext/Encode/ucm/macTurkish.ucm +++ b/ext/Encode/ucm/macTurkish.ucm @@ -1,5 +1,5 @@ # -# $Id: macTurkish.ucm,v 1.20 2002/04/04 19:50:55 dankogai Exp $ +# $Id: macTurkish.ucm,v 2.0 2004/05/16 20:55:27 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/TURKISH.TXT diff --git a/ext/Encode/ucm/macUkraine.ucm b/ext/Encode/ucm/macUkraine.ucm index 09ff86a..3669878 100644 --- a/ext/Encode/ucm/macUkraine.ucm +++ b/ext/Encode/ucm/macUkraine.ucm @@ -1,5 +1,5 @@ # -# $Id: macUkraine.ucm,v 1.20 2002/04/04 19:50:55 dankogai Exp $ +# $Id: macUkraine.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/UKRAINE.TXT diff --git a/ext/Encode/ucm/nextstep.ucm b/ext/Encode/ucm/nextstep.ucm index a91311f..b5d3d46 100644 --- a/ext/Encode/ucm/nextstep.ucm +++ b/ext/Encode/ucm/nextstep.ucm @@ -1,5 +1,5 @@ # -# $Id: nextstep.ucm,v 1.20 2002/04/04 19:50:55 dankogai Exp $ +# $Id: nextstep.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # # Original table can be obtained at # http://www.unicode.org/Public/MAPPINGS/VENDORS/NEXT/NEXTSTEP.TXT diff --git a/ext/Encode/ucm/null.ucm b/ext/Encode/ucm/null.ucm index 4e2abda..55d107c 100644 --- a/ext/Encode/ucm/null.ucm +++ b/ext/Encode/ucm/null.ucm @@ -1,5 +1,5 @@ # -# $Id: null.ucm,v 1.1 2002/05/28 18:33:15 dankogai Exp $ +# $Id: null.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # "null" 1 diff --git a/ext/Encode/ucm/posix-bc.ucm b/ext/Encode/ucm/posix-bc.ucm index 632af71..2220396 100644 --- a/ext/Encode/ucm/posix-bc.ucm +++ b/ext/Encode/ucm/posix-bc.ucm @@ -1,5 +1,5 @@ # -# $Id: posix-bc.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: posix-bc.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # # compile -n posix-bc -o Encode/posix-bc.ucm Encode/posix-bc.enc "posix-bc" diff --git a/ext/Encode/ucm/shiftjis.ucm b/ext/Encode/ucm/shiftjis.ucm index 9aa2794..3e07947 100644 --- a/ext/Encode/ucm/shiftjis.ucm +++ b/ext/Encode/ucm/shiftjis.ucm @@ -1,5 +1,5 @@ # -# $Id: shiftjis.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $ +# $Id: shiftjis.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # # ./compile -n shiftjis -o Encode/shiftjis.ucm Encode/shiftjis.enc "shiftjis" diff --git a/ext/Encode/ucm/symbol.ucm b/ext/Encode/ucm/symbol.ucm index a003d99..8993943 100644 --- a/ext/Encode/ucm/symbol.ucm +++ b/ext/Encode/ucm/symbol.ucm @@ -1,5 +1,5 @@ # -# $Id: symbol.ucm,v 1.0 2002/03/28 23:26:28 dankogai Exp $ +# $Id: symbol.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # # compile -n symbol -o Encode/symbol.ucm Encode/symbol.enc "symbol" diff --git a/ext/Encode/ucm/viscii.ucm b/ext/Encode/ucm/viscii.ucm index d36ccad..1f36a98 100644 --- a/ext/Encode/ucm/viscii.ucm +++ b/ext/Encode/ucm/viscii.ucm @@ -1,7 +1,7 @@ # -# $Id: viscii.ucm,v 1.1 2003/02/20 14:42:34 dankogai Exp $ +# $Id: viscii.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # -# Written $Id: viscii.ucm,v 1.1 2003/02/20 14:42:34 dankogai Exp $ +# Written $Id: viscii.ucm,v 2.0 2004/05/16 20:55:28 dankogai Exp $ # ./compile -n viscii -o Encode/viscii.ucm Encode/viscii.enc "viscii" 1