Changeset 1748 for lang/perl/Encode
- Timestamp:
- 11/18/07 19:38:13 (14 months ago)
- Location:
- lang/perl/Encode/trunk
- Files:
-
- 4 modified
-
Changes (modified) (1 diff)
-
META.yml (modified) (1 diff)
-
encoding.pm (modified) (2 diffs)
-
t/mime_header_iso2022jp.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Encode/trunk/Changes
r1747 r1748 4 4 # 5 5 $Revision: 2.23 $ $Date: 2007/05/29 18:15:32 $ 6 ! encoding.pm t/mime_header_iso2022jp.t 7 ported back from Perl 5.10-RC1 8 9 2.23 2007/05/29 18:15:32 6 10 ! Encode.xs 7 11 got rid of global fallback_cb; encode_method() now takes one more -
lang/perl/Encode/trunk/META.yml
r1747 r1748 1 --- #YAML:1.0 2 name: Encode 3 version: 2.23 4 abstract: ~ 5 license: ~ 6 generated_by: ExtUtils::MakeMaker version 6.32 7 distribution_type: module 8 requires: 9 meta-spec: 10 url: http://module-build.sourceforge.net/META-spec-v1.2.html 11 version: 1.2 1 # http://module-build.sourceforge.net/META-spec.html 2 #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# 3 name: Encode 4 version: 2.14 5 version_from: Encode.pm 6 installdirs: perl 7 requires: 8 9 distribution_type: module 10 generated_by: ExtUtils::MakeMaker version 6.17 -
lang/perl/Encode/trunk/encoding.pm
r1747 r1748 324 324 This pragma affects utf8::upgrade, but not utf8::downgrade. 325 325 326 =head2 Side effects 327 328 If the C<encoding> pragma is in scope then the lengths returned are 329 calculated from the length of C<$/> in Unicode characters, which is not 330 always the same as the length of C<$/> in the native encoding. 331 332 This pragma affects utf8::upgrade, but not utf8::downgrade. 333 326 334 =head1 FEATURES THAT REQUIRE 5.8.1 327 335 … … 621 629 Arabic and Hebrew). 622 630 631 =item Thread safety 632 633 C<use encoding ...> is not thread-safe (i.e., do not use in threaded 634 applications). 635 623 636 =back 624 637 -
lang/perl/Encode/trunk/t/mime_header_iso2022jp.t
r1747 r1748 1 1 2 use Test::More tests => 14; 2 use Test::More; 3 4 BEGIN { 5 if( ord("A") == 193 ) { 6 plan skip_all => 'No Encode::MIME::Header::ISO_2022_JP on EBCDIC Platforms'; 7 } else { 8 plan tests => 14; 9 } 10 } 3 11 4 12 use strict;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)