Changeset 15030 for lang/perl/Encode
- Timestamp:
- 07/02/08 05:59:46 (5 years ago)
- Location:
- lang/perl/Encode/trunk
- Files:
-
- 23 modified
-
Changes (modified) (1 diff)
-
Encode.pm (modified) (2 diffs)
-
Makefile.PL (modified) (3 diffs)
-
lib/Encode/Alias.pm (modified) (2 diffs)
-
lib/Encode/GSM0338.pm (modified) (1 diff)
-
lib/Encode/JP/JIS7.pm (modified) (2 diffs)
-
t/Aliases.t (modified) (1 diff)
-
ucm/cp850.ucm (modified) (1 diff)
-
ucm/cp852.ucm (modified) (1 diff)
-
ucm/cp855.ucm (modified) (1 diff)
-
ucm/cp856.ucm (modified) (1 diff)
-
ucm/cp857.ucm (modified) (1 diff)
-
ucm/cp858.ucm (modified) (1 diff)
-
ucm/cp860.ucm (modified) (1 diff)
-
ucm/cp861.ucm (modified) (1 diff)
-
ucm/cp862.ucm (modified) (1 diff)
-
ucm/cp863.ucm (modified) (1 diff)
-
ucm/cp864.ucm (modified) (1 diff)
-
ucm/cp865.ucm (modified) (1 diff)
-
ucm/cp866.ucm (modified) (1 diff)
-
ucm/cp869.ucm (modified) (1 diff)
-
ucm/cp874.ucm (modified) (1 diff)
-
ucm/cp875.ucm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Encode/trunk/Changes
r11377 r15030 1 1 # Revision history for Perl extension Encode. 2 2 # 3 # $Id: Changes,v 2.2 5 2008/05/07 20:56:05dankogai Exp dankogai $3 # $Id: Changes,v 2.26 2008/07/01 20:56:17 dankogai Exp dankogai $ 4 4 # 5 $Revision: 2.25 $ $Date: 2008/05/07 20:56:05 $ 5 $Revision: 2.26 $ $Date: 2008/07/01 20:56:17 $ 6 ! Encode.pm 7 Absense of Encode::ConfigLocal no longer carps no matter what. 8 https://bugzilla.redhat.com/show_bug.cgi?id=435505#c2 9 https://rt.cpan.org/Ticket/Display.html?id=28638 10 https://rt.cpan.org/Ticket/Display.html?id=11511 11 ! lib/Encode/JIS7.pm 12 use encoding 'utf8' and 'iso-2022-jp' glitches on perl 5.10 13 Thanks, MIYAGAWA 14 Message-Id: <693254b90807011224h3ab50d76v50c6fea87baf223c@mail.gmail.com> 15 ! lib/Encode/Alias.pm t/Aliases.t 16 macintosh' not recognize as MacRoman 17 http://rt.cpan.org/Ticket/Display.html?id=36326 18 ! Makefile.PL 19 s{INC => "-I./Encode"} 20 {INC => '-I' . File::Spec->catfile( '.', 'Encode' )} 21 To prevent some platforms from forgetting to include Encode/encode.h. 22 http://rt.cpan.org/Ticket/Display.html?id=36348 23 24 2.25 2008/05/07 20:56:05 6 25 ! Encode.pm 7 26 added ':default' to Exporter option. -
lang/perl/Encode/trunk/Encode.pm
r11260 r15030 1 1 # 2 # $Id: Encode.pm,v 2.2 5 2008/05/07 20:56:05dankogai Exp dankogai $2 # $Id: Encode.pm,v 2.26 2008/07/01 20:56:17 dankogai Exp dankogai $ 3 3 # 4 4 package Encode; 5 5 use strict; 6 6 use warnings; 7 our $VERSION = sprintf "%d.%02d", q$Revision: 2.2 5$ =~ /(\d+)/g;7 our $VERSION = sprintf "%d.%02d", q$Revision: 2.26 $ =~ /(\d+)/g; 8 8 sub DEBUG () { 0 } 9 9 use XSLoader (); … … 52 52 our %ExtModule; 53 53 require Encode::Config; 54 eval { require Encode::ConfigLocal }; 54 # See 55 # https://bugzilla.redhat.com/show_bug.cgi?id=435505#c2 56 # to find why sig handers inside eval{} are disabled. 57 eval { 58 local $SIG{__DIE__}; 59 local $SIG{__WARN__}; 60 require Encode::ConfigLocal; 61 }; 55 62 56 63 sub encodings { -
lang/perl/Encode/trunk/Makefile.PL
r11260 r15030 1 1 # 2 # $Id: Makefile.PL,v 2. 6 2008/05/07 20:56:05dankogai Exp dankogai $2 # $Id: Makefile.PL,v 2.7 2008/07/01 20:56:17 dankogai Exp dankogai $ 3 3 # 4 4 use 5.007003; … … 6 6 use warnings; 7 7 use ExtUtils::MakeMaker; 8 use File::Spec; 8 9 9 10 # Just for sure :) … … 35 36 36 37 WriteMakefile( 37 NAME=> "Encode",38 EXE_FILES=> \@exe_files,39 VERSION_FROM=> 'Encode.pm',40 OBJECT=> '$(O_FILES)',41 'dist'=> {42 COMPRESS=> 'gzip -9f',43 SUFFIX=> 'gz',44 DIST_DEFAULT => 'all tardist',45 },46 @man,47 INC => "-I./Encode",48 PMLIBDIRS=> \@pmlibdirs,49 INSTALLDIRS => 'perl',50 );38 NAME => "Encode", 39 EXE_FILES => \@exe_files, 40 VERSION_FROM => 'Encode.pm', 41 OBJECT => '$(O_FILES)', 42 'dist' => { 43 COMPRESS => 'gzip -9f', 44 SUFFIX => 'gz', 45 DIST_DEFAULT => 'all tardist', 46 }, 47 @man, 48 INC => '-I' . File::Spec->catfile( '.', 'Encode' ), 49 PMLIBDIRS => \@pmlibdirs, 50 INSTALLDIRS => 'perl', 51 ); 51 52 52 53 package MY; -
lang/perl/Encode/trunk/lib/Encode/Alias.pm
r11260 r15030 3 3 use warnings; 4 4 no warnings 'redefine'; 5 our $VERSION = do { my @r = ( q$Revision: 2. 9$ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };5 our $VERSION = do { my @r = ( q$Revision: 2.10 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; 6 6 sub DEBUG () { 0 } 7 7 … … 208 208 # define_alias( qr/\bmacIcelandic$/i => '"macIceland"'); 209 209 define_alias( qr/^mac_(.*)$/i => '"mac$1"' ); 210 # http://rt.cpan.org/Ticket/Display.html?id=36326 211 define_alias( qr/^macintosh$/i => '"MacRoman"' ); 210 212 211 213 # Ououououou. gone. They are differente! -
lang/perl/Encode/trunk/lib/Encode/GSM0338.pm
r11260 r15030 1 1 # 2 # $Id: GSM0338.pm,v 2.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: GSM0338.pm,v 2.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 package Encode::GSM0338; -
lang/perl/Encode/trunk/lib/Encode/JP/JIS7.pm
r1747 r15030 2 2 use strict; 3 3 use warnings; 4 our $VERSION = do { my @r = ( q$Revision: 2. 3$ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };4 our $VERSION = do { my @r = ( q$Revision: 2.4 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; 5 5 6 6 use Encode qw(:fallbacks); … … 131 131 sub euc_jis { 132 132 no warnings qw(uninitialized); 133 local ${^ENCODING}; 133 134 my $r_str = shift; 134 135 my $jis0212 = shift; -
lang/perl/Encode/trunk/t/Aliases.t
r1747 r15030 53 53 'WinBaltic' => 'cp1257', 54 54 'WinVietnamese' => 'cp1258', 55 'Macintosh' => 'MacRoman', 55 56 'koi8r' => 'koi8-r', 56 57 'koi8u' => 'koi8-u', -
lang/perl/Encode/trunk/ucm/cp850.ucm
r11260 r15030 1 1 # 2 # $Id: cp850.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp850.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp852.ucm
r11260 r15030 1 1 # 2 # $Id: cp852.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp852.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp855.ucm
r11260 r15030 1 1 # 2 # $Id: cp855.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp855.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp856.ucm
r11260 r15030 1 1 # 2 # $Id: cp856.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp856.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp857.ucm
r11260 r15030 1 1 # 2 # $Id: cp857.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp857.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp858.ucm
r11260 r15030 1 1 # 2 # $Id: cp858.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp858.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # cf. http://en.wikipedia.org/wiki/Code_page_858 -
lang/perl/Encode/trunk/ucm/cp860.ucm
r11260 r15030 1 1 # 2 # $Id: cp860.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp860.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp861.ucm
r11260 r15030 1 1 # 2 # $Id: cp861.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp861.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp862.ucm
r11260 r15030 1 1 # 2 # $Id: cp862.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp862.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp863.ucm
r11260 r15030 1 1 # 2 # $Id: cp863.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp863.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp864.ucm
r11260 r15030 1 1 # 2 # $Id: cp864.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp864.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp865.ucm
r11260 r15030 1 1 # 2 # $Id: cp865.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp865.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp866.ucm
r11260 r15030 1 1 # 2 # $Id: cp866.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp866.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp869.ucm
r11260 r15030 1 1 # 2 # $Id: cp869.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp869.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp874.ucm
r11260 r15030 1 1 # 2 # $Id: cp874.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp874.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at -
lang/perl/Encode/trunk/ucm/cp875.ucm
r11260 r15030 1 1 # 2 # $Id: cp875.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp dankogai$2 # $Id: cp875.ucm,v 1.1 2008/05/07 20:56:05 dankogai Exp $ 3 3 # 4 4 # Original table can be obtained at
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)