Upgrade to Encode 1.20, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / KR / KR.pm
1 package Encode::KR;
2 BEGIN {
3     if (ord("A") == 193) {
4         die "Encode::KR 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::KR',$VERSION);
12
13 1;
14 __END__
15 =head1 NAME
16
17 Encode::KR - Korean Encodings
18
19 =head1 SYNOPSIS
20
21     use Encode qw/encode decode/; 
22     $euc_kr = encode("euc-kr", $utf8);   # loads Encode::KR implicitly
23     $utf8   = decode("euc-kr", $euc_kr); # ditto
24
25 =head1 DESCRIPTION
26
27 This module implements Korean charset encodings.  Encodings supported
28 are as follows.
29
30
31   Canonical   Alias             Description
32   --------------------------------------------------------------------
33   euc-kr      /\beuc.*kr$/i     EUC (Extended Unix Character)
34               /\bkr.*euc$/i
35   ksc5601-raw                   Korean standard code set (as is)
36   cp949       /(?:x-)?uhc$/i
37               /(?:x-)?windows-949$/i
38               /\bks_c_5601-1987$/i
39                                 Code Page 949 (EUC-KR + 8,822 
40                                 (additional Hangul syllables)
41   MacKorean                     EUC-KR + Apple Vendor Mappings
42   johab       JOHAB             A supplementary encoding defined in 
43                                              Annex 3 of KS X 1001:1998
44   iso-2022-kr                   iso-2022-kr                  [RFC1557]
45   --------------------------------------------------------------------
46   
47 To find how to use this module in detail, see L<Encode>.
48
49 =head1 BUGS
50
51 When you see C<charset=ks_c_5601-1987> on mails and web pages, they really
52 mean "cp949" encodings.  To fix that, the following aliases are set;
53
54   qr/(?:x-)?uhc$/i         => '"cp949"'
55   qr/(?:x-)?windows-949$/i => '"cp949"'
56   qr/ks_c_5601-1987$/i     => '"cp949"'
57
58 ASCII part (0x00-0x7f) is preserved for all encodings, even though it
59 conflicts with mappings by the Unicode Consortium.  See
60
61 L<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
62
63 to find why it is implemented that way.
64
65 =head1 SEE ALSO
66
67 L<Encode>
68
69 =cut