Upgrade to Encode 1.20, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / TW / TW.pm
1 package Encode::TW;
2 BEGIN {
3     if (ord("A") == 193) {
4         die "Encode::TW not supported on EBCDIC\n";
5     }
6 }
7 our $VERSION = do { my @r = (q$Revision: 1.20 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
8
9 use Encode;
10 use XSLoader;
11 XSLoader::load('Encode::TW',$VERSION);
12
13 1;
14 __END__
15
16 =head1 NAME
17
18 Encode::TW - Taiwan-based Chinese Encodings
19
20 =head1 SYNOPSIS
21
22     use Encode qw/encode decode/; 
23     $big5 = encode("big5", $utf8); # loads Encode::TW implicitly
24     $utf8 = decode("big5", $big5); # ditto
25
26 =head1 DESCRIPTION
27
28 This module implements Taiwan-based Chinese charset encodings.
29 Encodings supported are as follows.
30
31   Canonical   Alias             Description
32   --------------------------------------------------------------------
33   big5        /\bbig-?5$/i      The original Big5 encoding
34   big5-hkscs  /\bbig5-hk(scs)?$/i
35                                 Big5 plus Cantonese characters in 
36                                 Hong Kong
37   MacChineseSimp                Big5 + Apple Vendor Mappings
38   cp950                         Code Page 950 
39                                 = Big5 + Microsoft vendor mappings
40   --------------------------------------------------------------------
41
42 To find how to use this module in detail, see L<Encode>.
43
44 =head1 NOTES
45
46 Due to size concerns, C<EUC-TW> (Extended Unix Character) and C<BIG5PLUS>
47 (CMEX's Big5+) are distributed separately on CPAN, under the name
48 L<Encode::HanExtra>. That module also contains extra China-based encodings.
49
50 =head1 BUGS
51
52 The C<CNS11643> encoding files are not complete (only the first two planes,
53 C<11643-1> and C<11643-2>, exist in the distribution). For common CNS11643
54 manipulation, please use C<EUC-TW> in L<Encode::HanExtra>, which contains
55 plane 1-7.
56
57 ASCII part (0x00-0x7f) is preserved for all encodings, even though it
58 conflicts with mappings by the Unicode Consortium.  See
59
60 L<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
61
62 to find why it is implemented that way.
63
64 =head1 SEE ALSO
65
66 L<Encode>,L<Encode::CJKguide>
67
68 =cut