• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/Module/H12-Jul-2008-1,3621,002

lib/I18N/H12-Jul-2008-3,2302,280

t/H12-Jul-2008-585465

ChangesH A D05-Jul-20085.3 KiB204105

MANIFESTH A D24-May-2008453 2726

META.ymlH A D12-Jul-2008686 3231

Makefile.PLH A D29-Jun-2008759 3827

READMEH A D09-Dec-20061.5 KiB4229

README

1
2                      I18N-Charset Distribution
3
4This distribution contains a module I18N::Charset which maps Character
5Set names to the names officially registered with IANA.  For example,
6'Shift_JIS' is the official name of what is often referred to in HTML
7headers as 'x-sjis'.
8
9It also maps character set names to Unicode::Map, Unicode::Map8, and
10Unicode::MapUTF8 conversion scheme names (if those modules are
11installed).  For example, the Unicode::Map8 scheme name for
12'windows-1251' is 'cp1251'.
13
14It also maps character set names to their preferred MIME names.  For
15example, the preferred MIME name for 'ISO_646.irv:1991' is 'US-ASCII'.
16
17It also maps character set names to conversion scheme names as defined
18by the iconv library.  For example, the iconv conversion scheme name
19for 'Shift_JIS' is 'MS_KANJI'.
20
21It also maps character set names to encoding names as defined
22by the Encode module.  For example, the Encode encoding name
23for 'Shift_JIS' is 'shiftjis'.
24
25To install these modules, you should just have to run the following:
26
27	% perl Makefile.PL
28	% make test
29	% make install
30
31(If you're on a Windows system, you probably use Nmake instead of make.)
32
33The module is documented using pod. When you "make install", you will
34get a man page I18N::Charset which can be displayed by "perldoc
35I18N::Charset".
36
37Please let me know if you experience any problems with this module, or
38have any ideas for additions, or if you have some new character set
39names or abbreviations you'd like to be included.
40
41Martin Thurn, <mthurn@cpan.org>, L<http://tinyurl.com/nn67z>.
42