Changeset 6751 for lang/perl/Archive-Lha

Show
Ignore:
Timestamp:
02/16/08 01:58:07 (10 months ago)
Author:
drry
Message:

lang/perl/Archive-Lha/trunk/lib/Archive/Lha/Header/Level0.pm
lang/perl/Archive-Lha/trunk/lib/Archive/Lha/Header/Level1.pm: fixed typos.

Location:
lang/perl/Archive-Lha/trunk/lib/Archive/Lha/Header
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Archive-Lha/trunk/lib/Archive/Lha/Header/Level0.pm

    r3588 r6751  
    6969This parses Level 0 headers found mainly in the oldest archives created in the MS-DOS era. Actually, it was designed for LHarc, one of the ancestors of LHa. 
    7070 
    71 As Level 0 header has rather severe limitation for the path length of the archived file, recent archivers usually use Level 2 (or extended Level 1) headers. If you find multibyte strings in the header, most probably they are encoded in shift-jis. 
     71As Level 0 header has rather severe limitation for the path length of the archived file, recent archivers usually use Level 2 (or extended Level 1) headers. If you find multibyte strings in the header, most probably they are encoded in shift_jis. 
    7272 
    7373=head1 METHODS 
  • lang/perl/Archive-Lha/trunk/lib/Archive/Lha/Header/Level1.pm

    r3588 r6751  
    8383This parses Level 1 headers found mainly in older archives created in the MS-DOS era. Also, some of the older ports, including LHa for UNIX, still prefer this header for compatibility reasons. Historically, Level 1 header, which is actually a combination of previous Level 0 header and following Level 2 header, was designed to foster the transition to Level 2 header. However, as Level 2 implementation delayed, Level 1 archives prevailed enough and could not be ignored. 
    8484 
    85 Level 1 header also has rather severe limitation for the path length of the archived file. However, Level 1 header can use extended headers to store longer file/directory names. Multibyte strings in the header may be encoded in shift-jis, or in euc-jp, or in other encodings. 
     85Level 1 header also has rather severe limitation for the path length of the archived file. However, Level 1 header can use extended headers to store longer file/directory names. Multibyte strings in the header may be encoded in shift_jis, or in euc-jp, or in other encodings. 
    8686 
    8787=head1 METHODS