source: for-distributions/trunk/bin/windows/perl/lib/Encode/JP.pm@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 2.6 KB
Line 
1package Encode::JP;
2BEGIN {
3 if (ord("A") == 193) {
4 die "Encode::JP not supported on EBCDIC\n";
5 }
6}
7use Encode;
8our $VERSION = do { my @r = (q$Revision: 2.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
9
10use XSLoader;
11XSLoader::load(__PACKAGE__,$VERSION);
12
13use Encode::JP::JIS7;
14
151;
16__END__
17
18=head1 NAME
19
20Encode::JP - Japanese Encodings
21
22=head1 SYNOPSIS
23
24 use Encode qw/encode decode/;
25 $euc_jp = encode("euc-jp", $utf8); # loads Encode::JP implicitly
26 $utf8 = decode("euc-jp", $euc_jp); # ditto
27
28=head1 ABSTRACT
29
30This module implements Japanese charset encodings. Encodings
31supported are as follows.
32
33 Canonical Alias Description
34 --------------------------------------------------------------------
35 euc-jp /\beuc.*jp$/i EUC (Extended Unix Character)
36 /\bjp.*euc/i
37 /\bujis$/i
38 shiftjis /\bshift.*jis$/i Shift JIS (aka MS Kanji)
39 /\bsjis$/i
40 7bit-jis /\bjis$/i 7bit JIS
41 iso-2022-jp ISO-2022-JP [RFC1468]
42 = 7bit JIS with all Halfwidth Kana
43 converted to Fullwidth
44 iso-2022-jp-1 ISO-2022-JP-1 [RFC2237]
45 = ISO-2022-JP with JIS X 0212-1990
46 support. See below
47 MacJapanese Shift JIS + Apple vendor mappings
48 cp932 /\bwindows-31j$/i Code Page 932
49 = Shift JIS + MS/IBM vendor mappings
50 jis0201-raw JIS0201, raw format
51 jis0208-raw JIS0201, raw format
52 jis0212-raw JIS0201, raw format
53 --------------------------------------------------------------------
54
55=head1 DESCRIPTION
56
57To find out how to use this module in detail, see L<Encode>.
58
59=head1 Note on ISO-2022-JP(-1)?
60
61ISO-2022-JP-1 (RFC2237) is a superset of ISO-2022-JP (RFC1468) which
62adds support for JIS X 0212-1990. That means you can use the same
63code to decode to utf8 but not vice versa.
64
65 $utf8 = decode('iso-2022-jp-1', $stream);
66
67and
68
69 $utf8 = decode('iso-2022-jp', $stream);
70
71yield the same result but
72
73 $with_0212 = encode('iso-2022-jp-1', $utf8);
74
75is now different from
76
77 $without_0212 = encode('iso-2022-jp', $utf8 );
78
79In the latter case, characters that map to 0212 are first converted
80to U+3013 (0xA2AE in EUC-JP; a white square also known as 'Tofu' or
81'geta mark') then fed to the decoding engine. U+FFFD is not used,
82in order to preserve text layout as much as possible.
83
84=head1 BUGS
85
86The ASCII region (0x00-0x7f) is preserved for all encodings, even
87though this conflicts with mappings by the Unicode Consortium. See
88
89L<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
90
91to find out why it is implemented that way.
92
93=head1 SEE ALSO
94
95L<Encode>
96
97=cut
Note: See TracBrowser for help on using the repository browser.