Update to Encode 2.32
Rafael Garcia-Suarez [Sat, 7 Mar 2009 13:55:32 +0000 (14:55 +0100)]
ext/Encode/AUTHORS
ext/Encode/Changes
ext/Encode/Encode.pm
ext/Encode/lib/Encode/Alias.pm
ext/Encode/t/Aliases.t

index 022a3c4..c928a32 100644 (file)
@@ -33,6 +33,7 @@ Jarkko Hietaniemi             <jhi@iki.fi>
 Jungshik Shin                  <jshin@mailaps.org>
 KONNO Hiroharu                 <hiroharu.konno@bowneglobal.co.jp>
 Laszlo Molnar                  <ml1050@freemail.hu>
+MATSUNO Tokuhiro               <tokuhirom+cpan@gmail.com>
 MORIYAMA Masayuki              <msyk@mtg.biglobe.ne.jp>
 Makamaka                       <makamaka@donzoko.net>
 Mark-Jason Dominus             <mjd@plover.com>
index 1828e49..6c68166 100644 (file)
@@ -1,8 +1,18 @@
 # Revision history for Perl extension Encode.
 #
-# $Id: Changes,v 2.31 2009/02/16 06:18:09 dankogai Exp dankogai $
+# $Id: Changes,v 2.32 2009/03/07 07:32:37 dankogai Exp dankogai $
 #
-$Revision: 2.31 $ $Date: 2009/02/16 06:18:09 $
+$Revision: 2.32 $ $Date: 2009/03/07 07:32:37 $
+! lib/Encode/Alias.pm t/Alias.t
+  Encode now resolves 'en_US.UTF-8' to utf-8-strict like 'ja_JP.euc'
+  Those who set locale on their shells should be happier now.
+! AUTHORS
+  added tokuhirom
+! Encode.pm
+  "encode(undef, 'str') should die earlier"
+  http://coderepos.org/share/changeset/30790
+
+2.31 2009/02/16 06:18:09
 ! lib/Encode/MIME/Header.pm
   "Revert [29767] and [29771] since it breaks perl 5.8" by miyagawa
   http://coderepos.org/share/changeset/30111
index b0344d1..ffaf9b8 100644 (file)
@@ -1,10 +1,10 @@
 #
-# $Id: Encode.pm,v 2.31 2009/02/16 06:13:11 dankogai Exp $
+# $Id: Encode.pm,v 2.32 2009/03/07 07:32:37 dankogai Exp dankogai $
 #
 package Encode;
 use strict;
 use warnings;
-our $VERSION = sprintf "%d.%02d", q$Revision: 2.31 $ =~ /(\d+)/g;
+our $VERSION = sprintf "%d.%02d", q$Revision: 2.32 $ =~ /(\d+)/g;
 sub DEBUG () { 0 }
 use XSLoader ();
 XSLoader::load( __PACKAGE__, $VERSION );
@@ -146,6 +146,10 @@ sub encode($$;$) {
     return undef unless defined $string;
     $string .= '' if ref $string;    # stringify;
     $check ||= 0;
+    unless ( defined $name ) {
+        require Carp;
+        Carp::croak("Encoding name should not be undef");
+    }
     my $enc = find_encoding($name);
     unless ( defined $enc ) {
         require Carp;
index 5fb12e4..f142403 100644 (file)
@@ -2,7 +2,7 @@ package Encode::Alias;
 use strict;
 use warnings;
 no warnings 'redefine';
-our $VERSION = do { my @r = ( q$Revision: 2.11 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
+our $VERSION = do { my @r = ( q$Revision: 2.12 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
 sub DEBUG () { 0 }
 
 use base qw(Exporter);
@@ -256,7 +256,7 @@ sub init_aliases {
     }
 
     # utf8 is blessed :)
-    define_alias( qr/^UTF-8$/i => '"utf-8-strict"' );
+    define_alias( qr/\bUTF-8$/i => '"utf-8-strict"' );
 
     # At last, Map white space and _ to '-'
     define_alias( qr/^(\S+)[\s_]+(.*)$/i => '"$1-$2"' );
index 716cb8c..fd088d5 100644 (file)
@@ -23,6 +23,7 @@ sub init_a2c{
         'US-ascii' => 'ascii',
         'ISO-646-US' => 'ascii',
         'UTF-8'    => 'utf-8-strict',
+        'en_US.UTF-8'    => 'utf-8-strict',
         'UCS-2'    => 'UCS-2BE',
         'UCS2'     => 'UCS-2BE',
         'iso-10646-1' => 'UCS-2BE',