Not everybody has Encode::HanExtra.
[p5sagit/p5-mst-13.2.git] / ext / Encode / CN / CN.pm
1 package Encode::CN;
2 our $VERSION = '0.02';
3
4 use Encode;
5 use Encode::CN::HZ;
6 use XSLoader;
7 XSLoader::load('Encode::CN',$VERSION);
8
9 local $@;
10 eval "use Encode::HanExtra"; # load extra encodings if they exist
11
12 1;
13 __END__
14 =head1 NAME
15
16 Encode::CN - China-based Chinese Encodings
17
18 =head1 SYNOPSIS
19
20     use Encode::CN;
21     $euc_cn = encode("euc-cn", $utf8);
22     $utf8   = encode("euc-cn", $euc_cn);
23
24 =head1 DESCRIPTION
25
26 This module implements China-based Chinese charset encodings.
27 Encodings supported are as follows.
28
29   euc-cn        EUC (Extended Unix Character)
30   gb2312        The raw (low-bit) GB2312 character map
31   gb12345       Traditional chinese counterpart to GB2312 (raw)
32   iso-ir-165    GB2312 + GB6345 + GB8565 + additions
33   cp936         Code Page 936, also known as GBK (Extended GuoBiao)
34   hz            7-bit escaped GB2312 encoding
35
36 To find how to use this module in detail, see L<Encode>.
37
38 =head1 NOTES
39
40 Due to size concerns, C<GB 18030> (an extension to C<GBK>) is distributed
41 separately on CPAN, under the name L<Encode::HanExtra>. That module
42 also contains extra Taiwan-based encodings.
43
44 This module will automatically load L<Encode::HanExtra> if you have it on
45 your machine.
46
47 =head1 BUGS
48
49 ASCII part (0x00-0x7f) is preserved for all encodings, even though it
50 conflicts with mappings by the Unicode Consortium.  See
51
52 F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
53
54 to find why it is implemented that way.
55
56 =head1 SEE ALSO
57
58 L<Encode>
59
60 =cut