This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add the URL for annotated svn of S03.
[perl5.git] / pod / perltoc.pod
index 73e53a1..1836d4a 100644 (file)
@@ -337,8 +337,22 @@ X<record> X<structure> X<struct>
 
 =item Extracting matches
 
+=item Backreferences
+
+=item Relative backreferences
+
+=item Named backreferences
+
+=item Alternative capture group numbering
+
+=item Position information
+
+=item Non-capturing groupings
+
 =item Matching repetitions
 
+=item Possessive quantifiers
+
 =item Building a regexp
 
 =item Using regular expressions in Perl
@@ -353,9 +367,9 @@ X<record> X<structure> X<struct>
 
 =item Compiling and saving regular expressions
 
-=item Embedding comments and modifiers in a regular expression
+=item Composing regular expressions at runtime
 
-=item Non-capturing groupings
+=item Embedding comments and modifiers in a regular expression
 
 =item Looking ahead and looking behind
 
@@ -363,8 +377,14 @@ X<record> X<structure> X<struct>
 
 =item Conditional expressions
 
+=item Defining named patterns
+
+=item Recursive patterns
+
 =item A bit of magic: executing Perl code in a regular expression
 
+=item Backtracking control verbs
+
 =item Pragmas and debugging
 
 =back
@@ -491,6 +511,8 @@ X<record> X<structure> X<struct>
 
 =item UNIVERSAL: The Root of All Objects
 
+=item Deeper UNIVERSAL details
+
 =back
 
 =item Alternate Object Representations
@@ -808,7 +830,7 @@ LIMIT specified
 
 =back
 
-=head2 perlfaq - frequently asked questions about Perl ($Revision: 3606 $)
+=head2 perlfaq - frequently asked questions about Perl
 
 =over 4
 
@@ -863,7 +885,7 @@ Interaction, perlfaq9 - Networking
 
 =back
 
-=head2 perlfaq1 - General Questions About Perl ($Revision: 3606 $)
+=head2 perlfaq1 - General Questions About Perl
 
 =over 4
 
@@ -877,11 +899,11 @@ Interaction, perlfaq9 - Networking
 
 =item Which version of Perl should I use?
 
-=item What are perl4, perl5, or perl6?
+=item What are Perl 4, Perl 5, or Perl 6?
 
-=item What is Ponie?
+=item What was Ponie?
 
-=item What is perl6?
+=item What is Perl 6?
 
 =item How stable is Perl?
 
@@ -915,7 +937,7 @@ http://www.perl.org/advocacy/whyperl.html
 
 =back
 
-=head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 3606 $)
+=head2 perlfaq2 - Obtaining and Learning about Perl
 
 =over 4
 
@@ -970,7 +992,7 @@ References, Tutorials, Task-Oriented, Special Topics
 
 =back
 
-=head2 perlfaq3 - Programming Tools ($Revision: 3606 $)
+=head2 perlfaq3 - Programming Tools
 
 =over 4
 
@@ -1009,7 +1031,10 @@ Alpha, BBEdit and BBEdit Lite
 
 =item How can I use curses with Perl?
 
-=item How can I use X or Tk with Perl?
+=item How can I write a GUI (X, Tk, Gtk, etc.) in Perl?
+X<GUI> X<Tk> X<Wx> X<WxWidgets> X<Gtk> X<Gtk2> X<CamelBones> X<Qt>
+
+Tk, Wx, Gtk and Gtk2, Win32::GUI, CamelBones, Qt, Athena
 
 =item How can I make my Perl program run faster?
 
@@ -1028,8 +1053,6 @@ stringification, Pass by reference, Tie large variables to disk
 
 =item How can I compile my Perl program into byte code or C?
 
-=item How can I compile Perl into Java?
-
 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
 
 =item Can I write useful Perl programs on the command line?
@@ -1057,7 +1080,7 @@ program; what am I doing wrong?
 
 =back
 
-=head2 perlfaq4 - Data Manipulation ($Revision: 3606 $)
+=head2 perlfaq4 - Data Manipulation
 
 =over 4
 
@@ -1114,7 +1137,7 @@ from decimal to binary
 
 =item How do I find yesterday's date?
 
-=item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
+=item Does Perl have a Year 2000 problem? Is Perl Y2K compliant?
 
 =back
 
@@ -1201,6 +1224,8 @@ intersection of two arrays?
 =item How do I select a random element from an array?
 
 =item How do I permute N elements of a list?
+X<List::Permuter> X<permute> X<Algorithm::Loops> X<Knuth>
+X<The Art of Computer Programming> X<Fischer-Krause>
 
 =item How do I sort an array by (anything)?
 
@@ -1226,6 +1251,7 @@ it?
 =item How do I sort a hash (optionally by value instead of key)?
 
 =item How can I always keep my hash sorted?
+X<hash tie sort DB_File Tie::IxHash>
 
 =item What's the difference between "delete" and "undef" with hashes?
 
@@ -1275,7 +1301,7 @@ array of hashes or arrays?
 
 =back
 
-=head2 perlfaq5 - Files and Formats ($Revision: 3606 $)
+=head2 perlfaq5 - Files and Formats
 
 =over 4
 
@@ -1286,10 +1312,6 @@ array of hashes or arrays?
 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
 X<flush> X<buffer> X<unbuffer> X<autoflush>
 
-=item How do I change one line in a file/delete a line in a file/insert a
-line in the middle of a file/append to the beginning of a file?
-X<file, editing>
-
 =item How do I count the number of lines in a file?
 X<file, counting lines> X<lines> X<line>
 
@@ -1306,7 +1328,7 @@ X<file, temporary>
 X<fixed-length> X<file, fixed-length records>
 
 =item How can I make a filehandle local to a subroutine?  How do I pass
-filehandles between subroutines?  How do I make an array of filehandles? 
+filehandles between subroutines?  How do I make an array of filehandles?
 X<filehandle, local> X<filehandle, passing> X<filehandle, reference>
 
 =item How can I use a filehandle indirectly?
@@ -1318,8 +1340,8 @@ X<footer>
 =item How can I write() into a string?
 X<write, into a string>
 
-=item How can I output my numbers with commas added?
-X<number, commify>
+=item How can I open a filehandle to a string?
+X<string>, X<open>, X<IO::Scalar>, X<filehandle>
 
 =item How can I translate tildes (~) in a filename?
 X<tilde> X<tilde expansion>
@@ -1378,13 +1400,13 @@ X<getc> X<file, reading one character at a time>
 =item How can I tell whether there's a character waiting on a filehandle?
 
 =item How do I do a C<tail -f> in perl?
-X<tail>
+X<tail> X<IO::Handle> X<File::Tail> X<clearerr>
 
 =item How do I dup() a filehandle in Perl?
 X<dup>
 
 =item How do I close a file descriptor by number?
-X<file, closing file descriptors>
+X<file, closing file descriptors> X<POSIX> X<close>
 
 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
 `C:\temp\foo.exe` work?
@@ -1409,7 +1431,7 @@ X<file, selecting a random line>
 
 =back
 
-=head2 perlfaq6 - Regular Expressions ($Revision: 3606 $)
+=head2 perlfaq6 - Regular Expressions
 
 =over 4
 
@@ -1450,7 +1472,7 @@ X<alpha>
 X<regex, escaping> X<regexp, escaping> X<regular expression, escaping>
 
 =item What is C</o> really for?
-X</o>
+X</o, regular expressions> X<compile, regular expressions>
 
 =item How do I use a regular expression to strip C style comments from a
 file?
@@ -1491,9 +1513,12 @@ X<grep>
 
 =item How can I match strings with multibyte characters?
 X<regex, and multibyte characters> X<regexp, and multibyte characters>
-X<regular expression, and multibyte characters>
+X<regular expression, and multibyte characters> X<martian> X<encoding,
+Martian>
 
-=item How do I match a pattern that is supplied by the user?
+=item How do I match a regular expression that's in a variable?
+X<regex, in variable> X<eval> X<regex> X<quotemeta> X<\Q, regex>
+X<\E, regex>, X<qr//>
 
 =back
 
@@ -1503,7 +1528,7 @@ X<regular expression, and multibyte characters>
 
 =back
 
-=head2 perlfaq7 - General Perl Language Issues ($Revision: 3606 $)
+=head2 perlfaq7 - General Perl Language Issues
 
 =over 4
 
@@ -1531,6 +1556,8 @@ commas?
 
 =item How do I create a module?
 
+=item How do I adopt or take over a module already on CPAN?
+
 =item How do I create a class?
 
 =item How can I tell if a variable is tainted?
@@ -1586,7 +1613,7 @@ methods?
 
 =back
 
-=head2 perlfaq8 - System Interaction ($Revision: 3606 $)
+=head2 perlfaq8 - System Interaction
 
 =over 4
 
@@ -1631,8 +1658,10 @@ STDIN, STDOUT, and STDERR are shared, Signals, Zombies
 =item How do I set the time and date?
 
 =item How can I sleep() or alarm() for under a second?
+X<Time::HiRes> X<BSD::Itimer> X<sleep> X<select>
 
 =item How can I measure time under a second?
+X<Time::HiRes> X<BSD::Itimer> X<sleep> X<select>
 
 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
 
@@ -1685,6 +1714,7 @@ complete?
 =item How do I timeout a slow event?
 
 =item How do I set CPU limits?
+X<BSD::Resource> X<limit> X<CPU>
 
 =item How do I avoid zombies on a Unix system?
 
@@ -1707,6 +1737,9 @@ search path?
 
 =item How do I add a directory to my include path (@INC) at runtime?
 
+the PERLLIB environment variable, the PERL5LIB environment variable, the
+perl -Idir command line flag, the use lib pragma:
+
 =item What is socket.ph and where do I get it?
 
 =back
@@ -1717,7 +1750,7 @@ search path?
 
 =back
 
-=head2 perlfaq9 - Networking ($Revision: 3606 $)
+=head2 perlfaq9 - Networking
 
 =over 4
 
@@ -1739,7 +1772,7 @@ Server Error)
 =item How do I download a file from the user's machine?  How do I open a
 file on another machine?
 
-=item How do I make a pop-up menu in HTML?
+=item How do I make an HTML pop-up menu with Perl?
 
 =item How do I fetch an HTML file?
 
@@ -1974,10 +2007,9 @@ X<operator, logical, not> X<not>
 X<operator, logical, and> X<and>
 
 =item Logical or, Defined or, and Exclusive Or
-X<operator, logical, or> X<operator, logical, xor> X<operator, logical,
-err>
+X<operator, logical, or> X<operator, logical, xor>
 X<operator, logical, defined or> X<operator, logical, exclusive or>
-X<or> X<xor> X<err>
+X<or> X<xor>
 
 =item C Operators Missing From Perl
 X<operator, missing from perl> X<&> X<*>
@@ -1993,18 +2025,22 @@ X<escape sequence> X<escape>
 =item Regexp Quote-Like Operators
 X<operator, regexp>
 
-?PATTERN? X<?>, m/PATTERN/cgimosx X<m> X<operator, match> X<regexp,
-options> X<regexp> X<regex, options> X<regex> X</c> X</i> X</m> X</o> X</s>
-X</x>, /PATTERN/cgimosx, q/STRING/ X<q> X<quote, single> X<'> X<''>,
-'STRING', qq/STRING/ X<qq> X<quote, double> X<"> X<"">, "STRING",
-qr/STRING/imosx X<qr> X</i> X</m> X</o> X</s> X</x>, qx/STRING/ X<qx> X<`>
-X<``> X<backtick>, `STRING`, qw/STRING/ X<qw> X<quote, list> X<quote,
-words>, s/PATTERN/REPLACEMENT/egimosx X<substitute> X<substitution>
-X<replace> X<regexp, replace> X<regexp, substitute> X</e> X</g> X</i> X</m>
-X</o> X</s> X</x>, tr/SEARCHLIST/REPLACEMENTLIST/cds X<tr> X<y>
-X<transliterate> X</c> X</d> X</s>, y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
-X<here-doc> X<heredoc> X<here-document> X<<< << >>>, Double Quotes, Single
-Quotes, Backticks
+qr/STRING/msixpo X<qr> X</i> X</m> X</o> X</s> X</x> X</p>,
+m/PATTERN/msixpogc X<m> X<operator, match> X<regexp, options> X<regexp>
+X<regex, options> X<regex> X</m> X</s> X</i> X</x> X</p> X</o> X</g> X</c>,
+/PATTERN/msixpogc, ?PATTERN? X<?>, s/PATTERN/REPLACEMENT/msixpogce
+X<substitute> X<substitution> X<replace> X<regexp, replace> X<regexp,
+substitute> X</m> X</s> X</i> X</x> X</p> X</o> X</g> X</c> X</e>
+
+=item Quote-Like Operators
+X<operator, quote-like>
+
+q/STRING/ X<q> X<quote, single> X<'> X<''>, 'STRING', qq/STRING/ X<qq>
+X<quote, double> X<"> X<"">, "STRING", qx/STRING/ X<qx> X<`> X<``>
+X<backtick>, `STRING`, qw/STRING/ X<qw> X<quote, list> X<quote, words>,
+tr/SEARCHLIST/REPLACEMENTLIST/cds X<tr> X<y> X<transliterate> X</c> X</d>
+X</s>, y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF X<here-doc> X<heredoc>
+X<here-document> X<<< << >>>, Double Quotes, Single Quotes, Backticks
 
 =item Gory details of parsing quoted constructs
 X<quote, gory details>
@@ -2122,7 +2158,7 @@ flow of your Perl program X<control flow>, Keywords related to switch,
 Keywords related to scoping, Miscellaneous functions, Functions for
 processes and process groups X<process> X<pid> X<process id>, Keywords
 related to perl modules X<module>, Keywords related to classes and
-object-orientedness X<object> X<class> X<package>, Low-level socket
+object-orientation X<object> X<class> X<package>, Low-level socket
 functions X<socket> X<sock>, System V interprocess communication functions
 X<IPC> X<System V> X<semaphore> X<shared memory> X<memory> X<message>,
 Fetching user and group info X<user> X<group> X<password> X<uid> X<gid> 
@@ -2206,35 +2242,35 @@ X<directory, create>, mkdir FILENAME, mkdir, msgctl ID,CMD,ARG X<msgctl>,
 msgget KEY,FLAGS X<msgget>, msgrcv ID,VAR,SIZE,TYPE,FLAGS X<msgrcv>, msgsnd
 ID,MSG,FLAGS X<msgsnd>, my EXPR X<my>, my TYPE EXPR, my EXPR : ATTRS, my
 TYPE EXPR : ATTRS, next LABEL X<next> X<continue>, next, no Module VERSION
-LIST X<no>, no Module VERSION, no Module LIST, no Module, oct EXPR X<oct>
-X<octal> X<hex> X<hexadecimal> X<binary> X<bin>, oct, open FILEHANDLE,EXPR
-X<open> X<pipe> X<file, open> X<fopen>, open FILEHANDLE,MODE,EXPR, open
-FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE,
-opendir DIRHANDLE,EXPR X<opendir>, ord EXPR X<ord> X<encoding>, ord, our
-EXPR X<our> X<global>, our TYPE EXPR, our EXPR : ATTRS, our TYPE EXPR :
-ATTRS, pack TEMPLATE,LIST X<pack>, package NAMESPACE X<package> X<module>
-X<namespace>, package, pipe READHANDLE,WRITEHANDLE X<pipe>, pop ARRAY
-X<pop> X<stack>, pop, pos SCALAR X<pos> X<match, position>, pos, print
-FILEHANDLE LIST X<print>, print LIST, print, printf FILEHANDLE FORMAT, LIST
-X<printf>, printf FORMAT, LIST, prototype FUNCTION X<prototype>, push
-ARRAY,LIST X<push>, X<stack>, q/STRING/, qq/STRING/, qr/STRING/,
-qx/STRING/, qw/STRING/, quotemeta EXPR X<quotemeta> X<metacharacter>,
-quotemeta, rand EXPR X<rand> X<random>, rand, read
-FILEHANDLE,SCALAR,LENGTH,OFFSET X<read> X<file, read>, read
-FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE X<readdir>, readline EXPR
-X<readline> X<gets> X<fgets>, readlink EXPR X<readlink>, readlink, readpipe
-EXPR X<readpipe>, recv SOCKET,SCALAR,LENGTH,FLAGS X<recv>, redo LABEL
-X<redo>, redo, ref EXPR X<ref> X<reference>, ref, rename OLDNAME,NEWNAME
-X<rename> X<move> X<mv> X<ren>, require VERSION X<require>, require EXPR,
-require, reset EXPR X<reset>, reset, return EXPR X<return>, return, reverse
-LIST X<reverse> X<rev> X<invert>, rewinddir DIRHANDLE X<rewinddir>, rindex
-STR,SUBSTR,POSITION X<rindex>, rindex STR,SUBSTR, rmdir FILENAME X<rmdir>
-X<rd> X<directory, remove>, rmdir, s///, say FILEHANDLE LIST X<say>, say
-LIST, say, scalar EXPR X<scalar> X<context>, seek
-FILEHANDLE,POSITION,WHENCE X<seek> X<fseek> X<filehandle, position>,
-seekdir DIRHANDLE,POS X<seekdir>, select FILEHANDLE X<select> X<filehandle,
-default>, select, select RBITS,WBITS,EBITS,TIMEOUT X<select>, semctl
-ID,SEMNUM,CMD,ARG X<semctl>, semget KEY,NSEMS,FLAGS X<semget>, semop
+LIST X<no>, no Module VERSION, no Module LIST, no Module, no VERSION, oct
+EXPR X<oct> X<octal> X<hex> X<hexadecimal> X<binary> X<bin>, oct, open
+FILEHANDLE,EXPR X<open> X<pipe> X<file, open> X<fopen>, open
+FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST, open
+FILEHANDLE,MODE,REFERENCE, open FILEHANDLE, opendir DIRHANDLE,EXPR
+X<opendir>, ord EXPR X<ord> X<encoding>, ord, our EXPR X<our> X<global>,
+our TYPE EXPR, our EXPR : ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST
+X<pack>, package NAMESPACE X<package> X<module> X<namespace>, package, pipe
+READHANDLE,WRITEHANDLE X<pipe>, pop ARRAY X<pop> X<stack>, pop, pos SCALAR
+X<pos> X<match, position>, pos, print FILEHANDLE LIST X<print>, print LIST,
+print, printf FILEHANDLE FORMAT, LIST X<printf>, printf FORMAT, LIST,
+prototype FUNCTION X<prototype>, push ARRAY,LIST X<push> X<stack>,
+q/STRING/, qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR
+X<quotemeta> X<metacharacter>, quotemeta, rand EXPR X<rand> X<random>,
+rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET X<read> X<file, read>, read
+FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE X<readdir>, readline EXPR,
+readline X<readline> X<gets> X<fgets>, readlink EXPR X<readlink>, readlink,
+readpipe EXPR, readpipe X<readpipe>, recv SOCKET,SCALAR,LENGTH,FLAGS
+X<recv>, redo LABEL X<redo>, redo, ref EXPR X<ref> X<reference>, ref,
+rename OLDNAME,NEWNAME X<rename> X<move> X<mv> X<ren>, require VERSION
+X<require>, require EXPR, require, reset EXPR X<reset>, reset, return EXPR
+X<return>, return, reverse LIST X<reverse> X<rev> X<invert>, rewinddir
+DIRHANDLE X<rewinddir>, rindex STR,SUBSTR,POSITION X<rindex>, rindex
+STR,SUBSTR, rmdir FILENAME X<rmdir> X<rd> X<directory, remove>, rmdir,
+s///, say FILEHANDLE LIST X<say>, say LIST, say, scalar EXPR X<scalar>
+X<context>, seek FILEHANDLE,POSITION,WHENCE X<seek> X<fseek> X<filehandle,
+position>, seekdir DIRHANDLE,POS X<seekdir>, select FILEHANDLE X<select>
+X<filehandle, default>, select, select RBITS,WBITS,EBITS,TIMEOUT X<select>,
+semctl ID,SEMNUM,CMD,ARG X<semctl>, semget KEY,NSEMS,FLAGS X<semget>, semop
 KEY,OPSTRING X<semop>, send SOCKET,MSG,FLAGS,TO X<send>, send
 SOCKET,MSG,FLAGS, setpgrp PID,PGRP X<setpgrp> X<group>, setpriority
 WHICH,WHO,PRIORITY X<setpriority> X<priority> X<nice> X<renice>, setsockopt
@@ -2562,19 +2598,19 @@ X<perl, location of interpreter>
 =item Command Switches
 X<perl, command switches> X<command switches>
 
-B<-0>[I<octal/hexadecimal>] X<-0> X<$/>, B<-A[I<module>][=I<assertions>]>
-X<-A>, B<-a> X<-a> X<autosplit>, B<-C [I<number/list>]> X<-C>, B<-c> X<-c>,
-B<-d> X<-d> X<-dt>, B<-dt>, B<-d:>I<foo[=bar,baz]> X<-d> X<-dt>,
-B<-dt:>I<foo[=bar,baz]>, B<-D>I<letters> X<-D> X<DEBUGGING> X<-DDEBUGGING>,
-B<-D>I<number>, B<-e> I<commandline> X<-e>, B<-E> I<commandline> X<-E>,
-B<-f> X<-f>, B<-F>I<pattern> X<-F>, B<-h> X<-h>, B<-i>[I<extension>] X<-i>
-X<in-place>, B<-I>I<directory> X<-I> X<@INC>, B<-l>[I<octnum>] X<-l> X<$/>
-X<$\>, B<-m>[B<->]I<module> X<-m> X<-M>, B<-M>[B<->]I<module>,
+B<-0>[I<octal/hexadecimal>] X<-0> X<$/>, B<-a> X<-a> X<autosplit>, B<-C
+[I<number/list>]> X<-C>, B<-c> X<-c>, B<-d> X<-d> X<-dt>, B<-dt>,
+B<-d:>I<foo[=bar,baz]> X<-d> X<-dt>, B<-dt:>I<foo[=bar,baz]>,
+B<-D>I<letters> X<-D> X<DEBUGGING> X<-DDEBUGGING>, B<-D>I<number>, B<-e>
+I<commandline> X<-e>, B<-E> I<commandline> X<-E>, B<-f> X<-f>,
+B<-F>I<pattern> X<-F>, B<-h> X<-h>, B<-i>[I<extension>] X<-i> X<in-place>,
+B<-I>I<directory> X<-I> X<@INC>, B<-l>[I<octnum>] X<-l> X<$/> X<$\>,
+B<-m>[B<->]I<module> X<-m> X<-M>, B<-M>[B<->]I<module>,
 B<-M>[B<->]I<'module ...'>, B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>
 X<-n>, B<-p> X<-p>, B<-P> X<-P>, B<-s> X<-s>, B<-S> X<-S>, B<-t> X<-t>,
 B<-T> X<-T>, B<-u> X<-u>, B<-U> X<-U>, B<-v> X<-v>, B<-V> X<-V>,
 B<-V:>I<configvar>, B<-w> X<-w>, B<-W> X<-W>, B<-X> X<-X>, B<-x> X<-x>,
-B<-x> I<directory>
+B<-x>I<directory>
 
 =back
 
@@ -2604,6 +2640,8 @@ X<SYS$LOGIN>
 
 =item DESCRIPTION
 
+=item SEE ALSO
+
 =back
 
 =head2 perllexwarn - Perl Lexical Warnings
@@ -2635,8 +2673,6 @@ X<warning, reporting> X<warning, registering>
 
 =back
 
-=item TODO
-
 =item SEE ALSO
 
 =item AUTHOR
@@ -2653,6 +2689,11 @@ X<warning, reporting> X<warning, registering>
 
 =over 4
 
+=item Calling the debugger
+
+perl -d program_name, perl -d -e 0, perl -d:Ptkdb program_name, perl -dt
+threaded_program_name
+
 =item Debugger Commands
 
 h X<debugger command, h>, h [command], h h, p expr X<debugger command, p>,
@@ -2755,13 +2796,14 @@ X<memory usage>
 =item Predefined Names
 
 $ARG, $_ X<$_> X<$ARG>, $a, $b X<$a> X<$b>, $<I<digits>> X<$1> X<$2> X<$3>,
-$MATCH, $& X<$&> X<$MATCH>, $PREMATCH, $` X<$`> X<$PREMATCH>, $POSTMATCH,
-$' X<$'> X<$POSTMATCH>, $LAST_PAREN_MATCH, $+ X<$+> X<$LAST_PAREN_MATCH>,
-$^N X<$^N>, @LAST_MATCH_END, @+ X<@+> X<@LAST_MATCH_END>,
-HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $. X<$.> X<$NR>
-X<$INPUT_LINE_NUMBER> X<line number>,
-IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/
-X<$/> X<$RS> X<$INPUT_RECORD_SEPARATOR>, HANDLE->autoflush(EXPR),
+$MATCH, $& X<$&> X<$MATCH>, ${^MATCH} X<${^MATCH}>, $PREMATCH, $` X<$`>
+X<$PREMATCH>, ${^PREMATCH} X<${^PREMATCH}>, $POSTMATCH, $' X<$'>
+X<$POSTMATCH>, ${^POSTMATCH} X<${^POSTMATCH}>, $LAST_PAREN_MATCH, $+ X<$+>
+X<$LAST_PAREN_MATCH>, $LAST_SUBMATCH_RESULT, $^N X<$^N>, @LAST_MATCH_END,
+@+ X<@+> X<@LAST_MATCH_END>, %+ X<%+>, HANDLE->input_line_number(EXPR),
+$INPUT_LINE_NUMBER, $NR, $. X<$.> X<$NR> X<$INPUT_LINE_NUMBER> X<line
+number>, IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR,
+$RS, $/ X<$/> X<$RS> X<$INPUT_RECORD_SEPARATOR>, HANDLE->autoflush(EXPR),
 $OUTPUT_AUTOFLUSH, $| X<$|> X<autoflush> X<flush> X<$OUTPUT_AUTOFLUSH>,
 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,
 X<$,> X<$OFS> X<$OUTPUT_FIELD_SEPARATOR>,
@@ -2777,8 +2819,8 @@ X<@-> X<@LAST_MATCH_START>, C<$`> is the same as C<substr($var, 0, $-[0])>,
 C<$&> is the same as C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the
 same as C<substr($var, $+[0])>, C<$1> is the same as C<substr($var, $-[1],
 $+[1] - $-[1])>, C<$2> is the same as C<substr($var, $-[2], $+[2] -
-$-[2])>, C<$3> is the same as C<substr($var, $-[3], $+[3] - $-[3])>,
-HANDLE->format_name(EXPR), $FORMAT_NAME, $~ X<$~> X<$FORMAT_NAME>,
+$-[2])>, C<$3> is the same as C<substr($var, $-[3], $+[3] - $-[3])>, %-
+X<%->, HANDLE->format_name(EXPR), $FORMAT_NAME, $~ X<$~> X<$FORMAT_NAME>,
 HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^ X<$^>
 X<$FORMAT_TOP_NAME>, IO::Handle->format_line_break_characters EXPR,
 $FORMAT_LINE_BREAK_CHARACTERS, $: X<$:> X<FORMAT_LINE_BREAK_CHARACTERS>,
@@ -2786,27 +2828,28 @@ IO::Handle->format_formfeed EXPR, $FORMAT_FORMFEED, $^L X<$^L>
 X<$FORMAT_FORMFEED>, $ACCUMULATOR, $^A X<$^A> X<$ACCUMULATOR>,
 $CHILD_ERROR, $? X<$?> X<$CHILD_ERROR>, ${^CHILD_ERROR_NATIVE}
 X<$^CHILD_ERROR_NATIVE>, ${^ENCODING} X<$^ENCODING>, $OS_ERROR, $ERRNO, $!
-X<$!> X<$ERRNO> X<$OS_ERROR>, %! X<%!>, $EXTENDED_OS_ERROR, $^E X<$^E>
-X<$EXTENDED_OS_ERROR>, $EVAL_ERROR, $@ X<$@> X<$EVAL_ERROR>, $PROCESS_ID,
-$PID, $$ X<$$> X<$PID> X<$PROCESS_ID>, $REAL_USER_ID, $UID, $< X<< $< >>
-X<$UID> X<$REAL_USER_ID>, $EFFECTIVE_USER_ID, $EUID, $> X<< $> >> X<$EUID>
-X<$EFFECTIVE_USER_ID>, $REAL_GROUP_ID, $GID, $( X<$(> X<$GID>
-X<$REAL_GROUP_ID>, $EFFECTIVE_GROUP_ID, $EGID, $) X<$)> X<$EGID>
-X<$EFFECTIVE_GROUP_ID>, $PROGRAM_NAME, $0 X<$0> X<$PROGRAM_NAME>, $[ X<$[>,
-$] X<$]>, $COMPILING, $^C X<$^C> X<$COMPILING>, $DEBUGGING, $^D X<$^D>
-X<$DEBUGGING>, ${^RE_DEBUG_FLAGS}, ${^RE_TRIE_MAXBUF}, $SYSTEM_FD_MAX, $^F
-X<$^F> X<$SYSTEM_FD_MAX>, $^H, %^H, $INPLACE_EDIT, $^I X<$^I>
-X<$INPLACE_EDIT>, $^M X<$^M>, $OSNAME, $^O X<$^O> X<$OSNAME>, ${^OPEN},
-$PERLDB, $^P X<$^P> X<$PERLDB>, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40,
-0x80, 0x100, 0x200, 0x400, $LAST_REGEXP_CODE_RESULT, $^R X<$^R>
-X<$LAST_REGEXP_CODE_RESULT>, $EXCEPTIONS_BEING_CAUGHT, $^S X<$^S>
-X<$EXCEPTIONS_BEING_CAUGHT>, $BASETIME, $^T X<$^T> X<$BASETIME>, ${^TAINT},
-${^UNICODE}, ${^UTF8CACHE}, ${^UTF8LOCALE}, $PERL_VERSION, $^V X<$^V>
-X<$PERL_VERSION>, $WARNING, $^W X<$^W> X<$WARNING>, ${^WARNING_BITS},
-${^WIN32_SLOPPY_STAT}, $EXECUTABLE_NAME, $^X X<$^X> X<$EXECUTABLE_NAME>,
-ARGV X<ARGV>, $ARGV X<$ARGV>, @ARGV X<@ARGV>, ARGVOUT X<ARGVOUT>, @F X<@F>,
-@INC X<@INC>, @ARG, @_ X<@_> X<@ARG>, %INC X<%INC>, %ENV, $ENV{expr}
-X<%ENV>, %SIG, $SIG{expr} X<%SIG>
+X<$!> X<$ERRNO> X<$OS_ERROR>, %OS_ERROR, %ERRNO, %! X<%!>,
+$EXTENDED_OS_ERROR, $^E X<$^E> X<$EXTENDED_OS_ERROR>, $EVAL_ERROR, $@ X<$@>
+X<$EVAL_ERROR>, $PROCESS_ID, $PID, $$ X<$$> X<$PID> X<$PROCESS_ID>,
+$REAL_USER_ID, $UID, $< X<< $< >> X<$UID> X<$REAL_USER_ID>,
+$EFFECTIVE_USER_ID, $EUID, $> X<< $> >> X<$EUID> X<$EFFECTIVE_USER_ID>,
+$REAL_GROUP_ID, $GID, $( X<$(> X<$GID> X<$REAL_GROUP_ID>,
+$EFFECTIVE_GROUP_ID, $EGID, $) X<$)> X<$EGID> X<$EFFECTIVE_GROUP_ID>,
+$PROGRAM_NAME, $0 X<$0> X<$PROGRAM_NAME>, $[ X<$[>, $] X<$]>, $COMPILING,
+$^C X<$^C> X<$COMPILING>, $DEBUGGING, $^D X<$^D> X<$DEBUGGING>,
+${^RE_DEBUG_FLAGS}, ${^RE_TRIE_MAXBUF}, $SYSTEM_FD_MAX, $^F X<$^F>
+X<$SYSTEM_FD_MAX>, $^H, %^H, $INPLACE_EDIT, $^I X<$^I> X<$INPLACE_EDIT>,
+$^M X<$^M>, $OSNAME, $^O X<$^O> X<$OSNAME>, ${^OPEN}, $PERLDB, $^P X<$^P>
+X<$PERLDB>, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x100, 0x200,
+0x400, $LAST_REGEXP_CODE_RESULT, $^R X<$^R> X<$LAST_REGEXP_CODE_RESULT>,
+$EXCEPTIONS_BEING_CAUGHT, $^S X<$^S> X<$EXCEPTIONS_BEING_CAUGHT>,
+$BASETIME, $^T X<$^T> X<$BASETIME>, ${^TAINT}, ${^UNICODE}, ${^UTF8CACHE},
+${^UTF8LOCALE}, $PERL_VERSION, $^V X<$^V> X<$PERL_VERSION>, $WARNING, $^W
+X<$^W> X<$WARNING>, ${^WARNING_BITS}, ${^WIN32_SLOPPY_STAT},
+$EXECUTABLE_NAME, $^X X<$^X> X<$EXECUTABLE_NAME>, ARGV X<ARGV>, $ARGV
+X<$ARGV>, @ARGV X<@ARGV>, ARGVOUT X<ARGVOUT>, @F X<@F>, @INC X<@INC>, @ARG,
+@_ X<@_> X<@ARG>, %INC X<%INC>, %ENV, $ENV{expr} X<%ENV>, %SIG, $SIG{expr}
+X<%SIG>
 
 =item Error Indicators
 X<error> X<exception>
@@ -2825,13 +2868,16 @@ X<error> X<exception>
 
 =item DESCRIPTION
 
-i X</i> X<regex, case-insensitive> X<regexp, case-insensitive> X<regular
-expression, case-insensitive>, m X</m> X<regex, multiline> X<regexp,
-multiline> X<regular expression, multiline>, s X</s> X<regex, single-line>
-X<regexp, single-line> X<regular expression, single-line>, x X</x>
-
 =over 4
 
+=item Modifiers
+
+m X</m> X<regex, multiline> X<regexp, multiline> X<regular expression,
+multiline>, s X</s> X<regex, single-line> X<regexp, single-line> X<regular
+expression, single-line>, i X</i> X<regex, case-insensitive> X<regexp,
+case-insensitive> X<regular expression, case-insensitive>, x X</x>, p X</p>
+X<regex, preserve> X<regexp, preserve>, g and c X</g> X</c>
+
 =item Regular Expressions
 
 [1], [2], [3], cntrl X<cntrl>, graph X<graph>, print X<print>, punct
@@ -2839,18 +2885,34 @@ X<punct>, xdigit X<xdigit>
 
 =item Extended Patterns
 
-C<(?#text)> X<(?#)>, C<(?imsx-imsx)> X<(?)>, C<(?:pattern)> X<(?:)>,
-C<(?imsx-imsx:pattern)>, C<(?=pattern)> X<(?=)> X<look-ahead, positive>
-X<lookahead, positive>, C<(?!pattern)> X<(?!)> X<look-ahead, negative>
-X<lookahead, negative>, C<(?<=pattern)> X<(?<=)> X<look-behind, positive>
-X<lookbehind, positive>, C<(?<!pattern)> X<(?<!)> X<look-behind, negative>
-X<lookbehind, negative>, C<(?{ code })> X<(?{})> X<regex, code in>
-X<regexp, code in> X<regular expression, code in>, C<(??{ code })>
-X<(??{})> X<regex, postponed> X<regexp, postponed> X<regular expression,
-postponed> X<regex, recursive> X<regexp, recursive> X<regular expression,
-recursive>, C<< (?>pattern) >> X<backtrack> X<backtracking>,
-C<(?(condition)yes-pattern|no-pattern)> X<(?()>,
-C<(?(condition)yes-pattern)>
+C<(?#text)> X<(?#)>, C<(?pimsx-imsx)> X<(?)>, C<(?:pattern)> X<(?:)>,
+C<(?imsx-imsx:pattern)>, C<(?|pattern)> X<(?|)> X<Branch reset>,
+Look-Around Assertions X<look-around assertion> X<lookaround assertion>
+X<look-around> X<lookaround>, C<(?=pattern)> X<(?=)> X<look-ahead,
+positive> X<lookahead, positive>, C<(?!pattern)> X<(?!)> X<look-ahead,
+negative> X<lookahead, negative>, C<(?<=pattern)> C<\K> X<(?<=)>
+X<look-behind, positive> X<lookbehind, positive> X<\K>, C<(?<!pattern)>
+X<(?<!)> X<look-behind, negative> X<lookbehind, negative>,
+C<(?'NAME'pattern)>, C<< (?<NAME>pattern) >> X<< (?<NAME>) >> X<(?'NAME')>
+X<named capture> X<capture>, C<< \k<NAME> >>, C<< \k'NAME' >>, C<(?{ code
+})> X<(?{})> X<regex, code in> X<regexp, code in> X<regular expression,
+code in>, C<(??{ code })> X<(??{})> X<regex, postponed> X<regexp,
+postponed> X<regular expression, postponed>, C<(?PARNO)> C<(?-PARNO)>
+C<(?+PARNO)> C<(?R)> C<(?0)> X<(?PARNO)> X<(?1)> X<(?R)> X<(?0)> X<(?-1)>
+X<(?+1)> X<(?-PARNO)> X<(?+PARNO)> X<regex, recursive> X<regexp, recursive>
+X<regular expression, recursive> X<regex, relative recursion>, C<(?&NAME)>
+X<(?&NAME)>, C<(?(condition)yes-pattern|no-pattern)> X<(?()>,
+C<(?(condition)yes-pattern)>, (1) (2) .., (<NAME>) ('NAME'), (?{ CODE }),
+(R), (R1) (R2) .., (R&NAME), (DEFINE), C<< (?>pattern) >> X<backtrack>
+X<backtracking> X<atomic> X<possessive>
+
+=item Special Backtracking Control Verbs
+
+Verbs that take an argument, C<(*PRUNE)> C<(*PRUNE:NAME)> X<(*PRUNE)>
+X<(*PRUNE:NAME)>, C<(*SKIP)> C<(*SKIP:NAME)> X<(*SKIP)>, C<(*MARK:NAME)>
+C<(*:NAME)> X<(*MARK)> C<(*MARK:NAME)> C<(*:NAME)>, C<(*THEN)>
+C<(*THEN:NAME)>, C<(*COMMIT)> X<(*COMMIT)>, Verbs without an argument,
+C<(*FAIL)> C<(*F)> X<(*FAIL)> X<(*F)>, C<(*ACCEPT)> X<(*ACCEPT)>
 
 =item Backtracking
 X<backtrack> X<backtracking>
@@ -2858,27 +2920,92 @@ X<backtrack> X<backtracking>
 =item Version 8 Regular Expressions
 X<regular expression, version 8> X<regex, version 8> X<regexp, version 8>
 
-=item Warning on \1 vs $1
+=item Warning on \1 Instead of $1
 
-=item Repeated patterns matching zero-length substring
+=item Repeated Patterns Matching a Zero-length Substring
 
-=item Combining pieces together
+=item Combining RE Pieces
 
 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
-C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
+C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>, C<(?PARNO)>,
 C<(?(condition)yes-pattern|no-pattern)>
 
-=item Creating custom RE engines
+=item Creating Custom RE Engines
 
 =back
 
+=item PCRE/Python Support
+
+C<< (?PE<lt>NAMEE<gt>pattern) >>, C<< (?P=NAME) >>, C<< (?P>NAME) >>
+
 =item BUGS
 
 =item SEE ALSO
 
 =back
 
+=head2 perlrebackslash - Perl Regular Expression Backslash Sequences and
+Escapes
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item The backslash
+
+[1]
+
+=item All the sequences and escapes
+
+=item Character Escapes
+
+[1], [2]
+
+=item Modifiers
+
+=item Character classes
+
+=item Referencing
+
+=item Assertions
+
+\A, \z, \Z, \G, \b, \B
+
+=item Misc
+
+\C, \K, \R, \X
+
+=back
+
+=back
+
+=head2 perlrecharclass - Perl Regular Expression Character Classes
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item The dot
+
+=item Backslashed sequences
+
+[1]
+
+=item Bracketed Character Classes
+
+cntrl, graph, print, punct
+
+=item Locale, Unicode and UTF-8
+
+=back
+
+=back
+
 =head2 perlreref - Perl Regular Expressions Reference
 
 =over 4
@@ -2941,9 +3068,6 @@ lexical> X<closure> X<lexical> X<lexical scope>, 5. X<constructor> X<new>,
 =item Using References
 X<reference, use> X<dereferencing> X<dereference>
 
-2. X<${}> X<@{}> X<%{}>, 3. X<autovivification> X<< -> >> X<arrow>, 4.
-X<encapsulation>
-
 =item Symbolic references
 X<reference, symbolic> X<reference, soft>
 X<symbolic reference> X<soft reference>
@@ -3174,7 +3298,7 @@ safe subprocesses, sockets, and semaphores)
 
 =item Deferred Signals (Safe Signals)
 
-Long running opcodes, Interrupting IO, Restartable system calls, Signals as
+Long-running opcodes, Interrupting IO, Restartable system calls, Signals as
 "faults", Signals triggered by operating system state
 
 =back
@@ -3304,14 +3428,12 @@ string
 
 =back
 
-=head2 perlthrtut - tutorial on threads in Perl
+=head2 perlthrtut - Tutorial on threads in Perl
 
 =over 4
 
 =item DESCRIPTION
 
-=item Status
-
 =item What Is A Thread Anyway?
 
 =item Threaded Program Models
@@ -3344,6 +3466,8 @@ string
 
 =item Ignoring A Thread
 
+=item Process and Thread Termination
+
 =back
 
 =item Threads And Data
@@ -3372,7 +3496,7 @@ string
 
 =item Advanced Semaphores
 
-=item cond_wait() and cond_signal()
+=item Waiting for a Condition
 
 =item Giving up control
 
@@ -3404,6 +3528,8 @@ string
 
 =item Conclusion
 
+=item SEE ALSO
+
 =item Bibliography
 
 =over 4
@@ -3699,6 +3825,12 @@ localization)
 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
 LC_NUMERIC, LC_TIME, LANG
 
+=over 4
+
+=item Examples
+
+=back
+
 =item NOTES
 
 =over 4
@@ -3850,6 +3982,75 @@ classes, Use of "Is" Prefix, Blocks
 
 =back
 
+=head2 perlunifaq - Perl Unicode FAQ
+
+=over 4
+
+=item Q and A
+
+=over 4
+
+=item perlunitut isn't really a Unicode tutorial, is it?
+
+=item What character encodings does Perl support?
+
+=item Which version of perl should I use?
+
+=item What about binary data, like images?
+
+=item When should I decode or encode?
+
+=item What if I don't decode?
+
+=item What if I don't encode?
+
+=item Is there a way to automatically decode or encode?
+
+=item What if I don't know which encoding was used?
+
+=item Can I use Unicode in my Perl sources?
+
+=item Data::Dumper doesn't restore the UTF8 flag; is it broken?
+
+=item Why do regex character classes sometimes match only in the ASCII
+range?
+
+=item Why do some characters not uppercase or lowercase correctly?
+
+=item How can I determine if a string is a text string or a binary string?
+
+=item How do I convert from encoding FOO to encoding BAR?
+
+=item What are C<decode_utf8> and C<encode_utf8>?
+
+=item What is a "wide character"?
+
+=back
+
+=item INTERNALS
+
+=over 4
+
+=item What is "the UTF8 flag"?
+
+=item What about the C<use bytes> pragma?
+
+=item What about the C<use encoding> pragma?
+
+=item What is the difference between C<:encoding> and C<:utf8>?
+
+=item What's the difference between C<UTF-8> and C<utf8>?
+
+=item I lost track; what encoding is the internal format really?
+
+=back
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=back
+
 =head2 perlunitut - Perl Unicode Tutorial
 
 =over 4
@@ -3864,12 +4065,12 @@ classes, Use of "Is" Prefix, Blocks
 
 =item I/O flow (the actual 5 minute tutorial)
 
-=item Q and A
-
 =back
 
 =item SUMMARY
 
+=item Q and A (or FAQ)
+
 =item ACKNOWLEDGEMENTS
 
 =item AUTHOR
@@ -4050,8 +4251,8 @@ X<package> X<namespace> X<variable, global> X<global variable> X<global>
 =item Symbol Tables
 X<symbol table> X<stash> X<%::> X<%main::> X<typeglob> X<glob> X<alias>
 
-=item BEGIN, CHECK, INIT and END
-X<BEGIN> X<CHECK> X<INIT> X<END>
+=item BEGIN, UNITCHECK, CHECK, INIT and END
+X<BEGIN> X<UNITCHECK> X<CHECK> X<INIT> X<END>
 
 =item Perl Classes
 X<class> X<@ISA>
@@ -4080,34 +4281,35 @@ X<CLONE> X<CLONE_SKIP> X<thread> X<threads> X<ithread>
 
 =item Pragmatic Modules
 
-assertions, assertions::activate, assertions::compat, attributes, attrs,
-autouse, base, bigint, bignum, bigrat, blib, bytes, charnames, constant,
-diagnostics, encoding, encoding::warnings, feature, fields, filetest, if,
-integer, less, lib, locale, open, ops, overload, re, sigtrap, sort, strict,
-subs, threads, threads::shared, utf8, vars, version, vmsish, warnings,
-warnings::register
+attributes, attrs, autouse, base, bigint, bignum, bigrat, blib, bytes,
+charnames, constant, diagnostics, encoding, encoding::warnings, feature,
+fields, filetest, if, integer, less, lib, locale, mro, open, ops, overload,
+re, sigtrap, sort, strict, subs, threads, threads::shared, utf8, vars,
+version, vmsish, warnings, warnings::register
 
 =item Standard Modules
 
-AnyDBM_File, Archive::Tar, Archive::Tar::File, Attribute::Handlers,
-AutoLoader, AutoSplit, B, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode,
-B::C, B::CC, B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint,
-B::Showlex, B::Stackobj, B::Stash, B::Terse, B::Xref, Benchmark,
-ByteLoader, CGI, CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast,
-CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util, CPAN, CPAN::FirstTime,
-CPAN::Nox, CPAN::Version, Carp, Carp::Heavy, Class::ISA, Class::Struct,
-Compress::Raw::Zlib, Compress::Zlib, Config, Cwd, DB, DBM_Filter,
-DBM_Filter::compress, DBM_Filter::encode, DBM_Filter::int32,
+AnyDBM_File, Archive::Extract, Archive::Tar, Archive::Tar::File,
+Attribute::Handlers, AutoLoader, AutoSplit, B, B::Concise, B::Debug,
+B::Deparse, B::Lint, B::Showlex, B::Terse, B::Xref, Benchmark, CGI,
+CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push,
+CGI::Switch, CGI::Util, CORE, CPAN, CPAN::API::HOWTO, CPAN::FirstTime,
+CPAN::Kwalify, CPAN::Nox, CPAN::Version, CPANPLUS, CPANPLUS::Dist::Base,
+CPANPLUS::Dist::Sample, CPANPLUS::Shell::Classic,
+CPANPLUS::Shell::Default::Plugins::HOWTO, Carp, Carp::Heavy, Class::ISA,
+Class::Struct, Compress::Raw::Zlib, Compress::Zlib, Config, Cwd, DB,
+DBM_Filter, DBM_Filter::compress, DBM_Filter::encode, DBM_Filter::int32,
 DBM_Filter::null, DBM_Filter::utf8, DB_File, Data::Dumper, Devel::DProf,
-Devel::Peek, Devel::SelfStubber, Digest, Digest::MD5, Digest::SHA,
-Digest::base, Digest::file, DirHandle, Dumpvalue, DynaLoader, Encode,
-Encode::Alias, Encode::Byte, Encode::CJKConstants, Encode::CN,
+Devel::InnerPackage, Devel::Peek, Devel::SelfStubber, Digest, Digest::MD5,
+Digest::SHA, Digest::base, Digest::file, DirHandle, Dumpvalue, DynaLoader,
+Encode, Encode::Alias, Encode::Byte, Encode::CJKConstants, Encode::CN,
 Encode::CN::HZ, Encode::Config, Encode::EBCDIC, Encode::Encoder,
-Encode::Encoding, Encode::Guess, Encode::JP, Encode::JP::H2Z,
-Encode::JP::JIS7, Encode::KR, Encode::KR::2022_KR, Encode::MIME::Header,
-Encode::PerlIO, Encode::Supported, Encode::Symbol, Encode::TW,
-Encode::Unicode, Encode::Unicode::UTF7, English, Env, Errno, Exporter,
-Exporter::Heavy, ExtUtils::CBuilder, ExtUtils::CBuilder::Platform::Windows,
+Encode::Encoding, Encode::GSM0338, Encode::Guess, Encode::JP,
+Encode::JP::H2Z, Encode::JP::JIS7, Encode::KR, Encode::KR::2022_KR,
+Encode::MIME::Header, Encode::MIME::Name, Encode::PerlIO,
+Encode::Supported, Encode::Symbol, Encode::TW, Encode::Unicode,
+Encode::Unicode::UTF7, English, Env, Errno, Exporter, Exporter::Heavy,
+ExtUtils::CBuilder, ExtUtils::CBuilder::Platform::Windows,
 ExtUtils::Command, ExtUtils::Command::MM, ExtUtils::Constant,
 ExtUtils::Constant::Base, ExtUtils::Constant::Utils,
 ExtUtils::Constant::XS, ExtUtils::Embed, ExtUtils::Install,
@@ -4121,8 +4323,8 @@ ExtUtils::MakeMaker::Tutorial, ExtUtils::MakeMaker::bytes,
 ExtUtils::MakeMaker::vmsish, ExtUtils::Manifest, ExtUtils::Mkbootstrap,
 ExtUtils::Mksymlists, ExtUtils::Packlist, ExtUtils::ParseXS,
 ExtUtils::testlib, Fatal, Fcntl, File::Basename, File::CheckTree,
-File::Compare, File::Copy, File::DosGlob, File::Find, File::Glob,
-File::GlobMapper, File::Path, File::Spec, File::Spec::Cygwin,
+File::Compare, File::Copy, File::DosGlob, File::Fetch, File::Find,
+File::Glob, File::GlobMapper, File::Path, File::Spec, File::Spec::Cygwin,
 File::Spec::Epoc, File::Spec::Functions, File::Spec::Mac, File::Spec::OS2,
 File::Spec::Unix, File::Spec::VMS, File::Spec::Win32, File::Temp,
 File::stat, FileCache, FileHandle, Filter::Simple, Filter::Util::Call,
@@ -4135,11 +4337,13 @@ IO::Pipe, IO::Poll, IO::Seekable, IO::Select, IO::Socket, IO::Socket::INET,
 IO::Socket::UNIX, IO::Uncompress::AnyInflate,
 IO::Uncompress::AnyUncompress, IO::Uncompress::Base,
 IO::Uncompress::Gunzip, IO::Uncompress::Inflate,
-IO::Uncompress::RawInflate, IO::Uncompress::Unzip, IO::Zlib, IPC::Open2,
-IPC::Open3, IPC::SysV, IPC::SysV::Msg, IPC::SysV::Semaphore, List::Util,
-Locale::Constants, Locale::Country, Locale::Currency, Locale::Language,
-Locale::Maketext, Locale::Maketext::TPJ13, Locale::Script, MIME::Base64,
-MIME::Base64::QuotedPrint, Math::BigFloat, Math::BigInt,
+IO::Uncompress::RawInflate, IO::Uncompress::Unzip, IO::Zlib, IPC::Cmd,
+IPC::Open2, IPC::Open3, IPC::SysV, IPC::SysV::Msg, IPC::SysV::Semaphore,
+List::Util, Locale::Constants, Locale::Country, Locale::Currency,
+Locale::Language, Locale::Maketext, Locale::Maketext::Simple,
+Locale::Maketext::TPJ13, Locale::Script, Log::Message,
+Log::Message::Config, Log::Message::Handlers, Log::Message::Item,
+MIME::Base64, MIME::QuotedPrint, Math::BigFloat, Math::BigInt,
 Math::BigInt::Calc, Math::BigInt::CalcEmu, Math::BigInt::FastCalc,
 Math::BigRat, Math::Complex, Math::Trig, Memoize, Memoize::AnyDBM_File,
 Memoize::Expire, Memoize::ExpireFile, Memoize::ExpireTest,
@@ -4154,11 +4358,13 @@ Module::Build::Platform::Unix, Module::Build::Platform::VMS,
 Module::Build::Platform::VOS, Module::Build::Platform::Windows,
 Module::Build::Platform::aix, Module::Build::Platform::cygwin,
 Module::Build::Platform::darwin, Module::Build::Platform::os2,
-Module::Build::YAML, Module::CoreList, Module::Load, Module::Loaded,
-NDBM_File, NEXT, Net::Cmd, Net::Config, Net::Domain, Net::FTP, Net::NNTP,
-Net::Netrc, Net::POP3, Net::Ping, Net::SMTP, Net::Time, Net::hostent,
-Net::libnetFAQ, Net::netent, Net::protoent, Net::servent, O, ODBM_File,
-Opcode, POSIX, Package::Constants, PerlIO, PerlIO::encoding,
+Module::Build::YAML, Module::CoreList, Module::Load,
+Module::Load::Conditional, Module::Loaded, Module::Pluggable,
+Module::Pluggable::Object, NDBM_File, NEXT, Net::Cmd, Net::Config,
+Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3, Net::Ping,
+Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
+Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX,
+Package::Constants, Params::Check, PerlIO, PerlIO::encoding,
 PerlIO::scalar, PerlIO::via, PerlIO::via::QuotedPrint, Pod::Checker,
 Pod::Escapes, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
 Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils, Pod::Parser,
@@ -4176,18 +4382,20 @@ Pod::Simple::TextContent, Pod::Simple::XMLOutStream, Pod::Text,
 Pod::Text::Color, Pod::Text::Overstrike, Pod::Text::Termcap, Pod::Usage,
 SDBM_File, Safe, Scalar::Util, Search::Dict, SelectSaver, SelfLoader,
 Shell, Socket, Storable, Switch, Symbol, Sys::Hostname, Sys::Syslog,
-Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine, Test,
-Test::Builder, Test::Builder::Module, Test::Builder::Tester,
-Test::Builder::Tester::Color, Test::Harness, Test::Harness::Assert,
-Test::Harness::Iterator, Test::Harness::Point, Test::Harness::Straps,
-Test::Harness::TAP, Test::Harness::Util, Test::More, Test::Simple,
-Test::Tutorial, Text::Abbrev, Text::Balanced, Text::ParseWords,
-Text::Soundex, Text::Tabs, Text::Wrap, Thread, Thread::Queue,
-Thread::Semaphore, Thread::Signal, Thread::Specific, Tie::Array, Tie::File,
-Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash, Tie::Scalar,
-Tie::SubstrHash, Time::HiRes, Time::Local, Time::gmtime, Time::localtime,
-Time::tm, UNIVERSAL, Unicode::Collate, Unicode::Normalize, Unicode::UCD,
-User::grent, User::pwent, XS::APItest, XS::Typemap, XSLoader
+Sys::Syslog::win32::Win32, Term::ANSIColor, Term::Cap, Term::Complete,
+Term::ReadLine, Term::UI, Test, Test::Builder, Test::Builder::Module,
+Test::Builder::Tester, Test::Builder::Tester::Color, Test::Harness,
+Test::Harness::Assert, Test::Harness::Iterator, Test::Harness::Point,
+Test::Harness::Results, Test::Harness::Straps, Test::Harness::TAP,
+Test::Harness::Util, Test::More, Test::Simple, Test::Tutorial,
+Text::Abbrev, Text::Balanced, Text::ParseWords, Text::Soundex, Text::Tabs,
+Text::Wrap, Thread, Thread::Queue, Thread::Semaphore, Tie::Array,
+Tie::File, Tie::Handle, Tie::Hash, Tie::Hash::NamedCapture, Tie::Memoize,
+Tie::RefHash, Tie::Scalar, Tie::SubstrHash, Time::HiRes, Time::Local,
+Time::Piece, Time::Piece::Seconds, Time::gmtime, Time::localtime, Time::tm,
+UNIVERSAL, Unicode::Collate, Unicode::Normalize, Unicode::UCD, User::grent,
+User::pwent, Win32, Win32API::File, Win32CORE, XS::APItest, XS::Typemap,
+XSLoader
 
 =item Extension Modules
 
@@ -4459,8 +4667,8 @@ L<config_data|config_data>, L<libnetcfg|libnetcfg>, L<perlivp>
 =item Development
 
 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
-L<h2xs|h2xs>, L<enc2xs>, L<xsubpp>, L<dprofpp|dprofpp>, L<perlcc|perlcc>,
-L<prove>, L<corelist>
+L<h2xs|h2xs>, L<enc2xs>, L<xsubpp>, L<dprofpp|dprofpp>, L<prove>,
+L<corelist>
 
 =item General tools
 
@@ -4468,7 +4676,7 @@ L<piconv>, L<ptar>, L<ptardiff>, L<shasum>
 
 =item Installation
 
-L<cpan>, L<instmodsh>
+L<cpan>, L<cpanp>, L<cpan2dist>, L<instmodsh>
 
 =back
 
@@ -4486,7 +4694,7 @@ L<cpan>, L<instmodsh>
 
 =item Layout
 
-B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
+B::Lint, B::Deparse, B::Xref
 
 =back
 
@@ -4502,19 +4710,12 @@ i, &, s, r
 
 =item The Lint Back End
 
-=item The Simple C Back End
-
-=item The Bytecode Back End
-
-=item The Optimized C Back End
-
 =back
 
 =item Module List for the Compiler Suite
 
-B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
-B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex,
-B::Stackobj, B::Stash, B::Terse, B::Xref
+B, O, B::Concise, B::Debug, B::Deparse, B::Lint, B::Showlex, B::Terse,
+B::Xref
 
 =item KNOWN PROBLEMS
 
@@ -4597,9 +4798,10 @@ currently selected output channel, CV
 =item D
 
 dangling statement, data structure, data type, datagram, DBM, declaration,
-decrement, default, defined, delimiter, dereference, derived class,
-descriptor, destroy, destructor, device, directive, directory, directory
-handle, dispatch, distribution, dweomer, dwimmer, dynamic scoping
+decrement, default, defined, delimiter, deprecated modules and features,
+dereference, derived class, descriptor, destroy, destructor, device,
+directive, directory, directory handle, dispatch, distribution, (to be)
+dropped modules, dweomer, dwimmer, dynamic scoping
 
 =item E
 
@@ -5040,6 +5242,8 @@ MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT,
 aMY_CXT/pMY_CXT, MY_CXT_CLONE, MY_CXT_INIT_INTERP(my_perl),
 dMY_CXT_INTERP(my_perl)
 
+=item Thread-aware system interfaces
+
 =back
 
 =item EXAMPLES
@@ -5337,6 +5541,91 @@ callback
 
 =back
 
+=head2 perlreapi - perl regular expression plugin interface
+
+=over 4
+
+=item DESCRIPTION
+
+=item Callbacks
+
+=over 4
+
+=item comp
+
+C</m> - RXf_PMf_MULTILINE, C</s> - RXf_PMf_SINGLELINE, C</i> -
+RXf_PMf_FOLD, C</x> - RXf_PMf_EXTENDED, C</p> - RXf_PMf_KEEPCOPY,
+RXf_PMf_LOCALE, RXf_UTF8, RXf_SPLIT, RXf_SKIPWHITE, RXf_START_ONLY,
+RXf_WHITE, RXf_NULL
+
+=item exec
+
+=item intuit
+
+=item checkstr
+
+=item free
+
+=item Numbered capture callbacks
+
+=item Named capture callbacks
+
+=item qr_package
+
+=item dupe
+
+=back
+
+=item The REGEXP structure
+
+=over 4
+
+=item C<engine>
+
+=item C<mother_re>
+
+=item C<extflags>
+
+=item C<minlen> C<minlenret>
+
+=item C<gofs>
+
+=item C<substrs>
+
+=item C<nparens>, C<lasparen>, and C<lastcloseparen>
+
+=item C<intflags>
+
+=item C<pprivate>
+
+=item C<swap>
+
+=item C<offs>
+
+=item C<precomp> C<prelen>
+
+=item C<paren_names>
+
+=item C<substrs>
+
+=item C<subbeg> C<sublen> C<saved_copy>
+
+=item C<wrapped> C<wraplen>
+
+=item C<seen_evals>
+
+=item C<refcnt>
+
+=back
+
+=item HISTORY
+
+=item AUTHORS
+
+=item LICENSE
+
+=back
+
 =head2 perlreguts - Description of the Perl regular expression engine.
 
 =over 4
@@ -5381,11 +5670,9 @@ requirements, start class, Beginning/End of line positions
 
 =item Unicode and Localisation Support
 
-=item Base Struct
-
--, -, -, -
+=item Base Structures
 
-=item De-allocation and Cloning
+C<swap>, C<offsets>, C<regstclass>, C<data>, C<program>
 
 =back
 
@@ -5414,7 +5701,9 @@ G_VOID X<G_VOID>
 
 =item Array Manipulation Functions
 
-AvFILL X<AvFILL>, av_clear X<av_clear>, av_delete X<av_delete>, av_exists
+AvFILL X<AvFILL>, av_clear X<av_clear>, av_create_and_push
+X<av_create_and_push>, av_create_and_unshift_one
+X<av_create_and_unshift_one>, av_delete X<av_delete>, av_exists
 X<av_exists>, av_extend X<av_extend>, av_fetch X<av_fetch>, av_fill
 X<av_fill>, av_len X<av_len>, av_make X<av_make>, av_pop X<av_pop>, av_push
 X<av_push>, av_shift X<av_shift>, av_store X<av_store>, av_undef
@@ -5439,7 +5728,7 @@ perl_clone X<perl_clone>
 
 =item CV Manipulation Functions
 
-CvSTASH X<CvSTASH>, get_cv X<get_cv>
+CvSTASH X<CvSTASH>, get_cv X<get_cv>, get_cvn_flags X<get_cvn_flags>
 
 =item Embedding Functions
 
@@ -5464,14 +5753,13 @@ X<sv_pvn>, sv_pvutf8 X<sv_pvutf8>, sv_pvutf8n X<sv_pvutf8n>, sv_taint
 X<sv_taint>, sv_unref X<sv_unref>, sv_usepvn X<sv_usepvn>, sv_usepvn_mg
 X<sv_usepvn_mg>, sv_uv X<sv_uv>, unpack_str X<unpack_str>
 
-=item Functions in file pp_pack.c
+=item Functions in file pp_ctl.c
 
-packlist X<packlist>, unpackstring X<unpackstring>
+find_runcv X<find_runcv>
 
-=item Global Variables
+=item Functions in file pp_pack.c
 
-PL_modglobal X<PL_modglobal>, PL_na X<PL_na>, PL_sv_no X<PL_sv_no>,
-PL_sv_undef X<PL_sv_undef>, PL_sv_yes X<PL_sv_yes>
+packlist X<packlist>, unpackstring X<unpackstring>
 
 =item GV Functions
 
@@ -5517,8 +5805,9 @@ Copy X<Copy>, CopyD X<CopyD>, Move X<Move>, MoveD X<MoveD>, Newx X<Newx>,
 Newxc X<Newxc>, Newxz X<Newxz>, Poison X<Poison>, PoisonFree X<PoisonFree>,
 PoisonNew X<PoisonNew>, PoisonWith X<PoisonWith>, Renew X<Renew>, Renewc
 X<Renewc>, Safefree X<Safefree>, savepv X<savepv>, savepvn X<savepvn>,
-savepvs X<savepvs>, savesharedpv X<savesharedpv>, savesvpv X<savesvpv>,
-StructCopy X<StructCopy>, Zero X<Zero>, ZeroD X<ZeroD>
+savepvs X<savepvs>, savesharedpv X<savesharedpv>, savesharedpvn
+X<savesharedpvn>, savesvpv X<savesvpv>, StructCopy X<StructCopy>, Zero
+X<Zero>, ZeroD X<ZeroD>
 
 =item Miscellaneous Functions
 
@@ -5527,9 +5816,14 @@ X<getcwd_sv>, my_snprintf X<my_snprintf>, my_sprintf X<my_sprintf>,
 my_vsnprintf X<my_vsnprintf>, new_version X<new_version>, scan_version
 X<scan_version>, strEQ X<strEQ>, strGE X<strGE>, strGT X<strGT>, strLE
 X<strLE>, strLT X<strLT>, strNE X<strNE>, strnEQ X<strnEQ>, strnNE
-X<strnNE>, sv_nosharing X<sv_nosharing>, upg_version X<upg_version>, vcmp
-X<vcmp>, vnormal X<vnormal>, vnumify X<vnumify>, vstringify X<vstringify>,
-vverify X<vverify>
+X<strnNE>, sv_destroyable X<sv_destroyable>, sv_nosharing X<sv_nosharing>,
+upg_version X<upg_version>, vcmp X<vcmp>, vnormal X<vnormal>, vnumify
+X<vnumify>, vstringify X<vstringify>, vverify X<vverify>
+
+=item MRO Functions
+
+mro_get_linear_isa X<mro_get_linear_isa>, mro_method_changed_in
+X<mro_method_changed_in>
 
 =item Multicall Functions
 
@@ -5539,8 +5833,9 @@ X<POP_MULTICALL>, PUSH_MULTICALL X<PUSH_MULTICALL>
 =item Numeric functions
 
 grok_bin X<grok_bin>, grok_hex X<grok_hex>, grok_number X<grok_number>,
-grok_numeric_radix X<grok_numeric_radix>, grok_oct X<grok_oct>, scan_bin
-X<scan_bin>, scan_hex X<scan_hex>, scan_oct X<scan_oct>
+grok_numeric_radix X<grok_numeric_radix>, grok_oct X<grok_oct>,
+Perl_signbit X<Perl_signbit>, scan_bin X<scan_bin>, scan_hex X<scan_hex>,
+scan_oct X<scan_oct>
 
 =item Optree Manipulation Functions
 
@@ -5550,6 +5845,15 @@ cv_const_sv X<cv_const_sv>, newCONSTSUB X<newCONSTSUB>, newXS X<newXS>
 
 pad_sv X<pad_sv>
 
+=item Per-Interpreter Variables
+
+PL_modglobal X<PL_modglobal>, PL_na X<PL_na>, PL_sv_no X<PL_sv_no>,
+PL_sv_undef X<PL_sv_undef>, PL_sv_yes X<PL_sv_yes>
+
+=item REGEXP Functions
+
+SvRX X<SvRX>, SvRXOK X<SvRXOK>
+
 =item Simple Exception Handling Macros
 
 dXCPT X<dXCPT>, XCPT_CATCH X<XCPT_CATCH>, XCPT_RETHROW X<XCPT_RETHROW>,
@@ -5628,27 +5932,28 @@ X<newSV>, newSVhek X<newSVhek>, newSViv X<newSViv>, newSVnv X<newSVnv>,
 newSVpv X<newSVpv>, newSVpvf X<newSVpvf>, newSVpvn X<newSVpvn>,
 newSVpvn_share X<newSVpvn_share>, newSVpvs X<newSVpvs>, newSVpvs_share
 X<newSVpvs_share>, newSVrv X<newSVrv>, newSVsv X<newSVsv>, newSVuv
-X<newSVuv>, sv_2bool X<sv_2bool>, sv_2cv X<sv_2cv>, sv_2io X<sv_2io>,
-sv_2iv_flags X<sv_2iv_flags>, sv_2mortal X<sv_2mortal>, sv_2nv X<sv_2nv>,
-sv_2pvbyte X<sv_2pvbyte>, sv_2pvutf8 X<sv_2pvutf8>, sv_2pv_flags
-X<sv_2pv_flags>, sv_2uv_flags X<sv_2uv_flags>, sv_backoff X<sv_backoff>,
-sv_bless X<sv_bless>, sv_catpv X<sv_catpv>, sv_catpvf X<sv_catpvf>,
-sv_catpvf_mg X<sv_catpvf_mg>, sv_catpvn X<sv_catpvn>, sv_catpvn_flags
-X<sv_catpvn_flags>, sv_catpvs X<sv_catpvs>, sv_catpv_mg X<sv_catpv_mg>,
-sv_catsv X<sv_catsv>, sv_catsv_flags X<sv_catsv_flags>, sv_chop X<sv_chop>,
-sv_clear X<sv_clear>, sv_cmp X<sv_cmp>, sv_cmp_locale X<sv_cmp_locale>,
-sv_collxfrm X<sv_collxfrm>, sv_copypv X<sv_copypv>, sv_dec X<sv_dec>, sv_eq
-X<sv_eq>, sv_force_normal_flags X<sv_force_normal_flags>, sv_free
-X<sv_free>, sv_gets X<sv_gets>, sv_grow X<sv_grow>, sv_inc X<sv_inc>,
-sv_insert X<sv_insert>, sv_isa X<sv_isa>, sv_isobject X<sv_isobject>,
-sv_len X<sv_len>, sv_len_utf8 X<sv_len_utf8>, sv_magic X<sv_magic>,
-sv_magicext X<sv_magicext>, sv_mortalcopy X<sv_mortalcopy>, sv_newmortal
-X<sv_newmortal>, sv_newref X<sv_newref>, sv_pos_b2u X<sv_pos_b2u>,
-sv_pos_u2b X<sv_pos_u2b>, sv_pvbyten_force X<sv_pvbyten_force>,
-sv_pvn_force X<sv_pvn_force>, sv_pvn_force_flags X<sv_pvn_force_flags>,
-sv_pvutf8n_force X<sv_pvutf8n_force>, sv_reftype X<sv_reftype>, sv_replace
-X<sv_replace>, sv_reset X<sv_reset>, sv_rvweaken X<sv_rvweaken>, sv_setiv
-X<sv_setiv>, sv_setiv_mg X<sv_setiv_mg>, sv_setnv X<sv_setnv>, sv_setnv_mg
+X<newSVuv>, newSV_type X<newSV_type>, sv_2bool X<sv_2bool>, sv_2cv
+X<sv_2cv>, sv_2io X<sv_2io>, sv_2iv_flags X<sv_2iv_flags>, sv_2mortal
+X<sv_2mortal>, sv_2nv X<sv_2nv>, sv_2pvbyte X<sv_2pvbyte>, sv_2pvutf8
+X<sv_2pvutf8>, sv_2pv_flags X<sv_2pv_flags>, sv_2uv_flags X<sv_2uv_flags>,
+sv_backoff X<sv_backoff>, sv_bless X<sv_bless>, sv_catpv X<sv_catpv>,
+sv_catpvf X<sv_catpvf>, sv_catpvf_mg X<sv_catpvf_mg>, sv_catpvn
+X<sv_catpvn>, sv_catpvn_flags X<sv_catpvn_flags>, sv_catpvs X<sv_catpvs>,
+sv_catpv_mg X<sv_catpv_mg>, sv_catsv X<sv_catsv>, sv_catsv_flags
+X<sv_catsv_flags>, sv_chop X<sv_chop>, sv_clear X<sv_clear>, sv_cmp
+X<sv_cmp>, sv_cmp_locale X<sv_cmp_locale>, sv_collxfrm X<sv_collxfrm>,
+sv_copypv X<sv_copypv>, sv_dec X<sv_dec>, sv_eq X<sv_eq>,
+sv_force_normal_flags X<sv_force_normal_flags>, sv_free X<sv_free>, sv_gets
+X<sv_gets>, sv_grow X<sv_grow>, sv_inc X<sv_inc>, sv_insert X<sv_insert>,
+sv_isa X<sv_isa>, sv_isobject X<sv_isobject>, sv_len X<sv_len>, sv_len_utf8
+X<sv_len_utf8>, sv_magic X<sv_magic>, sv_magicext X<sv_magicext>,
+sv_mortalcopy X<sv_mortalcopy>, sv_newmortal X<sv_newmortal>, sv_newref
+X<sv_newref>, sv_pos_b2u X<sv_pos_b2u>, sv_pos_u2b X<sv_pos_u2b>,
+sv_pvbyten_force X<sv_pvbyten_force>, sv_pvn_force X<sv_pvn_force>,
+sv_pvn_force_flags X<sv_pvn_force_flags>, sv_pvutf8n_force
+X<sv_pvutf8n_force>, sv_reftype X<sv_reftype>, sv_replace X<sv_replace>,
+sv_reset X<sv_reset>, sv_rvweaken X<sv_rvweaken>, sv_setiv X<sv_setiv>,
+sv_setiv_mg X<sv_setiv_mg>, sv_setnv X<sv_setnv>, sv_setnv_mg
 X<sv_setnv_mg>, sv_setpv X<sv_setpv>, sv_setpvf X<sv_setpvf>, sv_setpvf_mg
 X<sv_setpvf_mg>, sv_setpviv X<sv_setpviv>, sv_setpviv_mg X<sv_setpviv_mg>,
 sv_setpvn X<sv_setpvn>, sv_setpvn_mg X<sv_setpvn_mg>, sv_setpvs
@@ -5726,16 +6031,6 @@ PAD_SET_CUR X<PAD_SET_CUR>, PAD_SET_CUR_NOSAVE X<PAD_SET_CUR_NOSAVE>,
 PAD_SV X<PAD_SV>, PAD_SVl X<PAD_SVl>, SAVECLEARSV X<SAVECLEARSV>,
 SAVECOMPPAD X<SAVECOMPPAD>, SAVEPADSV X<SAVEPADSV>
 
-=item Functions in file pp_ctl.c
-
-find_runcv X<find_runcv>
-
-=item Global Variables
-
-PL_DBsingle X<PL_DBsingle>, PL_DBsub X<PL_DBsub>, PL_DBtrace X<PL_DBtrace>,
-PL_dowarn X<PL_dowarn>, PL_last_in_gv X<PL_last_in_gv>, PL_ofs_sv
-X<PL_ofs_sv>, PL_rs X<PL_rs>
-
 =item GV Functions
 
 is_gv_magical X<is_gv_magical>, is_gv_magical_sv X<is_gv_magical_sv>
@@ -5753,6 +6048,11 @@ start_glob X<start_glob>
 
 magic_sethint X<magic_sethint>, mg_localize X<mg_localize>
 
+=item MRO Functions
+
+mro_get_linear_isa_c3 X<mro_get_linear_isa_c3>, mro_get_linear_isa_dfs
+X<mro_get_linear_isa_dfs>, mro_isa_changed_in X<mro_isa_changed_in>
+
 =item Pad Data Structures
 
 CvPADLIST X<CvPADLIST>, cv_clone X<cv_clone>, cv_dump X<cv_dump>,
@@ -5765,6 +6065,12 @@ pad_new X<pad_new>, pad_push X<pad_push>, pad_reset X<pad_reset>, pad_setsv
 X<pad_setsv>, pad_swipe X<pad_swipe>, pad_tidy X<pad_tidy>, pad_undef
 X<pad_undef>
 
+=item Per-Interpreter Variables
+
+PL_DBsingle X<PL_DBsingle>, PL_DBsub X<PL_DBsub>, PL_DBtrace X<PL_DBtrace>,
+PL_dowarn X<PL_dowarn>, PL_last_in_gv X<PL_last_in_gv>, PL_ofs_sv
+X<PL_ofs_sv>, PL_rs X<PL_rs>
+
 =item Stack Manipulation Macros
 
 djSP X<djSP>, LVRET X<LVRET>
@@ -5774,6 +6080,10 @@ djSP X<djSP>, LVRET X<LVRET>
 sv_add_arena X<sv_add_arena>, sv_clean_all X<sv_clean_all>, sv_clean_objs
 X<sv_clean_objs>, sv_free_arenas X<sv_free_arenas>
 
+=item SV-Body Allocation
+
+sv_2num X<sv_2num>
+
 =item Unicode Support
 
 find_uninit_var X<find_uninit_var>, report_uninit X<report_uninit>
@@ -5982,9 +6292,9 @@ finish, 'enter', print
 
 =item Writing a test
 
-F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
-F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base t/comp,
-t/cmd t/run t/io t/op, t/lib ext lib
+F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/mro/>,
+F<t/op/>, F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base
+t/comp, t/cmd t/run t/io t/op, t/lib ext lib
 
 =item Special Make Test Targets
 
@@ -5996,7 +6306,8 @@ check.utf8, minitest.utf16 test.utf16, test_harness, test-notty test_notty
 =item Running tests by hand
 
 -v, -torture, -re=PATTERN, -re LIST OF PATTERNS, PERL_CORE=1,
-PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
+PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST, PERL_TEST_Net_Ping,
+PERL_TEST_NOVREXX, PERL_TEST_NUMCONVERTS
 
 =item Common problems when patching Perl source code
 
@@ -6004,6 +6315,8 @@ PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
 
 =item Portability problems
 
+=item Problematic System Interfaces
+
 =item Security problems
 
 =back
@@ -6063,29 +6376,61 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =back
 
-=head2 perltodo - Perl TO-DO List
+=head2 perlcommunity - a brief overview of the Perl community
 
 =over 4
 
 =item DESCRIPTION
 
-=item The roadmap to 5.10
-
 =over 4
 
-=item Needed for a 5.9.5 release
+=item Where to find the community
+
+=item Mailing lists and Newsgroups
+
+=item IRC
+
+=item Websites
+
+L<http://perl.com/>, L<http://use.perl.org/>, L<http://www.perlmonks.org/>
+
+=item User Groups
+
+=item Workshops
+
+=item Hackathons
+
+=item Conventions
+
+=item Calendar of Perl Events
 
-=item Needed for a 5.9.6 release
+=back
+
+=item AUTHOR
 
 =back
 
+=head2 perltodo - Perl TO-DO List
+
+=over 4
+
+=item DESCRIPTION
+
 =item Tasks that only need Perl knowledge
 
 =over 4
 
+=item Remove duplication of test setup.
+
+=item merge common code in installperl and installman
+
 =item common test code for timed bail out
 
-=item POD -> HTML conversion in the core still sucks
+=item POD -E<gt> HTML conversion in the core still sucks
+
+=item merge checkpods and podchecker
+
+=item perlmodlib.PL rewrite
 
 =item Parallel testing
 
@@ -6095,6 +6440,8 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =item test B
 
+=item Deparse inlined constants
+
 =item A decent benchmark
 
 =item fix tainting bugs
@@ -6107,6 +6454,8 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =item embed.pl/makedef.pl
 
+=item use strict; and AutoLoad
+
 =back
 
 =item Tasks that need a little sysadmin-type knowledge
@@ -6125,38 +6474,50 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =item Cross-compile support
 
+=item roffitall
+
 =back
 
 =item Tasks that need a little C knowledge
 
 =over 4
 
-=item Make it clear from -v if this is the exact official release
+=item Exterminate PL_na!
 
-=item Ordering of "global" variables.
+=item Modernize the order of directories in @INC
 
-=item Profile Perl - am I hot or not?
+=item -Duse32bit*
+
+=item Make it clear from -v if this is the exact official release
 
-=item Shrink struct context
+=item Profile Perl - am I hot or not?
 
 =item Allocate OPs from arenas
 
 =item Improve win32/wince.c
 
+=item Use secure CRT functions when building with VC8 on Win32
+
+=item strcat(), strcpy(), strncat(), strncpy(), sprintf(), vsprintf()
+
+=item -D_FORTIFY_SOURCE=2, -fstack-protector
+
 =back
 
 =item Tasks that need a knowledge of XS
 
 =over 4
 
-=item shrink C<PVBM>s
-
 =item autovivification
 
 =item Unicode in Filenames
 
 =item Unicode in %ENV
 
+=item Unicode and glob()
+
+=item Unicode and lc/uc operators
+
 =item use less 'memory'
 
 =item Re-implement C<:unique> in a way that is actually thread-safe
@@ -6165,7 +6526,18 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =item readpipe(LIST)
 
-=item strcat(), strcpy(), strncat(), strncpy(), sprintf(), vsprintf()
+=item Audit the code for destruction ordering assumptions
+
+=item Extend PerlIO and PerlIO::Scalar
+
+=item -C on the #! line
+
+=item Propagate const outwards from Perl_moreswitches()
+
+=item Duplicate logic in S_method_common() and
+Perl_gv_fetchmethod_autoload()
+
+=item Organize error messages
 
 =back
 
@@ -6173,21 +6545,31 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =over 4
 
+=item UTF-8 revamp
+
+=item Properly Unicode safe tokeniser and pads.
+
+=item state variable initialization in list context
+
+=item Implement $value ~~ 0 .. $range
+
+=item A does() built-in
+
+=item Tied filehandles and write() don't mix
+
 =item Attach/detach debugger from running program
 
+=item Optimize away empty destructors
+
 =item LVALUE functions for lists
 
 =item LVALUE functions in the debugger
 
-=item _ prototype character
-
 =item regexp optimiser optional
 
-=item UNITCHECK
-
 =item delete &function
 
-=item Make readpipe overridable
+=item C</w> regex modifier
 
 =item optional optimizer
 
@@ -6197,13 +6579,15 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =item entersub XS vs Perl
 
-=item Self ties
+=item Self-ties
 
 =item Optimize away @_
 
-=item What hooks would assertions need?
+=item The yada yada yada operators
 
-=item Properly Unicode safe tokeniser and pads.
+=item Virtualize operating system access
+
+=item Investigate PADTMP hash pessimisation
 
 =back
 
@@ -6219,6 +6603,8 @@ I<The Road goes ever on and on, down from the door where it began.>
 
 =item A re-entrant regexp engine
 
+=item Add class set operations to regexp engine
+
 =back
 
 =back
@@ -6278,362 +6664,476 @@ B<-V>
 
 =back
 
-=head2 perldelta - what is new for perl v5.9.4
+=head2 perldelta, perl5100delta - what is new for perl 5.10.0
 
 =over 4
 
 =item DESCRIPTION
 
-=item Incompatible Changes
+=item Core Enhancements
 
 =over 4
 
-=item chdir FOO
+=item The C<feature> pragma
 
-=item Handling of pmc files
+=item New B<-E> command-line switch
 
-=item @- and @+ in patterns
+=item Defined-or operator
 
-=item $AUTOLOAD can now be tainted
+=item Switch and Smart Match operator
 
-=back
+=item Regular expressions
 
-=item Core Enhancements
+Recursive Patterns, Named Capture Buffers, Possessive Quantifiers,
+Backtracking control verbs, Relative backreferences, C<\K> escape, Vertical
+and horizontal whitespace, and linebreak
 
-=over 4
+=item C<say()>
+
+=item Lexical C<$_>
+
+=item The C<_> prototype
+
+=item UNITCHECK blocks
+
+=item New Pragma, C<mro>
+
+=item readdir() may return a "short filename" on Windows
+
+=item readpipe() is now overridable
+
+=item Default argument for readline()
 
 =item state() variables
 
+=item Stacked filetest operators
+
 =item UNIVERSAL::DOES()
 
-=item Exceptions in constant folding
+=item Formats
 
-=item Source filters in @INC
+=item Byte-order modifiers for pack() and unpack()
 
-=item MAD
+=item C<no VERSION>
 
-=back
+=item C<chdir>, C<chmod> and C<chown> on filehandles
 
-=item Modules and Pragmas
+=item OS groups
 
-=over 4
+=item Recursive sort subs
 
-=item New Core Modules
+=item Exceptions in constant folding
 
-=back
+=item Source filters in @INC
 
-=item Utility Changes
+=item New internal variables
 
-=over 4
+C<${^RE_DEBUG_FLAGS}>, C<${^CHILD_ERROR_NATIVE}>, C<${^RE_TRIE_MAXBUF}>,
+C<${^WIN32_SLOPPY_STAT}>
 
-=item config_data
+=item Miscellaneous
+
+=item UCD 5.0.0
+
+=item MAD
+
+=item kill() on Windows
 
 =back
 
-=item Documentation
+=item Incompatible Changes
 
 =over 4
 
-=item New manpage, perlpragma
+=item Packing and UTF-8 strings
 
-=item New manpage, perlreguts
+=item Byte/character count feature in unpack()
 
-=item New manpage, perlunitut
+=item The C<$*> and C<$#> variables have been removed
 
-=back
+=item substr() lvalues are no longer fixed-length
 
-=item Performance Enhancements
+=item Parsing of C<-f _>
 
-=over 4
+=item C<:unique>
 
-=item Memory optimisations
+=item Effect of pragmas in eval
 
-=item UTF-8 cache optimisation
+=item chdir FOO
 
-=item Regular expressions
+=item Handling of .pmc files
 
-Engine de-recursivised, Single char char-classes treated as literals, Trie
-optimisation of literal string alternations, Aho-Corasick start-point
-optimisation
+=item $^V is now a C<version> object instead of a v-string
 
-=item Sloppy stat on Windows
+=item @- and @+ in patterns
 
-=back
+=item $AUTOLOAD can now be tainted
 
-=item Installation and Configuration Improvements
+=item Tainting and printf
 
-=over 4
+=item undef and signal handlers
 
-=item Relocatable installations
+=item strictures and dereferencing in defined()
 
-=item Ports
+=item C<(?p{})> has been removed
 
-=item Compilation improvements
+=item Pseudo-hashes have been removed
 
-=item New probes
+=item Removal of the bytecode compiler and of perlcc
 
-=item Windows build improvements
+=item Removal of the JPL
 
-Building XS extensions, Support for 64-bit compiler
+=item Recursive inheritance detected earlier
 
 =back
 
-=item Selected Bug Fixes
+=item Modules and Pragmata
 
 =over 4
 
-=item PERL5SHELL and tainting
+=item Upgrading individual core modules
 
-=item Using *FILE{IO}
+=item Pragmata Changes
 
-=item Overloading and reblessing
+C<feature>, C<mro>, Scoping of the C<sort> pragma, Scoping of C<bignum>,
+C<bigint>, C<bigrat>, C<base>, C<strict> and C<warnings>, C<version>,
+C<warnings>, C<less>
 
-=item Overloading and UTF-8
+=item New modules
 
-=item eval memory leaks fixed
+=item Selected Changes to Core Modules
 
-=item Random device on Windows
+C<Attribute::Handlers>, C<B::Lint>, C<B>, C<Thread>
 
 =back
 
-=item New or Changed Diagnostics
+=item Utility Changes
 
-State variable %s will be reinitialized
+perl -d, ptar, ptardiff, shasum, corelist, h2ph and h2xs, perlivp,
+find2perl, config_data, cpanp, cpan2dist, pod2html
 
-=item Changed Internals
+=item New Documentation
 
-=item Known Problems
+=item Performance Enhancements
 
-=item Reporting Bugs
+=over 4
 
-=item SEE ALSO
+=item In-place sorting
 
-=back
+=item Lexical array access
 
-=head2 perl594delta, perldelta - what is new for perl v5.9.4
+=item XS-assisted SWASHGET
 
-=over 4
+=item Constant subroutines
 
-=item DESCRIPTION
+=item C<PERL_DONT_CREATE_GVSV>
 
-=item Incompatible Changes
+=item Weak references are cheaper
 
-=over 4
+=item sort() enhancements
 
-=item chdir FOO
+=item Memory optimisations
 
-=item Handling of pmc files
+=item UTF-8 cache optimisation
 
-=item @- and @+ in patterns
+=item Sloppy stat on Windows
 
-=item $AUTOLOAD can now be tainted
+=item Regular expressions optimisations
+
+Engine de-recursivised, Single char char-classes treated as literals, Trie
+optimisation of literal string alternations, Aho-Corasick start-point
+optimisation
 
 =back
 
-=item Core Enhancements
+=item Installation and Configuration Improvements
 
 =over 4
 
-=item state() variables
-
-=item UNIVERSAL::DOES()
-
-=item Exceptions in constant folding
+=item Configuration improvements
 
-=item Source filters in @INC
+C<-Dusesitecustomize>, Relocatable installations, strlcat() and strlcpy(),
+C<d_pseudofork> and C<d_printf_format_null>, Configure help
 
-=item MAD
+=item Compilation improvements
 
-=back
+Parallel build, Borland's compilers support, Static build on Windows,
+ppport.h files, C++ compatibility, Support for Microsoft 64-bit compiler,
+Visual C++, Win32 builds
 
-=item Modules and Pragmas
+=item Installation improvements
 
-=over 4
+Module auxiliary files
 
-=item New Core Modules
+=item New Or Improved Platforms
 
 =back
 
-=item Utility Changes
+=item Selected Bug Fixes
 
-=over 4
+strictures in regexp-eval blocks, Calling CORE::require(), Subscripts of
+slices, C<no warnings 'category'> works correctly with -w, threads
+improvements, chr() and negative values, PERL5SHELL and tainting, Using
+*FILE{IO}, Overloading and reblessing, Overloading and UTF-8, eval memory
+leaks fixed, Random device on Windows, PERLIO_DEBUG, PerlIO::scalar and
+read-only scalars, study() and UTF-8, Critical signals, @INC-hook fix,
+C<-t> switch fix, Duping UTF-8 filehandles, Localisation of hash elements
 
-=item config_data
+=item New or Changed Diagnostics
 
-=back
+Use of uninitialized value, Deprecated use of my() in false conditional,
+!=~ should be !~, Newline in left-justified string, Too late for "-T"
+option, "%s" variable %s masks earlier declaration,
+readdir()/closedir()/etc. attempted on invalid dirhandle, Opening
+dirhandle/filehandle %s also as a file/directory, Use of -P is deprecated,
+v-string in use/require is non-portable, perl -V
 
-=item Documentation
+=item Changed Internals
 
 =over 4
 
-=item New manpage, perlpragma
+=item Reordering of SVt_* constants
 
-=item New manpage, perlreguts
+=item Elimination of SVt_PVBM
 
-=item New manpage, perlunitut
+=item New type SVt_BIND
 
-=back
+=item Removal of CPP symbols
 
-=item Performance Enhancements
+=item Less space is used by ops
 
-=over 4
+=item New parser
 
-=item Memory optimisations
+=item Use of C<const>
 
-=item UTF-8 cache optimisation
+=item Mathoms
 
-=item Regular expressions
+=item C<AvFLAGS> has been removed
 
-Engine de-recursivised, Single char char-classes treated as literals, Trie
-optimisation of literal string alternations, Aho-Corasick start-point
-optimisation
+=item C<av_*> changes
 
-=item Sloppy stat on Windows
+=item $^H and %^H
+
+=item B:: modules inheritance changed
+
+=item Anonymous hash and array constructors
 
 =back
 
-=item Installation and Configuration Improvements
+=item Known Problems
 
 =over 4
 
-=item Relocatable installations
-
-=item Ports
+=item UTF-8 problems
 
-=item Compilation improvements
+=back
 
-=item New probes
+=item Platform Specific Problems
 
-=item Windows build improvements
+=item Reporting Bugs
 
-Building XS extensions, Support for 64-bit compiler
+=item SEE ALSO
 
 =back
 
-=item Selected Bug Fixes
+=head2 perl5110delta, perldelta - what is new for perl v5.11.0
 
 =over 4
 
-=item PERL5SHELL and tainting
+=item DESCRIPTION
 
-=item Using *FILE{IO}
+=item Incompatible Changes
 
-=item Overloading and reblessing
+=item Core Enhancements
 
-=item Overloading and UTF-8
+=item Modules and Pragmata
 
-=item eval memory leaks fixed
+=item Utility Changes
 
-=item Random device on Windows
+=item Documentation
 
-=back
+=item Performance Enhancements
 
-=item New or Changed Diagnostics
+=item Installation and Configuration Improvements
 
-State variable %s will be reinitialized
+=item Selected Bug Fixes
+
+=item New or Changed Diagnostics
 
 =item Changed Internals
 
 =item Known Problems
 
+=over 4
+
+=item Platform Specific Problems
+
+=back
+
 =item Reporting Bugs
 
 =item SEE ALSO
 
 =back
 
-=head2 perl593delta, perldelta - what is new for perl v5.9.3
+=head2 perl5100delta - what is new for perl 5.10.0
 
 =over 4
 
 =item DESCRIPTION
 
-=item Incompatible Changes
+=item Core Enhancements
 
 =over 4
 
-=item Parsing of C<-f _>
+=item The C<feature> pragma
 
-=item C<mkdir()>
+=item New B<-E> command-line switch
 
-=item Magic goto and eval
+=item Defined-or operator
 
-=item C<$#> has been removed
+=item Switch and Smart Match operator
 
-=item C<:unique>
+=item Regular expressions
 
-=item Scoping of the C<sort> pragma
+Recursive Patterns, Named Capture Buffers, Possessive Quantifiers,
+Backtracking control verbs, Relative backreferences, C<\K> escape, Vertical
+and horizontal whitespace, and linebreak
 
-=back
+=item C<say()>
 
-=item Core Enhancements
+=item Lexical C<$_>
 
-=over 4
+=item The C<_> prototype
 
-=item The C<feature> pragma
+=item UNITCHECK blocks
 
-=item Switch and Smart Match operator
+=item New Pragma, C<mro>
 
-=item C<say()>
+=item readdir() may return a "short filename" on Windows
 
-=item C<CLONE_SKIP()>
+=item readpipe() is now overridable
 
-=item C<${^CHILD_ERROR_NATIVE}>
+=item Default argument for readline()
 
-=item Assertions
+=item state() variables
 
-=item Unicode Character Database 4.1.0
+=item Stacked filetest operators
 
-=item C<no VERSION>
+=item UNIVERSAL::DOES()
 
-=item Recursive sort subs
+=item Formats
 
-=item Effect of pragmas in eval
+=item Byte-order modifiers for pack() and unpack()
 
-=item New B<-E> command-line switch
+=item C<no VERSION>
 
 =item C<chdir>, C<chmod> and C<chown> on filehandles
 
 =item OS groups
 
-=back
+=item Recursive sort subs
 
-=item Modules and Pragmata
+=item Exceptions in constant folding
 
-=over 4
+=item Source filters in @INC
 
-=item New Core Modules
+=item New internal variables
+
+C<${^RE_DEBUG_FLAGS}>, C<${^CHILD_ERROR_NATIVE}>, C<${^RE_TRIE_MAXBUF}>,
+C<${^WIN32_SLOPPY_STAT}>
+
+=item Miscellaneous
+
+=item UCD 5.0.0
+
+=item MAD
+
+=item kill() on Windows
 
 =back
 
-=item Utility Changes
+=item Incompatible Changes
 
 =over 4
 
-=item C<ptar>
+=item Packing and UTF-8 strings
 
-=item C<ptardiff>
+=item Byte/character count feature in unpack()
 
-=item C<shasum>
+=item The C<$*> and C<$#> variables have been removed
 
-=item C<h2xs> enhancements
+=item substr() lvalues are no longer fixed-length
 
-=item C<perlivp> enhancements
+=item Parsing of C<-f _>
+
+=item C<:unique>
+
+=item Effect of pragmas in eval
+
+=item chdir FOO
+
+=item Handling of .pmc files
+
+=item $^V is now a C<version> object instead of a v-string
+
+=item @- and @+ in patterns
+
+=item $AUTOLOAD can now be tainted
+
+=item Tainting and printf
+
+=item undef and signal handlers
+
+=item strictures and dereferencing in defined()
+
+=item C<(?p{})> has been removed
+
+=item Pseudo-hashes have been removed
+
+=item Removal of the bytecode compiler and of perlcc
+
+=item Removal of the JPL
+
+=item Recursive inheritance detected earlier
 
 =back
 
-=item Documentation
+=item Modules and Pragmata
 
 =over 4
 
-=item Perl Glossary
+=item Upgrading individual core modules
+
+=item Pragmata Changes
+
+C<feature>, C<mro>, Scoping of the C<sort> pragma, Scoping of C<bignum>,
+C<bigint>, C<bigrat>, C<base>, C<strict> and C<warnings>, C<version>,
+C<warnings>, C<less>
+
+=item New modules
+
+=item Selected Changes to Core Modules
+
+C<Attribute::Handlers>, C<B::Lint>, C<B>, C<Thread>
 
 =back
 
+=item Utility Changes
+
+perl -d, ptar, ptardiff, shasum, corelist, h2ph and h2xs, perlivp,
+find2perl, config_data, cpanp, cpan2dist, pod2html
+
+=item New Documentation
+
 =item Performance Enhancements
 
 =over 4
 
+=item In-place sorting
+
+=item Lexical array access
+
 =item XS-assisted SWASHGET
 
 =item Constant subroutines
@@ -6644,76 +7144,111 @@ State variable %s will be reinitialized
 
 =item sort() enhancements
 
+=item Memory optimisations
+
+=item UTF-8 cache optimisation
+
+=item Sloppy stat on Windows
+
+=item Regular expressions optimisations
+
+Engine de-recursivised, Single char char-classes treated as literals, Trie
+optimisation of literal string alternations, Aho-Corasick start-point
+optimisation
+
 =back
 
 =item Installation and Configuration Improvements
 
 =over 4
 
+=item Configuration improvements
+
+C<-Dusesitecustomize>, Relocatable installations, strlcat() and strlcpy(),
+C<d_pseudofork> and C<d_printf_format_null>, Configure help
+
 =item Compilation improvements
 
-=item New Or Improved Platforms
+Parallel build, Borland's compilers support, Static build on Windows,
+ppport.h files, C++ compatibility, Support for Microsoft 64-bit compiler,
+Visual C++, Win32 builds
 
-=item New probes
+=item Installation improvements
 
-=item Module auxiliary files
+Module auxiliary files
+
+=item New Or Improved Platforms
 
 =back
 
 =item Selected Bug Fixes
 
-=over 4
+strictures in regexp-eval blocks, Calling CORE::require(), Subscripts of
+slices, C<no warnings 'category'> works correctly with -w, threads
+improvements, chr() and negative values, PERL5SHELL and tainting, Using
+*FILE{IO}, Overloading and reblessing, Overloading and UTF-8, eval memory
+leaks fixed, Random device on Windows, PERLIO_DEBUG, PerlIO::scalar and
+read-only scalars, study() and UTF-8, Critical signals, @INC-hook fix,
+C<-t> switch fix, Duping UTF-8 filehandles, Localisation of hash elements
 
-=item C<defined $$x>
+=item New or Changed Diagnostics
 
-=item Calling CORE::require()
+Use of uninitialized value, Deprecated use of my() in false conditional,
+!=~ should be !~, Newline in left-justified string, Too late for "-T"
+option, "%s" variable %s masks earlier declaration,
+readdir()/closedir()/etc. attempted on invalid dirhandle, Opening
+dirhandle/filehandle %s also as a file/directory, Use of -P is deprecated,
+v-string in use/require is non-portable, perl -V
 
-=item Subscripts of slices
+=item Changed Internals
 
-=item Remove over-optimisation
+=over 4
 
-=item sprintf() fixes
+=item Reordering of SVt_* constants
 
-=item no warnings 'category' works correctly with -w
+=item Elimination of SVt_PVBM
 
-=item Smaller fixes
+=item New type SVt_BIND
 
-=item More Unicode Fixes
+=item Removal of CPP symbols
 
-=back
+=item Less space is used by ops
 
-=item New or Changed Diagnostics
+=item New parser
 
-=over 4
+=item Use of C<const>
 
-=item Attempt to set length of freed array
+=item Mathoms
 
-=item Non-string passed as bitmask
+=item C<AvFLAGS> has been removed
 
-=item Search pattern not terminated or ternary operator parsed as search
-pattern
+=item C<av_*> changes
 
-=item "%s" variable %s masks earlier declaration
+=item $^H and %^H
 
-=item readdir()/closedir()/etc. attempted on invalid dirhandle
+=item B:: modules inheritance changed
+
+=item Anonymous hash and array constructors
 
 =back
 
-=item Changed Internals
+=item Known Problems
 
 =over 4
 
-=item B:: modules inheritance changed
+=item UTF-8 problems
 
 =back
 
+=item Platform Specific Problems
+
 =item Reporting Bugs
 
 =item SEE ALSO
 
 =back
 
-=head2 perl592delta, perldelta - what is new for perl v5.9.2
+=head2 perl595delta - what is new for perl v5.9.5
 
 =over 4
 
@@ -6723,139 +7258,128 @@ pattern
 
 =over 4
 
-=item Packing and UTF-8 strings
+=item Tainting and printf
 
-=item Miscellaneous
+=item undef and signal handlers
 
-=back
+=item strictures and array/hash dereferencing in defined()
 
-=item Core Enhancements
+=item C<(?p{})> has been removed
 
-=over 4
+=item Pseudo-hashes have been removed
 
-=item Malloc wrapping
+=item Removal of the bytecode compiler and of perlcc
 
-=item Unicode Character Database 4.0.1
+=item Removal of the JPL
 
-=item suidperl less insecure
+=item Recursive inheritance detected earlier
 
-=item PERLIO_DEBUG
+=back
 
-=item Formats
+=item Core Enhancements
 
-=item Unicode Character Classes
+=over 4
 
-=item Byte-order modifiers for pack() and unpack()
+=item Regular expressions
 
-=item Byte count feature in pack()
+Recursive Patterns, Named Capture Buffers, Possessive Quantifiers,
+Backtracking control verbs, Relative backreferences, C<\K> escape, Vertical
+and horizontal whitespace, and linebreak
 
-=item New variables
+=item The C<_> prototype
 
-=back
+=item UNITCHECK blocks
 
-=item Modules and Pragmata
+=item readpipe() is now overridable
 
-=over 4
+=item default argument for readline()
 
-=item New modules
+=item UCD 5.0.0
 
-=item Updated And Improved Modules and Pragmata
+=item Smart match
 
-B::Concise, Socket, Sys::Syslog, threads
+=item Implicit loading of C<feature>
 
 =back
 
-=item Utility Changes
-
-=item Performance Enhancements
+=item Modules and Pragmas
 
-=item Installation and Configuration Improvements
+=over 4
 
-=item Selected Bug Fixes
+=item New Pragma, C<mro>
 
-=item New or Changed Diagnostics
+=item bignum, bigint, bigrat
 
-=item Changed Internals
+=item Math::BigInt/Math::BigFloat
 
-=item Known Problems
+config(), import(), roundmode common, bpi(), bcos(), bsin(), batan(),
+batan2(), bmuladd(), bexp(), bnok(), from_hex(), from_oct(), and
+from_bin(), as_oct()
 
-=item Plans for the next release
+=item New Core Modules
 
-=item Reporting Bugs
+=item Module changes
 
-=item SEE ALSO
+C<assertions>, C<base>, C<strict> and C<warnings>, C<warnings>, C<less>,
+C<Attribute::Handlers>, C<B::Lint>, C<B>, C<Thread>
 
 =back
 
-=head2 perl591delta, perldelta - what is new for perl v5.9.1
+=item Utility Changes
 
 =over 4
 
-=item DESCRIPTION
-
-=item Incompatible Changes
-
-=over 4
+=item C<cpanp>
 
-=item substr() lvalues are no longer fixed-length
+=item C<cpan2dist>
 
-=item The C<:unique> attribute is only meaningful for globals
+=item C<pod2html>
 
 =back
 
-=item Core Enhancements
+=item Documentation
 
 =over 4
 
-=item Lexical C<$_>
-
-=item Tied hashes in scalar context
-
-=item Formats
-
-=item Stacked filetest operators
+=item New manpage, perlunifaq
 
 =back
 
-=item Modules and Pragmata
+=item Performance Enhancements
 
-Benchmark, Carp, Exporter, FindBin, List::Util, threads::shared
+=item Installation and Configuration Improvements
 
-=item Utility Changes
+=over 4
 
-=item Documentation
+=item C++ compatibility
 
-=item Performance Enhancements
+=item Visual C++
 
-=item Selected Bug Fixes
+=item Static build on Win32
 
-=over 4
+=item win32 builds
 
-=item UTF-8 bugs
+=item C<d_pseudofork> and C<d_printf_format_null>
 
-=item Threading bugs
+=item Help
 
-=item More bugs
+=item 64bit systems
+
+=item Ports
 
 =back
 
-=item New or Changed Diagnostics
+=item Selected Bug Fixes
 
-=item Changed Internals
+=item New or Changed Diagnostics
 
 =over 4
 
-=item Reordering of SVt_* constants
-
-=item Removal of CPP symbols
-
-=item Less space is used by ops
-
-=item New parser
+=item Deprecations
 
 =back
 
-=item Configuration and Building
+=item Changed Internals
 
 =item Known Problems
 
@@ -6865,15 +7389,13 @@ Benchmark, Carp, Exporter, FindBin, List::Util, threads::shared
 
 =back
 
-=item To-do for perl 5.10.0
-
 =item Reporting Bugs
 
 =item SEE ALSO
 
 =back
 
-=head2 perl590delta, perldelta - what is new for perl v5.9.0
+=head2 perl594delta - what is new for perl v5.9.4
 
 =over 4
 
@@ -6883,17 +7405,13 @@ Benchmark, Carp, Exporter, FindBin, List::Util, threads::shared
 
 =over 4
 
-=item Hash Randomisation
-
-=item UTF-8 On Filehandles No Longer Activated By Locale
-
-=item Single-number v-strings are no longer v-strings before "=>"
+=item chdir FOO
 
-=item (Win32) The -C Switch Has Been Repurposed
+=item Handling of pmc files
 
-=item (Win32) The /d Switch Of cmd.exe
+=item @- and @+ in patterns
 
-=item The C<$*> variable has been removed
+=item $AUTOLOAD can now be tainted
 
 =back
 
@@ -6901,181 +7419,252 @@ Benchmark, Carp, Exporter, FindBin, List::Util, threads::shared
 
 =over 4
 
-=item Assertions
-
-=item Defined-or operators
-
-=item UTF-8 no longer default under UTF-8 locales
-
-=item Unsafe signals again available
+=item state() variables
 
-=item Tied Arrays with Negative Array Indices
+=item UNIVERSAL::DOES()
 
-=item local ${$x}
+=item Exceptions in constant folding
 
-=item Unicode Character Database 4.0.0
+=item Source filters in @INC
 
-=item Miscellaneous Enhancements
+=item MAD
 
 =back
 
-=item Modules and Pragmata
+=item Modules and Pragmas
 
 =over 4
 
-=item Updated Modules And Pragmata
-
-base, B::Bytecode, B::Concise, B::Deparse, Benchmark, ByteLoader, bytes,
-CGI, charnames, CPAN, Data::Dumper, DB_File, Devel::PPPort, Digest::MD5,
-Encode, fields, libnet, Math::BigInt, MIME::Base64, NEXT, Net::Ping,
-PerlIO::scalar, podlators, Pod::LaTeX, PodParsers, Pod::Perldoc,
-Scalar::Util, Storable, strict, Term::ANSIcolor, Test::Harness, Test::More,
-Test::Simple, Text::Balanced, Time::HiRes, threads, threads::shared,
-Unicode::Collate, Unicode::Normalize, Win32::GetFolderPath,
-Win32::GetOSVersion
+=item New Core Modules
 
 =back
 
 =item Utility Changes
 
-=item New Documentation
+=over 4
 
-=item Performance Enhancements
+=item config_data
 
-=item Installation and Configuration Improvements
+=back
 
-=over 4
+=item Documentation
 
-=item Platform-specific enhancements
+=over 4
+
+=item New manpage, perlpragma
+
+=item New manpage, perlreguts
+
+=item New manpage, perlunitut
 
 =back
 
-=item Selected Bug Fixes
+=item Performance Enhancements
 
 =over 4
 
-=item Closures, eval and lexicals
+=item Memory optimisations
 
-=item Generic fixes
+=item UTF-8 cache optimisation
 
-=item Platform-specific fixes
+=item Regular expressions
+
+Engine de-recursivised, Single char char-classes treated as literals, Trie
+optimisation of literal string alternations, Aho-Corasick start-point
+optimisation
+
+=item Sloppy stat on Windows
 
 =back
 
-=item New or Changed Diagnostics
+=item Installation and Configuration Improvements
 
 =over 4
 
-=item Changed "A thread exited while %d threads were running"
+=item Relocatable installations
 
-=item Removed "Attempt to clear a restricted hash"
+=item Ports
 
-=item New "Illegal declaration of anonymous subroutine"
+=item Compilation improvements
 
-=item Changed "Invalid range "%s" in transliteration operator"
+=item New probes
 
-=item New "Missing control char name in \c"
+=item Windows build improvements
 
-=item New "Newline in left-justified string for %s"
+Building XS extensions, Support for 64-bit compiler
 
-=item New "Possible precedence problem on bitwise %c operator"
+=back
 
-=item New "read() on %s filehandle %s"
+=item Selected Bug Fixes
 
-=item New "Tied variable freed while still in use"
+=over 4
 
-=item New "To%s: illegal mapping '%s'"
+=item PERL5SHELL and tainting
 
-=item New "Use of freed value in iteration"
+=item Using *FILE{IO}
+
+=item Overloading and reblessing
+
+=item Overloading and UTF-8
+
+=item eval memory leaks fixed
+
+=item Random device on Windows
 
 =back
 
-=item Changed Internals
+=item New or Changed Diagnostics
 
-=item New Tests
+State variable %s will be reinitialized
+
+=item Changed Internals
 
 =item Known Problems
 
+=item Reporting Bugs
+
+=item SEE ALSO
+
+=back
+
+=head2 perl593delta - what is new for perl v5.9.3
+
 =over 4
 
-=item Tied hashes in scalar context
+=item DESCRIPTION
 
-=item Net::Ping 450_service and 510_ping_udp failures
+=item Incompatible Changes
 
-=item B::C
+=over 4
+
+=item Parsing of C<-f _>
+
+=item C<mkdir()>
+
+=item Magic goto and eval
+
+=item C<$#> has been removed
+
+=item C<:unique>
+
+=item Scoping of the C<sort> pragma
 
 =back
 
-=item Platform Specific Problems
+=item Core Enhancements
 
 =over 4
 
-=item EBCDIC Platforms
+=item The C<feature> pragma
 
-=item Cygwin 1.5 problems
+=item Switch and Smart Match operator
 
-=item HP-UX: HP cc warnings about sendfile and sendpath
+=item C<say()>
 
-=item IRIX: t/uni/tr_7jis.t falsely failing
+=item C<CLONE_SKIP()>
 
-=item Mac OS X: no usemymalloc
+=item C<${^CHILD_ERROR_NATIVE}>
 
-=item Tru64: No threaded builds with GNU cc (gcc)
+=item Assertions
 
-=item Win32: sysopen, sysread, syswrite
+=item Unicode Character Database 4.1.0
 
-=back
+=item C<no VERSION>
 
-=item TODO
+=item Recursive sort subs
 
-=item Reporting Bugs
+=item Effect of pragmas in eval
 
-=item SEE ALSO
+=item New B<-E> command-line switch
 
-=back
+=item C<chdir>, C<chmod> and C<chown> on filehandles
 
-=head2 perl588delta, perldelta - what is new for perl v5.8.8
+=item OS groups
 
-=over 4
+=back
 
-=item DESCRIPTION
+=item Modules and Pragmata
 
-=item Incompatible Changes
+=over 4
 
-=item Core Enhancements
+=item New Core Modules
 
-=item Modules and Pragmata
+=back
 
 =item Utility Changes
 
 =over 4
 
+=item C<ptar>
+
+=item C<ptardiff>
+
+=item C<shasum>
+
 =item C<h2xs> enhancements
 
 =item C<perlivp> enhancements
 
 =back
 
-=item New Documentation
+=item Documentation
+
+=over 4
+
+=item Perl Glossary
+
+=back
 
 =item Performance Enhancements
 
+=over 4
+
+=item XS-assisted SWASHGET
+
+=item Constant subroutines
+
+=item C<PERL_DONT_CREATE_GVSV>
+
+=item Weak references are cheaper
+
+=item sort() enhancements
+
+=back
+
 =item Installation and Configuration Improvements
 
+=over 4
+
+=item Compilation improvements
+
+=item New Or Improved Platforms
+
+=item New probes
+
+=item Module auxiliary files
+
+=back
+
 =item Selected Bug Fixes
 
 =over 4
 
-=item no warnings 'category' works correctly with -w
+=item C<defined $$x>
+
+=item Calling CORE::require()
+
+=item Subscripts of slices
 
 =item Remove over-optimisation
 
 =item sprintf() fixes
 
-=item Debugger and Unicode slowdown
+=item no warnings 'category' works correctly with -w
 
 =item Smaller fixes
 
+=item More Unicode Fixes
+
 =back
 
 =item New or Changed Diagnostics
@@ -7089,11 +7678,19 @@ Win32::GetOSVersion
 =item Search pattern not terminated or ternary operator parsed as search
 pattern
 
+=item "%s" variable %s masks earlier declaration
+
+=item readdir()/closedir()/etc. attempted on invalid dirhandle
+
 =back
 
 =item Changed Internals
 
-=item Platform Specific Problems
+=over 4
+
+=item B:: modules inheritance changed
+
+=back
 
 =item Reporting Bugs
 
@@ -7101,7 +7698,7 @@ pattern
 
 =back
 
-=head2 perl587delta, perldelta - what is new for perl v5.8.7
+=head2 perl592delta - what is new for perl v5.9.2
 
 =over 4
 
@@ -7109,30 +7706,52 @@ pattern
 
 =item Incompatible Changes
 
+=over 4
+
+=item Packing and UTF-8 strings
+
+=item Miscellaneous
+
+=back
+
 =item Core Enhancements
 
 =over 4
 
-=item Unicode Character Database 4.1.0
+=item Malloc wrapping
+
+=item Unicode Character Database 4.0.1
 
 =item suidperl less insecure
 
-=item Optional site customization script
+=item PERLIO_DEBUG
 
-=item C<Config.pm> is now much smaller.
+=item Formats
+
+=item Unicode Character Classes
+
+=item Byte-order modifiers for pack() and unpack()
+
+=item Byte count feature in pack()
+
+=item New variables
 
 =back
 
 =item Modules and Pragmata
 
-=item Utility Changes
-
 =over 4
 
-=item find2perl enhancements
+=item New modules
+
+=item Updated And Improved Modules and Pragmata
+
+B::Concise, Socket, Sys::Syslog, threads
 
 =back
 
+=item Utility Changes
+
 =item Performance Enhancements
 
 =item Installation and Configuration Improvements
@@ -7145,7 +7764,7 @@ pattern
 
 =item Known Problems
 
-=item Platform Specific Problems
+=item Plans for the next release
 
 =item Reporting Bugs
 
@@ -7153,7 +7772,7 @@ pattern
 
 =back
 
-=head2 perl586delta - what is new for perl v5.8.6
+=head2 perl591delta - what is new for perl v5.9.1
 
 =over 4
 
@@ -7161,207 +7780,77 @@ pattern
 
 =item Incompatible Changes
 
-=item Core Enhancements
+=over 4
 
-=item Modules and Pragmata
+=item substr() lvalues are no longer fixed-length
 
-=item Utility Changes
+=item The C<:unique> attribute is only meaningful for globals
 
-=item Performance Enhancements
+=back
 
-=item Selected Bug Fixes
+=item Core Enhancements
 
-=item New or Changed Diagnostics
+=over 4
 
-=item Changed Internals
+=item Lexical C<$_>
 
-=item New Tests
+=item Tied hashes in scalar context
 
-=item Reporting Bugs
+=item Formats
 
-=item SEE ALSO
+=item Stacked filetest operators
 
 =back
 
-=head2 perl585delta - what is new for perl v5.8.5
-
-=over 4
+=item Modules and Pragmata
 
-=item DESCRIPTION
+Benchmark, Carp, Exporter, FindBin, List::Util, threads::shared
 
-=item Incompatible Changes
+=item Utility Changes
 
-=item Core Enhancements
+=item Documentation
 
-=item Modules and Pragmata
+=item Performance Enhancements
 
-=item Utility Changes
+=item Selected Bug Fixes
 
 =over 4
 
-=item Perl's debugger
+=item UTF-8 bugs
 
-=item h2ph
-
-=back
-
-=item Installation and Configuration Improvements
-
-=item Selected Bug Fixes
-
-=item New or Changed Diagnostics
-
-=item Changed Internals
-
-=item Known Problems
-
-=item Platform Specific Problems
-
-=item Reporting Bugs
-
-=item SEE ALSO
-
-=back
-
-=head2 perl584delta - what is new for perl v5.8.4
-
-=over 4
-
-=item DESCRIPTION
-
-=item Incompatible Changes
-
-=item Core Enhancements
-
-=over 4
-
-=item Malloc wrapping
-
-=item Unicode Character Database 4.0.1
-
-=item suidperl less insecure
-
-=item format
-
-=back
-
-=item Modules and Pragmata
-
-=over 4
-
-=item Updated modules
+=item Threading bugs
 
-Attribute::Handlers, B, Benchmark, CGI, Carp, Cwd, Exporter, File::Find,
-IO, IPC::Open3, Local::Maketext, Math::BigFloat, Math::BigInt,
-Math::BigRat, MIME::Base64, ODBM_File, POSIX, Shell, Socket, Storable,
-Switch, Sys::Syslog, Term::ANSIColor, Time::HiRes, Unicode::UCD, Win32,
-base, open, threads, utf8
+=item More bugs
 
 =back
 
-=item Performance Enhancements
-
-=item Utility Changes
-
-=item Installation and Configuration Improvements
-
-=item Selected Bug Fixes
-
 =item New or Changed Diagnostics
 
 =item Changed Internals
 
-=item Future Directions
-
-=item Platform Specific Problems
-
-=item Reporting Bugs
-
-=item SEE ALSO
-
-=back
-
-=head2 perl583delta - what is new for perl v5.8.3
-
 =over 4
 
-=item DESCRIPTION
-
-=item Incompatible Changes
-
-=item Core Enhancements
-
-=item Modules and Pragmata
-
-CGI, Cwd, Digest, Digest::MD5, Encode, File::Spec, FindBin, List::Util,
-Math::BigInt, PodParser, Pod::Perldoc, POSIX, Unicode::Collate,
-Unicode::Normalize, Test::Harness, threads::shared
-
-=item Utility Changes
-
-=item New Documentation
+=item Reordering of SVt_* constants
 
-=item Installation and Configuration Improvements
+=item Removal of CPP symbols
 
-=item Selected Bug Fixes
+=item Less space is used by ops
 
-=item New or Changed Diagnostics
+=item New parser
 
-=item Changed Internals
+=back
 
 =item Configuration and Building
 
-=item Platform Specific Problems
-
 =item Known Problems
 
-=item Future Directions
-
-=item Obituary
-
-=item Reporting Bugs
-
-=item SEE ALSO
-
-=back
-
-=head2 perl582delta - what is new for perl v5.8.2
-
-=over 4
-
-=item DESCRIPTION
-
-=item Incompatible Changes
-
-=item Core Enhancements
-
-=over 4
-
-=item Hash Randomisation
-
-=item Threading
-
-=back
-
-=item Modules and Pragmata
-
 =over 4
 
-=item Updated Modules And Pragmata
-
-Devel::PPPort, Digest::MD5, I18N::LangTags, libnet, MIME::Base64,
-Pod::Perldoc, strict, Tie::Hash, Time::HiRes, Unicode::Collate,
-Unicode::Normalize, UNIVERSAL
+=item Platform Specific Problems
 
 =back
 
-=item Selected Bug Fixes
-
-=item Changed Internals
-
-=item Platform Specific Problems
-
-=item Future Directions
+=item To-do for perl 5.10.0
 
 =item Reporting Bugs
 
@@ -7369,7 +7858,7 @@ Unicode::Normalize, UNIVERSAL
 
 =back
 
-=head2 perl581delta - what is new for perl v5.8.1
+=head2 perl590delta - what is new for perl v5.9.0
 
 =over 4
 
@@ -7389,12 +7878,18 @@ Unicode::Normalize, UNIVERSAL
 
 =item (Win32) The /d Switch Of cmd.exe
 
+=item The C<$*> variable has been removed
+
 =back
 
 =item Core Enhancements
 
 =over 4
 
+=item Assertions
+
+=item Defined-or operators
+
 =item UTF-8 no longer default under UTF-8 locales
 
 =item Unsafe signals again available
@@ -7405,8 +7900,6 @@ Unicode::Normalize, UNIVERSAL
 
 =item Unicode Character Database 4.0.0
 
-=item Deprecation Warnings
-
 =item Miscellaneous Enhancements
 
 =back
@@ -7432,6 +7925,8 @@ Win32::GetOSVersion
 
 =item New Documentation
 
+=item Performance Enhancements
+
 =item Installation and Configuration Improvements
 
 =over 4
@@ -7470,12 +7965,8 @@ Win32::GetOSVersion
 
 =item New "Possible precedence problem on bitwise %c operator"
 
-=item New "Pseudo-hashes are deprecated"
-
 =item New "read() on %s filehandle %s"
 
-=item New "5.005 threads are deprecated"
-
 =item New "Tied variable freed while still in use"
 
 =item New "To%s: illegal mapping '%s'"
@@ -7520,7 +8011,7 @@ Win32::GetOSVersion
 
 =back
 
-=item Future Directions
+=item TODO
 
 =item Reporting Bugs
 
@@ -7528,271 +8019,268 @@ Win32::GetOSVersion
 
 =back
 
-=head2 perl58delta - what is new for perl v5.8.0
+=head2 perl588delta - what is new for perl v5.8.8
 
 =over 4
 
 =item DESCRIPTION
 
-=item Highlights In 5.8.0
-
 =item Incompatible Changes
 
+=item Core Enhancements
+
+=item Modules and Pragmata
+
+=item Utility Changes
+
 =over 4
 
-=item Binary Incompatibility
+=item C<h2xs> enhancements
 
-=item 64-bit platforms and malloc
+=item C<perlivp> enhancements
 
-=item AIX Dynaloading
+=back
 
-=item Attributes for C<my> variables now handled at run-time
+=item New Documentation
 
-=item Socket Extension Dynamic in VMS
+=item Performance Enhancements
 
-=item IEEE-format Floating Point Default on OpenVMS Alpha
+=item Installation and Configuration Improvements
 
-=item New Unicode Semantics (no more C<use utf8>, almost)
+=item Selected Bug Fixes
 
-=item New Unicode Properties
+=over 4
 
-=item REF(...) Instead Of SCALAR(...)
+=item no warnings 'category' works correctly with -w
 
-=item pack/unpack D/F recycled
+=item Remove over-optimisation
 
-=item glob() now returns filenames in alphabetical order
+=item sprintf() fixes
 
-=item Deprecations
+=item Debugger and Unicode slowdown
+
+=item Smaller fixes
 
 =back
 
-=item Core Enhancements
+=item New or Changed Diagnostics
 
 =over 4
 
-=item Unicode Overhaul
+=item Attempt to set length of freed array
 
-=item PerlIO is Now The Default
+=item Non-string passed as bitmask
 
-=item ithreads
+=item Search pattern not terminated or ternary operator parsed as search
+pattern
 
-=item Restricted Hashes
+=back
 
-=item Safe Signals
+=item Changed Internals
 
-=item Understanding of Numbers
+=item Platform Specific Problems
 
-=item Arrays now always interpolate into double-quoted strings [561]
+=item Reporting Bugs
 
-=item Miscellaneous Changes
+=item SEE ALSO
 
 =back
 
-=item Modules and Pragmata
+=head2 perl587delta - what is new for perl v5.8.7
 
 =over 4
 
-=item New Modules and Pragmata
-
-=item Updated And Improved Modules and Pragmata
-
-=back
+=item DESCRIPTION
 
-=item Utility Changes
+=item Incompatible Changes
 
-=item New Documentation
+=item Core Enhancements
 
-=item Performance Enhancements
+=over 4
 
-=item Installation and Configuration Improvements
+=item Unicode Character Database 4.1.0
 
-=over 4
+=item suidperl less insecure
 
-=item Generic Improvements
+=item Optional site customization script
 
-=item New Or Improved Platforms
+=item C<Config.pm> is now much smaller.
 
 =back
 
-=item Selected Bug Fixes
+=item Modules and Pragmata
+
+=item Utility Changes
 
 =over 4
 
-=item Platform Specific Changes and Fixes
+=item find2perl enhancements
 
 =back
 
-=item New or Changed Diagnostics
+=item Performance Enhancements
 
-=item Changed Internals
+=item Installation and Configuration Improvements
 
-=item Security Vulnerability Closed [561]
+=item Selected Bug Fixes
 
-=item New Tests
+=item New or Changed Diagnostics
+
+=item Changed Internals
 
 =item Known Problems
 
-=over 4
+=item Platform Specific Problems
 
-=item The Compiler Suite Is Still Very Experimental
+=item Reporting Bugs
 
-=item Localising Tied Arrays and Hashes Is Broken
+=item SEE ALSO
 
-=item Building Extensions Can Fail Because Of Largefiles
+=back
 
-=item Modifying $_ Inside for(..)
+=head2 perl586delta - what is new for perl v5.8.6
 
-=item mod_perl 1.26 Doesn't Build With Threaded Perl
+=over 4
 
-=item lib/ftmp-security tests warn 'system possibly insecure'
+=item DESCRIPTION
 
-=item libwww-perl (LWP) fails base/date #51
+=item Incompatible Changes
 
-=item PDL failing some tests
+=item Core Enhancements
 
-=item Perl_get_sv
+=item Modules and Pragmata
 
-=item Self-tying Problems
+=item Utility Changes
 
-=item ext/threads/t/libc
+=item Performance Enhancements
 
-=item Failure of Thread (5.005-style) tests
+=item Selected Bug Fixes
 
-=item Timing problems
+=item New or Changed Diagnostics
 
-=item Tied/Magical Array/Hash Elements Do Not Autovivify
+=item Changed Internals
 
-=item Unicode in package/class and subroutine names does not work
+=item New Tests
+
+=item Reporting Bugs
+
+=item SEE ALSO
 
 =back
 
-=item Platform Specific Problems
+=head2 perl585delta - what is new for perl v5.8.5
 
 =over 4
 
-=item AIX
+=item DESCRIPTION
 
-=item Alpha systems with old gccs fail several tests
+=item Incompatible Changes
 
-=item AmigaOS
+=item Core Enhancements
 
-=item BeOS
+=item Modules and Pragmata
 
-=item Cygwin "unable to remap"
+=item Utility Changes
 
-=item Cygwin ndbm tests fail on FAT
+=over 4
 
-=item DJGPP Failures
+=item Perl's debugger
 
-=item FreeBSD built with ithreads coredumps reading large directories
+=item h2ph
 
-=item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
+=back
 
-=item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
+=item Installation and Configuration Improvements
 
-=item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
+=item Selected Bug Fixes
 
-=item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
+=item New or Changed Diagnostics
 
-=item Linux With Sfio Fails op/misc Test 48
+=item Changed Internals
 
-=item Mac OS X
+=item Known Problems
 
-=item Mac OS X dyld undefined symbols
+=item Platform Specific Problems
 
-=item OS/2 Test Failures
+=item Reporting Bugs
 
-=item op/sprintf tests 91, 129, and 130
+=item SEE ALSO
 
-=item SCO
+=back
 
-=item Solaris 2.5
+=head2 perl584delta - what is new for perl v5.8.4
 
-=item Solaris x86 Fails Tests With -Duse64bitint
+=over 4
 
-=item SUPER-UX (NEC SX)
+=item DESCRIPTION
 
-=item Term::ReadKey not working on Win32
+=item Incompatible Changes
 
-=item UNICOS/mk
+=item Core Enhancements
 
-=item UTS
+=over 4
 
-=item VOS (Stratus)
+=item Malloc wrapping
 
-=item VMS
+=item Unicode Character Database 4.0.1
 
-=item Win32
+=item suidperl less insecure
 
-=item XML::Parser not working
+=item format
 
-=item z/OS (OS/390)
+=back
 
-=item Unicode Support on EBCDIC Still Spotty
+=item Modules and Pragmata
 
-=item Seen In Perl 5.7 But Gone Now
+=over 4
+
+=item Updated modules
+
+Attribute::Handlers, B, Benchmark, CGI, Carp, Cwd, Exporter, File::Find,
+IO, IPC::Open3, Local::Maketext, Math::BigFloat, Math::BigInt,
+Math::BigRat, MIME::Base64, ODBM_File, POSIX, Shell, Socket, Storable,
+Switch, Sys::Syslog, Term::ANSIColor, Time::HiRes, Unicode::UCD, Win32,
+base, open, threads, utf8
 
 =back
 
-=item Reporting Bugs
+=item Performance Enhancements
 
-=item SEE ALSO
+=item Utility Changes
 
-=item HISTORY
+=item Installation and Configuration Improvements
 
-=back
+=item Selected Bug Fixes
 
-=head2 perl573delta - what's new for perl v5.7.3
+=item New or Changed Diagnostics
 
-=over 4
+=item Changed Internals
 
-=item DESCRIPTION
+=item Future Directions
 
-=item Changes
+=item Platform Specific Problems
 
 =item Reporting Bugs
 
 =item SEE ALSO
 
-=item HISTORY
-
 =back
 
-=head2 perl572delta - what's new for perl v5.7.2
+=head2 perl583delta - what is new for perl v5.8.3
 
 =over 4
 
 =item DESCRIPTION
 
-=item Security Vulnerability Closed
-
 =item Incompatible Changes
 
-=over 4
-
-=item 64-bit platforms and malloc
-
-=item AIX Dynaloading
-
-=item Socket Extension Dynamic in VMS
-
-=item Different Definition of the Unicode Character Classes \p{In...}
-
-=item Deprecations
-
-=back
-
 =item Core Enhancements
 
 =item Modules and Pragmata
 
-=over 4
-
-=item New Modules and Distributions
-
-=item Updated And Improved Modules and Pragmata
-
-=back
+CGI, Cwd, Digest, Digest::MD5, Encode, File::Spec, FindBin, List::Util,
+Math::BigInt, PodParser, Pod::Perldoc, POSIX, Unicode::Collate,
+Unicode::Normalize, Test::Harness, threads::shared
 
 =item Utility Changes
 
@@ -7800,177 +8288,186 @@ Win32::GetOSVersion
 
 =item Installation and Configuration Improvements
 
-=over 4
-
-=item New Or Improved Platforms
-
-=item Generic Improvements
-
-=back
-
 =item Selected Bug Fixes
 
-=over 4
-
-=item Platform Specific Changes and Fixes
+=item New or Changed Diagnostics
 
-=back
+=item Changed Internals
 
-=item New or Changed Diagnostics
+=item Configuration and Building
 
-=item Source Code Enhancements
+=item Platform Specific Problems
 
-=over 4
+=item Known Problems
 
-=item MAGIC constants
+=item Future Directions
 
-=item Better commented code
+=item Obituary
 
-=item Regex pre-/post-compilation items matched up
+=item Reporting Bugs
 
-=item gcc -Wall
+=item SEE ALSO
 
 =back
 
-=item New Tests
-
-=item Known Problems
+=head2 perl582delta - what is new for perl v5.8.2
 
 =over 4
 
-=item AIX
-
-=item Amiga Perl Invoking Mystery
-
-=item lib/ftmp-security tests warn 'system possibly insecure'
-
-=item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
-
-=item HP-UX lib/io_multihomed Fails When LP64-Configured
-
-=item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
+=item DESCRIPTION
 
-=item Linux With Sfio Fails op/misc Test 48
+=item Incompatible Changes
 
-=item OS/390
+=item Core Enhancements
 
-=item op/sprintf tests 129 and 130
+=over 4
 
-=item  Failure of Thread tests
+=item Hash Randomisation
 
-=item UNICOS
+=item Threading
 
-=item UTS
+=back
 
-=item VMS
+=item Modules and Pragmata
 
-=item Win32
+=over 4
 
-=item Localising a Tied Variable Leaks Memory
+=item Updated Modules And Pragmata
 
-=item Self-tying of Arrays and Hashes Is Forbidden
+Devel::PPPort, Digest::MD5, I18N::LangTags, libnet, MIME::Base64,
+Pod::Perldoc, strict, Tie::Hash, Time::HiRes, Unicode::Collate,
+Unicode::Normalize, UNIVERSAL
 
-=item Variable Attributes are not Currently Usable for Tieing
+=back
 
-=item Building Extensions Can Fail Because Of Largefiles
+=item Selected Bug Fixes
 
-=item The Compiler Suite Is Still Experimental
+=item Changed Internals
 
-=item The Long Double Support is Still Experimental
+=item Platform Specific Problems
 
-=back
+=item Future Directions
 
 =item Reporting Bugs
 
 =item SEE ALSO
 
-=item HISTORY
-
 =back
 
-=head2 perl571delta - what's new for perl v5.7.1
+=head2 perl581delta - what is new for perl v5.8.1
 
 =over 4
 
 =item DESCRIPTION
 
-=item Security Vulnerability Closed
-
 =item Incompatible Changes
 
-=item Core Enhancements
-
 =over 4
 
-=item AUTOLOAD Is Now Lvaluable
+=item Hash Randomisation
 
-=item PerlIO is Now The Default
+=item UTF-8 On Filehandles No Longer Activated By Locale
 
-=item Signals Are Now Safe
+=item Single-number v-strings are no longer v-strings before "=>"
+
+=item (Win32) The -C Switch Has Been Repurposed
+
+=item (Win32) The /d Switch Of cmd.exe
 
 =back
 
-=item Modules and Pragmata
+=item Core Enhancements
 
 =over 4
 
-=item New Modules
+=item UTF-8 no longer default under UTF-8 locales
 
-=item Updated And Improved Modules and Pragmata
+=item Unsafe signals again available
 
-=back
+=item Tied Arrays with Negative Array Indices
 
-=item Performance Enhancements
+=item local ${$x}
 
-=item Utility Changes
+=item Unicode Character Database 4.0.0
 
-=item New Documentation
+=item Deprecation Warnings
 
-=over 4
+=item Miscellaneous Enhancements
 
-=item perlclib
+=back
 
-=item perliol
+=item Modules and Pragmata
 
-=item README.aix
+=over 4
 
-=item README.bs2000
+=item Updated Modules And Pragmata
 
-=item README.macos
+base, B::Bytecode, B::Concise, B::Deparse, Benchmark, ByteLoader, bytes,
+CGI, charnames, CPAN, Data::Dumper, DB_File, Devel::PPPort, Digest::MD5,
+Encode, fields, libnet, Math::BigInt, MIME::Base64, NEXT, Net::Ping,
+PerlIO::scalar, podlators, Pod::LaTeX, PodParsers, Pod::Perldoc,
+Scalar::Util, Storable, strict, Term::ANSIcolor, Test::Harness, Test::More,
+Test::Simple, Text::Balanced, Time::HiRes, threads, threads::shared,
+Unicode::Collate, Unicode::Normalize, Win32::GetFolderPath,
+Win32::GetOSVersion
 
-=item README.mpeix
+=back
 
-=item README.solaris
+=item Utility Changes
 
-=item README.vos
+=item New Documentation
 
-=item Porting/repository.pod
+=item Installation and Configuration Improvements
+
+=over 4
+
+=item Platform-specific enhancements
 
 =back
 
-=item Installation and Configuration Improvements
+=item Selected Bug Fixes
 
 =over 4
 
-=item New Or Improved Platforms
+=item Closures, eval and lexicals
 
-=item Generic Improvements
+=item Generic fixes
 
-d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
-need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
-d_strtoq, d_u32align, d_ualarm, d_usleep
+=item Platform-specific fixes
 
 =back
 
-=item Selected Bug Fixes
+=item New or Changed Diagnostics
 
 =over 4
 
-=item Platform Specific Changes and Fixes
+=item Changed "A thread exited while %d threads were running"
 
-=back
+=item Removed "Attempt to clear a restricted hash"
 
-=item New or Changed Diagnostics
+=item New "Illegal declaration of anonymous subroutine"
+
+=item Changed "Invalid range "%s" in transliteration operator"
+
+=item New "Missing control char name in \c"
+
+=item New "Newline in left-justified string for %s"
+
+=item New "Possible precedence problem on bitwise %c operator"
+
+=item New "Pseudo-hashes are deprecated"
+
+=item New "read() on %s filehandle %s"
+
+=item New "5.005 threads are deprecated"
+
+=item New "Tied variable freed while still in use"
+
+=item New "To%s: illegal mapping '%s'"
+
+=item New "Use of freed value in iteration"
+
+=back
 
 =item Changed Internals
 
@@ -7980,59 +8477,107 @@ d_strtoq, d_u32align, d_ualarm, d_usleep
 
 =over 4
 
-=item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
+=item Tied hashes in scalar context
 
-=item lib/ftmp-security tests warn 'system possibly insecure'
+=item Net::Ping 450_service and 510_ping_udp failures
 
-=item lib/io_multihomed Fails In LP64-Configured HP-UX
+=item B::C
 
-=item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
+=back
 
-=item lib/b test 19
+=item Platform Specific Problems
 
-=item Linux With Sfio Fails op/misc Test 48
+=over 4
 
-=item sigaction test 13 in VMS
+=item EBCDIC Platforms
 
-=item sprintf tests 129 and 130
+=item Cygwin 1.5 problems
 
-=item  Failure of Thread tests
+=item HP-UX: HP cc warnings about sendfile and sendpath
 
-=item Localising a Tied Variable Leaks Memory
+=item IRIX: t/uni/tr_7jis.t falsely failing
 
-=item Self-tying of Arrays and Hashes Is Forbidden
+=item Mac OS X: no usemymalloc
 
-=item Building Extensions Can Fail Because Of Largefiles
+=item Tru64: No threaded builds with GNU cc (gcc)
 
-=item The Compiler Suite Is Still Experimental
+=item Win32: sysopen, sysread, syswrite
 
 =back
 
+=item Future Directions
+
 =item Reporting Bugs
 
 =item SEE ALSO
 
-=item HISTORY
-
 =back
 
-=head2 perl570delta - what's new for perl v5.7.0
+=head2 perl58delta - what is new for perl v5.8.0
 
 =over 4
 
 =item DESCRIPTION
 
-=item Security Vulnerability Closed
+=item Highlights In 5.8.0
 
 =item Incompatible Changes
 
+=over 4
+
+=item Binary Incompatibility
+
+=item 64-bit platforms and malloc
+
+=item AIX Dynaloading
+
+=item Attributes for C<my> variables now handled at run-time
+
+=item Socket Extension Dynamic in VMS
+
+=item IEEE-format Floating Point Default on OpenVMS Alpha
+
+=item New Unicode Semantics (no more C<use utf8>, almost)
+
+=item New Unicode Properties
+
+=item REF(...) Instead Of SCALAR(...)
+
+=item pack/unpack D/F recycled
+
+=item glob() now returns filenames in alphabetical order
+
+=item Deprecations
+
+=back
+
 =item Core Enhancements
 
+=over 4
+
+=item Unicode Overhaul
+
+=item PerlIO is Now The Default
+
+=item ithreads
+
+=item Restricted Hashes
+
+=item Safe Signals
+
+=item Understanding of Numbers
+
+=item Arrays now always interpolate into double-quoted strings [561]
+
+=item Miscellaneous Changes
+
+=back
+
 =item Modules and Pragmata
 
 =over 4
 
-=item New Modules
+=item New Modules and Pragmata
 
 =item Updated And Improved Modules and Pragmata
 
@@ -8050,6 +8595,8 @@ d_strtoq, d_u32align, d_ualarm, d_usleep
 
 =item Generic Improvements
 
+=item New Or Improved Platforms
+
 =back
 
 =item Selected Bug Fixes
@@ -8064,450 +8611,469 @@ d_strtoq, d_u32align, d_ualarm, d_usleep
 
 =item Changed Internals
 
+=item Security Vulnerability Closed [561]
+
+=item New Tests
+
 =item Known Problems
 
 =over 4
 
-=item Unicode Support Still Far From Perfect
+=item The Compiler Suite Is Still Very Experimental
 
-=item EBCDIC Still A Lost Platform
+=item Localising Tied Arrays and Hashes Is Broken
 
 =item Building Extensions Can Fail Because Of Largefiles
 
-=item ftmp-security tests warn 'system possibly insecure'
+=item Modifying $_ Inside for(..)
 
-=item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
+=item mod_perl 1.26 Doesn't Build With Threaded Perl
 
-=item Long Doubles Still Don't Work In Solaris
+=item lib/ftmp-security tests warn 'system possibly insecure'
 
-=item Linux With Sfio Fails op/misc Test 48
+=item libwww-perl (LWP) fails base/date #51
 
-=item Storable tests fail in some platforms
+=item PDL failing some tests
 
-=item Threads Are Still Experimental
+=item Perl_get_sv
 
-=item The Compiler Suite Is Still Experimental
+=item Self-tying Problems
 
-=back
+=item ext/threads/t/libc
 
-=item Reporting Bugs
+=item Failure of Thread (5.005-style) tests
 
-=item SEE ALSO
+=item Timing problems
 
-=item HISTORY
+=item Tied/Magical Array/Hash Elements Do Not Autovivify
+
+=item Unicode in package/class and subroutine names does not work
 
 =back
 
-=head2 perl561delta - what's new for perl v5.6.x
+=item Platform Specific Problems
 
 =over 4
 
-=item DESCRIPTION
+=item AIX
 
-=item Summary of changes between 5.6.0 and 5.6.1
+=item Alpha systems with old gccs fail several tests
 
-=over 4
+=item AmigaOS
 
-=item Security Issues
+=item BeOS
 
-=item Core bug fixes
+=item Cygwin "unable to remap"
 
-C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
-Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
-references to special variables, Lexical warnings, Spurious warnings and
-errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
-map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
-Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
-Module;>, Tests
+=item Cygwin ndbm tests fail on FAT
 
-=item Core features
+=item DJGPP Failures
 
-=item Configuration issues
+=item FreeBSD built with ithreads coredumps reading large directories
 
-=item Documentation
+=item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
 
-=item Bundled modules
+=item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
 
-B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
-Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
-IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
-Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
+=item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
 
-=item Platform-specific improvements
+=item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
 
-NCR MP-RAS, NonStop-UX
+=item Linux With Sfio Fails op/misc Test 48
 
-=back
+=item Mac OS X
 
-=item Core Enhancements
+=item Mac OS X dyld undefined symbols
 
-=over 4
+=item OS/2 Test Failures
 
-=item Interpreter cloning, threads, and concurrency
+=item op/sprintf tests 91, 129, and 130
 
-=item Lexically scoped warning categories
+=item SCO
 
-=item Unicode and UTF-8 support
+=item Solaris 2.5
 
-=item Support for interpolating named characters
+=item Solaris x86 Fails Tests With -Duse64bitint
 
-=item "our" declarations
+=item SUPER-UX (NEC SX)
 
-=item Support for strings represented as a vector of ordinals
+=item Term::ReadKey not working on Win32
 
-=item Improved Perl version numbering system
+=item UNICOS/mk
 
-=item New syntax for declaring subroutine attributes
+=item UTS
 
-=item File and directory handles can be autovivified
+=item VOS (Stratus)
 
-=item open() with more than two arguments
+=item VMS
 
-=item 64-bit support
+=item Win32
 
-=item Large file support
+=item XML::Parser not working
 
-=item Long doubles
+=item z/OS (OS/390)
 
-=item "more bits"
+=item Unicode Support on EBCDIC Still Spotty
 
-=item Enhanced support for sort() subroutines
+=item Seen In Perl 5.7 But Gone Now
 
-=item C<sort $coderef @foo> allowed
+=back
 
-=item File globbing implemented internally
+=item Reporting Bugs
 
-=item Support for CHECK blocks
+=item SEE ALSO
 
-=item POSIX character class syntax [: :] supported
+=item HISTORY
 
-=item Better pseudo-random number generator
+=back
 
-=item Improved C<qw//> operator
+=head2 perl573delta - what's new for perl v5.7.3
 
-=item Better worst-case behavior of hashes
+=over 4
 
-=item pack() format 'Z' supported
+=item DESCRIPTION
 
-=item pack() format modifier '!' supported
+=item Changes
 
-=item pack() and unpack() support counted strings
+=item Reporting Bugs
 
-=item Comments in pack() templates
+=item SEE ALSO
 
-=item Weak references
+=item HISTORY
 
-=item Binary numbers supported
+=back
 
-=item Lvalue subroutines
+=head2 perl572delta - what's new for perl v5.7.2
 
-=item Some arrows may be omitted in calls through references
+=over 4
 
-=item Boolean assignment operators are legal lvalues
+=item DESCRIPTION
 
-=item exists() is supported on subroutine names
+=item Security Vulnerability Closed
 
-=item exists() and delete() are supported on array elements
+=item Incompatible Changes
 
-=item Pseudo-hashes work better
+=over 4
 
-=item Automatic flushing of output buffers
+=item 64-bit platforms and malloc
 
-=item Better diagnostics on meaningless filehandle operations
+=item AIX Dynaloading
 
-=item Where possible, buffered data discarded from duped input filehandle
+=item Socket Extension Dynamic in VMS
 
-=item eof() has the same old magic as <>
+=item Different Definition of the Unicode Character Classes \p{In...}
 
-=item binmode() can be used to set :crlf and :raw modes
+=item Deprecations
 
-=item C<-T> filetest recognizes UTF-8 encoded files as "text"
+=back
 
-=item system(), backticks and pipe open now reflect exec() failure
+=item Core Enhancements
 
-=item Improved diagnostics
+=item Modules and Pragmata
 
-=item Diagnostics follow STDERR
+=over 4
 
-=item More consistent close-on-exec behavior
+=item New Modules and Distributions
 
-=item syswrite() ease-of-use
+=item Updated And Improved Modules and Pragmata
 
-=item Better syntax checks on parenthesized unary operators
+=back
 
-=item Bit operators support full native integer width
+=item Utility Changes
 
-=item Improved security features
+=item New Documentation
 
-=item More functional bareword prototype (*)
+=item Installation and Configuration Improvements
 
-=item C<require> and C<do> may be overridden
+=over 4
 
-=item $^X variables may now have names longer than one character
+=item New Or Improved Platforms
 
-=item New variable $^C reflects C<-c> switch
+=item Generic Improvements
 
-=item New variable $^V contains Perl version as a string
+=back
 
-=item Optional Y2K warnings
+=item Selected Bug Fixes
 
-=item Arrays now always interpolate into double-quoted strings
+=over 4
 
-=item @- and @+ provide starting/ending offsets of regex submatches
+=item Platform Specific Changes and Fixes
 
 =back
 
-=item Modules and Pragmata
+=item New or Changed Diagnostics
+
+=item Source Code Enhancements
 
 =over 4
 
-=item Modules
+=item MAGIC constants
 
-attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
-DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
-Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
-File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
-Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
-podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
-pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
-Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
+=item Better commented code
 
-=item Pragmata
+=item Regex pre-/post-compilation items matched up
+
+=item gcc -Wall
 
 =back
 
-=item Utility Changes
+=item New Tests
+
+=item Known Problems
 
 =over 4
 
-=item dprofpp
+=item AIX
 
-=item find2perl
+=item Amiga Perl Invoking Mystery
 
-=item h2xs
+=item lib/ftmp-security tests warn 'system possibly insecure'
 
-=item perlcc
+=item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
 
-=item perldoc
+=item HP-UX lib/io_multihomed Fails When LP64-Configured
 
-=item The Perl Debugger
+=item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
 
-=back
+=item Linux With Sfio Fails op/misc Test 48
 
-=item Improved Documentation
+=item OS/390
 
-perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
-perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
-perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
-perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
+=item op/sprintf tests 129 and 130
 
-=item Performance enhancements
+=item  Failure of Thread tests
 
-=over 4
+=item UNICOS
 
-=item Simple sort() using { $a <=> $b } and the like are optimized
+=item UTS
 
-=item Optimized assignments to lexical variables
+=item VMS
 
-=item Faster subroutine calls
+=item Win32
 
-=item delete(), each(), values() and hash iteration are faster
+=item Localising a Tied Variable Leaks Memory
+
+=item Self-tying of Arrays and Hashes Is Forbidden
+
+=item Variable Attributes are not Currently Usable for Tieing
+
+=item Building Extensions Can Fail Because Of Largefiles
+
+=item The Compiler Suite Is Still Experimental
+
+=item The Long Double Support is Still Experimental
 
 =back
 
-=item Installation and Configuration Improvements
+=item Reporting Bugs
+
+=item SEE ALSO
+
+=item HISTORY
+
+=back
+
+=head2 perl571delta - what's new for perl v5.7.1
 
 =over 4
 
-=item -Dusethreads means something different
+=item DESCRIPTION
 
-=item New Configure flags
+=item Security Vulnerability Closed
 
-=item Threadedness and 64-bitness now more daring
+=item Incompatible Changes
 
-=item Long Doubles
+=item Core Enhancements
 
-=item -Dusemorebits
+=over 4
 
-=item -Duselargefiles
+=item AUTOLOAD Is Now Lvaluable
 
-=item installusrbinperl
+=item PerlIO is Now The Default
 
-=item SOCKS support
+=item Signals Are Now Safe
 
-=item C<-A> flag
+=back
 
-=item Enhanced Installation Directories
+=item Modules and Pragmata
 
-=item gcc automatically tried if 'cc' does not seem to be working
+=over 4
+
+=item New Modules
+
+=item Updated And Improved Modules and Pragmata
 
 =back
 
-=item Platform specific changes
+=item Performance Enhancements
+
+=item Utility Changes
+
+=item New Documentation
 
 =over 4
 
-=item Supported platforms
+=item perlclib
 
-=item DOS
+=item perliol
 
-=item OS390 (OpenEdition MVS)
+=item README.aix
 
-=item VMS
+=item README.bs2000
 
-=item Win32
+=item README.macos
+
+=item README.mpeix
+
+=item README.solaris
+
+=item README.vos
+
+=item Porting/repository.pod
 
 =back
 
-=item Significant bug fixes
+=item Installation and Configuration Improvements
 
 =over 4
 
-=item <HANDLE> on empty files
+=item New Or Improved Platforms
 
-=item C<eval '...'> improvements
+=item Generic Improvements
 
-=item All compilation errors are true errors
+d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
+need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
+d_strtoq, d_u32align, d_ualarm, d_usleep
 
-=item Implicitly closed filehandles are safer
+=back
 
-=item Behavior of list slices is more consistent
+=item Selected Bug Fixes
 
-=item C<(\$)> prototype and C<$foo{a}>
+=over 4
 
-=item C<goto &sub> and AUTOLOAD
+=item Platform Specific Changes and Fixes
 
-=item C<-bareword> allowed under C<use integer>
+=back
 
-=item Failures in DESTROY()
+=item New or Changed Diagnostics
 
-=item Locale bugs fixed
+=item Changed Internals
 
-=item Memory leaks
+=item New Tests
 
-=item Spurious subroutine stubs after failed subroutine calls
+=item Known Problems
 
-=item Taint failures under C<-U>
+=over 4
 
-=item END blocks and the C<-c> switch
+=item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
 
-=item Potential to leak DATA filehandles
+=item lib/ftmp-security tests warn 'system possibly insecure'
 
-=back
+=item lib/io_multihomed Fails In LP64-Configured HP-UX
 
-=item New or Changed Diagnostics
+=item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
 
-"%s" variable %s masks earlier declaration in same %s, "my sub" not yet
-implemented, "our" variable %s redeclared, '!' allowed only after types %s,
-/ cannot take a count, / must be followed by a, A or Z, / must be followed
-by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
-\\%c passed through, /%s/: Unrecognized escape \\%c in character class
-passed through, /%s/ should probably be written as "%s", %s() called too
-early to check prototype, %s argument is not a HASH or ARRAY element, %s
-argument is not a HASH or ARRAY element or slice, %s argument is not a
-subroutine name, %s package attribute may clash with future reserved word:
-%s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
-substitution pattern, Bad realloc() ignored, Bareword found in conditional,
-Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
-size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
-filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
-Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
-Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
-remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
-weaken a nonreference, Character class [:%s:] unknown, Character class
-syntax [%s] belongs inside character classes, Constant is not %s reference,
-constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
-defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
-"local" instead of "our"?), Document contains no data, entering effective
-%s failed, false [] range "%s" in regexp, Filehandle %s opened only for
-output, flock() on closed filehandle %s, Global symbol "%s" requires
-explicit package name, Hexadecimal number > 0xffffffff non-portable,
-Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
-|%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
-number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
-%s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
-separator character %s in attribute list, Invalid separator character %s in
-subroutine attribute list, leaving effective %s failed, Lvalue subs
-returning %s not implemented yet, Method %s not permitted, Missing
-%sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
-No %s specified for -%c, No package name allowed for variable %s in "our",
-No space allowed after -%c, no UTC offset information; assuming local time
-is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
-panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
-around "%s" list, Possible unintended interpolation of %s in string,
-Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
-instead, Premature end of script headers, Repeat count in pack overflows,
-Repeat count in unpack overflows, realloc() of freed memory ignored,
-Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
-zero-length expression, switching effective %s is not implemented, This
-Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
-environ elements (%s=%s), Too late to run %s block, Unknown open() mode
-'%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
-escape \\%c passed through, Unterminated attribute parameter in attribute
-list, Unterminated attribute list, Unterminated attribute parameter in
-subroutine attribute list, Unterminated subroutine attribute list, Value of
-CLI symbol "%s" too long, Version number must be a constant number
+=item lib/b test 19
 
-=item New tests
+=item Linux With Sfio Fails op/misc Test 48
+
+=item sigaction test 13 in VMS
+
+=item sprintf tests 129 and 130
+
+=item  Failure of Thread tests
+
+=item Localising a Tied Variable Leaks Memory
+
+=item Self-tying of Arrays and Hashes Is Forbidden
+
+=item Building Extensions Can Fail Because Of Largefiles
+
+=item The Compiler Suite Is Still Experimental
+
+=back
+
+=item Reporting Bugs
+
+=item SEE ALSO
+
+=item HISTORY
+
+=back
+
+=head2 perl570delta - what's new for perl v5.7.0
+
+=over 4
+
+=item DESCRIPTION
+
+=item Security Vulnerability Closed
 
 =item Incompatible Changes
 
+=item Core Enhancements
+
+=item Modules and Pragmata
+
 =over 4
 
-=item Perl Source Incompatibilities
+=item New Modules
 
-CHECK is a new keyword, Treatment of list slices of undef has changed,
-Format of $English::PERL_VERSION is different, Literals of the form
-C<1.2.3> parse differently, Possibly changed pseudo-random number
-generator, Hashing function for hash keys has changed, C<undef> fails on
-read only values, Close-on-exec bit may be set on pipe and socket handles,
-Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
-values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
-Text of some diagnostic output has changed, C<%@> has been removed,
-Parenthesized not() behaves like a list operator, Semantics of bareword
-prototype C<(*)> have changed, Semantics of bit operators may have changed
-on 64-bit platforms, More builtins taint their results
+=item Updated And Improved Modules and Pragmata
 
-=item C Source Incompatibilities
+=back
 
-C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
+=item Utility Changes
 
-=item Compatible C Source API Changes
+=item New Documentation
 
-C<PATCHLEVEL> is now C<PERL_VERSION>
+=item Performance Enhancements
 
-=item Binary Incompatibilities
+=item Installation and Configuration Improvements
+
+=over 4
+
+=item Generic Improvements
+
+=back
+
+=item Selected Bug Fixes
+
+=over 4
+
+=item Platform Specific Changes and Fixes
 
 =back
 
+=item New or Changed Diagnostics
+
+=item Changed Internals
+
 =item Known Problems
 
 =over 4
 
-=item Localizing a tied hash element may leak memory
+=item Unicode Support Still Far From Perfect
 
-=item Known test failures
+=item EBCDIC Still A Lost Platform
 
-=item EBCDIC platforms not fully supported
+=item Building Extensions Can Fail Because Of Largefiles
 
-=item UNICOS/mk CC failures during Configure run
+=item ftmp-security tests warn 'system possibly insecure'
 
-=item Arrow operator and arrays
+=item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
 
-=item Experimental features
+=item Long Doubles Still Don't Work In Solaris
 
-Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
-pseudo-hash data type, The Compiler suite, Internal implementation of file
-globbing, The DB module, The regular expression code constructs:
+=item Linux With Sfio Fails op/misc Test 48
 
-=back
+=item Storable tests fail in some platforms
 
-=item Obsolete Diagnostics
+=item Threads Are Still Experimental
 
-Character class syntax [: :] is reserved for future extensions, Ill-formed
-logical name |%s| in prime_env_iter, In string, @%s now must be written as
-\@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
-to mean "${$}<digit>" is deprecated
+=item The Compiler Suite Is Still Experimental
+
+=back
 
 =item Reporting Bugs
 
@@ -8517,12 +9083,47 @@ to mean "${$}<digit>" is deprecated
 
 =back
 
-=head2 perl56delta - what's new for perl v5.6.0
+=head2 perl561delta - what's new for perl v5.6.x
 
 =over 4
 
 =item DESCRIPTION
 
+=item Summary of changes between 5.6.0 and 5.6.1
+
+=over 4
+
+=item Security Issues
+
+=item Core bug fixes
+
+C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
+Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
+references to special variables, Lexical warnings, Spurious warnings and
+errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
+map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
+Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
+Module;>, Tests
+
+=item Core features
+
+=item Configuration issues
+
+=item Documentation
+
+=item Bundled modules
+
+B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
+Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
+IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
+Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
+
+=item Platform-specific improvements
+
+NCR MP-RAS, NonStop-UX
+
+=back
+
 =item Core Enhancements
 
 =over 4
@@ -8637,7 +9238,7 @@ to mean "${$}<digit>" is deprecated
 
 =item Arrays now always interpolate into double-quoted strings
 
-=item @- and @+ provide starting/ending offsets of regex matches
+=item @- and @+ provide starting/ending offsets of regex submatches
 
 =back
 
@@ -8723,6 +9324,8 @@ perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
 
 =item Enhanced Installation Directories
 
+=item gcc automatically tried if 'cc' does not seem to be working
+
 =back
 
 =item Platform specific changes
@@ -8866,16 +9469,11 @@ C<PATCHLEVEL> is now C<PERL_VERSION>
 
 =over 4
 
-=item Thread test failures
-
-=item EBCDIC platforms not supported
-
-=item In 64-bit HP-UX the lib/io_multihomed test may hang
+=item Localizing a tied hash element may leak memory
 
-=item NEXTSTEP 3.3 POSIX test failure
+=item Known test failures
 
-=item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
-gcc
+=item EBCDIC platforms not fully supported
 
 =item UNICOS/mk CC failures during Configure run
 
@@ -8904,372 +9502,386 @@ to mean "${$}<digit>" is deprecated
 
 =back
 
-=head2 perl5005delta - what's new for perl5.005
+=head2 perl56delta - what's new for perl v5.6.0
 
 =over 4
 
 =item DESCRIPTION
 
-=item About the new versioning system
-
-=item Incompatible Changes
+=item Core Enhancements
 
 =over 4
 
-=item WARNING: This version is not binary compatible with Perl 5.004.
+=item Interpreter cloning, threads, and concurrency
 
-=item Default installation structure has changed
+=item Lexically scoped warning categories
 
-=item Perl Source Compatibility
+=item Unicode and UTF-8 support
 
-=item C Source Compatibility
+=item Support for interpolating named characters
 
-=item Binary Compatibility
+=item "our" declarations
 
-=item Security fixes may affect compatibility
+=item Support for strings represented as a vector of ordinals
 
-=item Relaxed new mandatory warnings introduced in 5.004
+=item Improved Perl version numbering system
 
-=item Licensing
+=item New syntax for declaring subroutine attributes
 
-=back
+=item File and directory handles can be autovivified
 
-=item Core Changes
+=item open() with more than two arguments
 
-=over 4
+=item 64-bit support
 
-=item Threads
+=item Large file support
 
-=item Compiler
+=item Long doubles
 
-=item Regular Expressions
+=item "more bits"
 
-Many new and improved optimizations, Many bug fixes, New regular expression
-constructs, New operator for precompiled regular expressions, Other
-improvements, Incompatible changes
+=item Enhanced support for sort() subroutines
 
-=item  Improved malloc()
+=item C<sort $coderef @foo> allowed
 
-=item Quicksort is internally implemented
+=item File globbing implemented internally
 
-=item Reliable signals
+=item Support for CHECK blocks
 
-=item Reliable stack pointers
+=item POSIX character class syntax [: :] supported
 
-=item More generous treatment of carriage returns
+=item Better pseudo-random number generator
 
-=item Memory leaks
-
-=item Better support for multiple interpreters
-
-=item Behavior of local() on array and hash elements is now well-defined
-
-=item C<%!> is transparently tied to the L<Errno> module
+=item Improved C<qw//> operator
 
-=item Pseudo-hashes are supported
+=item Better worst-case behavior of hashes
 
-=item C<EXPR foreach EXPR> is supported
+=item pack() format 'Z' supported
 
-=item Keywords can be globally overridden
+=item pack() format modifier '!' supported
 
-=item C<$^E> is meaningful on Win32
+=item pack() and unpack() support counted strings
 
-=item C<foreach (1..1000000)> optimized
+=item Comments in pack() templates
 
-=item C<Foo::> can be used as implicitly quoted package name
+=item Weak references
 
-=item C<exists $Foo::{Bar::}> tests existence of a package
+=item Binary numbers supported
 
-=item Better locale support
+=item Lvalue subroutines
 
-=item Experimental support for 64-bit platforms
+=item Some arrows may be omitted in calls through references
 
-=item prototype() returns useful results on builtins
+=item Boolean assignment operators are legal lvalues
 
-=item Extended support for exception handling
+=item exists() is supported on subroutine names
 
-=item Re-blessing in DESTROY() supported for chaining DESTROY() methods
+=item exists() and delete() are supported on array elements
 
-=item All C<printf> format conversions are handled internally
+=item Pseudo-hashes work better
 
-=item New C<INIT> keyword
+=item Automatic flushing of output buffers
 
-=item New C<lock> keyword
+=item Better diagnostics on meaningless filehandle operations
 
-=item New C<qr//> operator
+=item Where possible, buffered data discarded from duped input filehandle
 
-=item C<our> is now a reserved word
+=item eof() has the same old magic as <>
 
-=item Tied arrays are now fully supported
+=item binmode() can be used to set :crlf and :raw modes
 
-=item Tied handles support is better
+=item C<-T> filetest recognizes UTF-8 encoded files as "text"
 
-=item 4th argument to substr
+=item system(), backticks and pipe open now reflect exec() failure
 
-=item Negative LENGTH argument to splice
+=item Improved diagnostics
 
-=item Magic lvalues are now more magical
+=item Diagnostics follow STDERR
 
-=item <> now reads in records
+=item More consistent close-on-exec behavior
 
-=back
+=item syswrite() ease-of-use
 
-=item Supported Platforms
+=item Better syntax checks on parenthesized unary operators
 
-=over 4
+=item Bit operators support full native integer width
 
-=item New Platforms
+=item Improved security features
 
-=item Changes in existing support
+=item More functional bareword prototype (*)
 
-=back
+=item C<require> and C<do> may be overridden
 
-=item Modules and Pragmata
+=item $^X variables may now have names longer than one character
 
-=over 4
+=item New variable $^C reflects C<-c> switch
 
-=item New Modules
+=item New variable $^V contains Perl version as a string
 
-B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
-ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
-Thread, attrs, fields, re
+=item Optional Y2K warnings
 
-=item Changes in existing modules
+=item Arrays now always interpolate into double-quoted strings
 
-Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
-MakeMaker, CPAN, Cwd
+=item @- and @+ provide starting/ending offsets of regex matches
 
 =back
 
-=item Utility Changes
-
-=item Documentation Changes
-
-=item New Diagnostics
-
-Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
-while coercing array into hash, Bareword "%s" refers to nonexistent
-package, Can't call method "%s" on an undefined value, Can't check
-filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
-goto subroutine from an eval-string, Can't localize pseudo-hash element,
-Can't use %%! because Errno.pm is not available, Cannot find an opnumber
-for "%s", Character class syntax [. .] is reserved for future extensions,
-Character class syntax [: :] is reserved for future extensions, Character
-class syntax [= =] is reserved for future extensions, %s: Eval-group in
-insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
-Eval-group not allowed at run time, Explicit blessing to '' (assuming
-package main), Illegal hex digit ignored, No such array field, No such
-field "%s" in variable %s of type %s, Out of memory during ridiculously
-large request, Range iterator outside integer range, Recursive inheritance
-detected while looking for method '%s' %s, Reference found where even-sized
-list expected, Undefined value assigned to typeglob, Use of reserved word
-"%s" is deprecated, perl: warning: Setting locale failed
-
-=item Obsolete Diagnostics
-
-Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
-temporary file, regexp too big
+=item Modules and Pragmata
 
-=item Configuration Changes
+=over 4
 
-=item BUGS
+=item Modules
 
-=item SEE ALSO
+attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
+DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
+Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
+File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
+Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
+podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
+pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
+Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
 
-=item HISTORY
+=item Pragmata
 
 =back
 
-=head2 perl5004delta - what's new for perl5.004
-
-=over 4
-
-=item DESCRIPTION
-
-=item Supported Environments
-
-=item Core Changes
+=item Utility Changes
 
 =over 4
 
-=item List assignment to %ENV works
+=item dprofpp
 
-=item Change to "Can't locate Foo.pm in @INC" error
+=item find2perl
 
-=item Compilation option: Binary compatibility with 5.003
+=item h2xs
 
-=item $PERL5OPT environment variable
+=item perlcc
 
-=item Limitations on B<-M>, B<-m>, and B<-T> options
+=item perldoc
 
-=item More precise warnings
+=item The Perl Debugger
 
-=item Deprecated: Inherited C<AUTOLOAD> for non-methods
+=back
 
-=item Previously deprecated %OVERLOAD is no longer usable
+=item Improved Documentation
 
-=item Subroutine arguments created only when they're modified
+perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
+perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
+perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
+perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
 
-=item Group vector changeable with C<$)>
+=item Performance enhancements
 
-=item Fixed parsing of $$<digit>, &$<digit>, etc.
+=over 4
 
-=item Fixed localization of $<digit>, $&, etc.
+=item Simple sort() using { $a <=> $b } and the like are optimized
 
-=item No resetting of $. on implicit close
+=item Optimized assignments to lexical variables
 
-=item C<wantarray> may return undef
+=item Faster subroutine calls
 
-=item C<eval EXPR> determines value of EXPR in scalar context
+=item delete(), each(), values() and hash iteration are faster
 
-=item Changes to tainting checks
+=back
 
-No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
-spawning if tainted $TERM doesn't look like a terminal name
+=item Installation and Configuration Improvements
 
-=item New Opcode module and revised Safe module
+=over 4
 
-=item Embedding improvements
+=item -Dusethreads means something different
 
-=item Internal change: FileHandle class based on IO::* classes
+=item New Configure flags
 
-=item Internal change: PerlIO abstraction interface
+=item Threadedness and 64-bitness now more daring
 
-=item New and changed syntax
+=item Long Doubles
 
-$coderef->(PARAMS)
+=item -Dusemorebits
 
-=item New and changed builtin constants
+=item -Duselargefiles
 
-__PACKAGE__
+=item installusrbinperl
 
-=item New and changed builtin variables
+=item SOCKS support
 
-$^E, $^H, $^M
+=item C<-A> flag
 
-=item New and changed builtin functions
+=item Enhanced Installation Directories
 
-delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
-Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
-VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
-reset search position on failure, C<m//x> ignores whitespace before ?*+{},
-nested C<sub{}> closures work now, formats work right on changing lexicals
+=back
 
-=item New builtin methods
+=item Platform specific changes
 
-isa(CLASS), can(METHOD), VERSION( [NEED] )
+=over 4
 
-=item TIEHANDLE now supported
+=item Supported platforms
 
-TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
-LIST, READLINE this, GETC this, DESTROY this
+=item DOS
 
-=item Malloc enhancements
+=item OS390 (OpenEdition MVS)
 
--DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
+=item VMS
 
-=item Miscellaneous efficiency enhancements
+=item Win32
 
 =back
 
-=item Support for More Operating Systems
+=item Significant bug fixes
 
 =over 4
 
-=item Win32
-
-=item Plan 9
+=item <HANDLE> on empty files
 
-=item QNX
+=item C<eval '...'> improvements
 
-=item AmigaOS
+=item All compilation errors are true errors
 
-=back
+=item Implicitly closed filehandles are safer
 
-=item Pragmata
+=item Behavior of list slices is more consistent
 
-use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
-constant NAME => VALUE, use locale, use ops, use vmsish
+=item C<(\$)> prototype and C<$foo{a}>
 
-=item Modules
+=item C<goto &sub> and AUTOLOAD
 
-=over 4
+=item C<-bareword> allowed under C<use integer>
 
-=item Required Updates
+=item Failures in DESTROY()
 
-=item Installation directories
+=item Locale bugs fixed
 
-=item Module information summary
+=item Memory leaks
 
-=item Fcntl
+=item Spurious subroutine stubs after failed subroutine calls
 
-=item IO
+=item Taint failures under C<-U>
 
-=item Math::Complex
+=item END blocks and the C<-c> switch
 
-=item Math::Trig
+=item Potential to leak DATA filehandles
 
-=item DB_File
+=back
 
-=item Net::Ping
+=item New or Changed Diagnostics
 
-=item Object-oriented overrides for builtin operators
+"%s" variable %s masks earlier declaration in same %s, "my sub" not yet
+implemented, "our" variable %s redeclared, '!' allowed only after types %s,
+/ cannot take a count, / must be followed by a, A or Z, / must be followed
+by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
+\\%c passed through, /%s/: Unrecognized escape \\%c in character class
+passed through, /%s/ should probably be written as "%s", %s() called too
+early to check prototype, %s argument is not a HASH or ARRAY element, %s
+argument is not a HASH or ARRAY element or slice, %s argument is not a
+subroutine name, %s package attribute may clash with future reserved word:
+%s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
+substitution pattern, Bad realloc() ignored, Bareword found in conditional,
+Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
+size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
+filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
+Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
+Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
+remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
+weaken a nonreference, Character class [:%s:] unknown, Character class
+syntax [%s] belongs inside character classes, Constant is not %s reference,
+constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
+defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
+"local" instead of "our"?), Document contains no data, entering effective
+%s failed, false [] range "%s" in regexp, Filehandle %s opened only for
+output, flock() on closed filehandle %s, Global symbol "%s" requires
+explicit package name, Hexadecimal number > 0xffffffff non-portable,
+Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
+|%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
+number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
+%s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
+separator character %s in attribute list, Invalid separator character %s in
+subroutine attribute list, leaving effective %s failed, Lvalue subs
+returning %s not implemented yet, Method %s not permitted, Missing
+%sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
+No %s specified for -%c, No package name allowed for variable %s in "our",
+No space allowed after -%c, no UTC offset information; assuming local time
+is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
+panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
+around "%s" list, Possible unintended interpolation of %s in string,
+Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
+instead, Premature end of script headers, Repeat count in pack overflows,
+Repeat count in unpack overflows, realloc() of freed memory ignored,
+Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
+zero-length expression, switching effective %s is not implemented, This
+Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
+environ elements (%s=%s), Too late to run %s block, Unknown open() mode
+'%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
+escape \\%c passed through, Unterminated attribute parameter in attribute
+list, Unterminated attribute list, Unterminated attribute parameter in
+subroutine attribute list, Unterminated subroutine attribute list, Value of
+CLI symbol "%s" too long, Version number must be a constant number
 
-=back
+=item New tests
 
-=item Utility Changes
+=item Incompatible Changes
 
 =over 4
 
-=item pod2html
+=item Perl Source Incompatibilities
 
-Sends converted HTML to standard output
+CHECK is a new keyword, Treatment of list slices of undef has changed,
+Format of $English::PERL_VERSION is different, Literals of the form
+C<1.2.3> parse differently, Possibly changed pseudo-random number
+generator, Hashing function for hash keys has changed, C<undef> fails on
+read only values, Close-on-exec bit may be set on pipe and socket handles,
+Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
+values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
+Text of some diagnostic output has changed, C<%@> has been removed,
+Parenthesized not() behaves like a list operator, Semantics of bareword
+prototype C<(*)> have changed, Semantics of bit operators may have changed
+on 64-bit platforms, More builtins taint their results
 
-=item xsubpp
+=item C Source Incompatibilities
 
-C<void> XSUBs now default to returning nothing
+C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
+
+=item Compatible C Source API Changes
+
+C<PATCHLEVEL> is now C<PERL_VERSION>
+
+=item Binary Incompatibilities
 
 =back
 
-=item C Language API Changes
+=item Known Problems
 
-C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
-manipulating hashes
+=over 4
 
-=item Documentation Changes
+=item Thread test failures
 
-L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
-L<perlmodlib>, L<perldebug>, L<perlsec>
+=item EBCDIC platforms not supported
 
-=item New Diagnostics
+=item In 64-bit HP-UX the lib/io_multihomed test may hang
 
-"my" variable %s masks earlier declaration in same scope, %s argument is
-not a HASH element or slice, Allocation too large: %lx, Allocation too
-large, Applying %s to %s will act on scalar(%s), Attempt to free
-nonexistent shared string, Attempt to use reference as lvalue in substr,
-Bareword "%s" refers to nonexistent package, Can't redefine active sort
-subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
-use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
-subroutine %s redefined, Constant subroutine %s undefined, Copy method did
-not return a reference, Died, Exiting pseudo-block via %s, Identifier too
-long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
-%s, Integer overflow in hex number, Integer overflow in octal number,
-internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
-in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
-possible typo, Null picture in formline, Offset outside string, Out of
-memory!, Out of memory during request for %s, panic: frexp, Possible
-attempt to put comments in qw() list, Possible attempt to separate words
-with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
-while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
-option, untie attempted while %d inner references still exist, Unrecognized
-character %s, Unsupported function fork, Use of "$$<digit>" to mean
-"${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
-Variable "%s" may be unavailable, Variable "%s" will not stay shared,
-Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
-Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
-long, Process terminated by SIG%s
+=item NEXTSTEP 3.3 POSIX test failure
 
-=item BUGS
+=item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
+gcc
+
+=item UNICOS/mk CC failures during Configure run
+
+=item Arrow operator and arrays
+
+=item Experimental features
+
+Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
+pseudo-hash data type, The Compiler suite, Internal implementation of file
+globbing, The DB module, The regular expression code constructs:
+
+=back
+
+=item Obsolete Diagnostics
+
+Character class syntax [: :] is reserved for future extensions, Ill-formed
+logical name |%s| in prime_env_iter, In string, @%s now must be written as
+\@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
+to mean "${$}<digit>" is deprecated
+
+=item Reporting Bugs
 
 =item SEE ALSO
 
@@ -9277,799 +9889,855 @@ long, Process terminated by SIG%s
 
 =back
 
-=head2 perlartistic - the Perl Artistic License
+=head2 perl5005delta - what's new for perl5.005
 
 =over 4
 
-=item SYNOPSIS
-
 =item DESCRIPTION
 
-=item The "Artistic License"
+=item About the new versioning system
+
+=item Incompatible Changes
 
 =over 4
 
-=item Preamble
+=item WARNING: This version is not binary compatible with Perl 5.004.
 
-=item Definitions
+=item Default installation structure has changed
 
-"Package", "Standard Version", "Copyright Holder", "You", "Reasonable
-copying fee", "Freely Available"
+=item Perl Source Compatibility
 
-=item Conditions
+=item C Source Compatibility
 
-a), b), c), d), a), b), c), d)
+=item Binary Compatibility
 
-=back
+=item Security fixes may affect compatibility
+
+=item Relaxed new mandatory warnings introduced in 5.004
+
+=item Licensing
 
 =back
 
-=head2 perlgpl - the GNU General Public License, version 2
+=item Core Changes
 
 =over 4
 
-=item SYNOPSIS
+=item Threads
 
-=back
+=item Compiler
 
-=over 4
+=item Regular Expressions
 
-=item DESCRIPTION
+Many new and improved optimizations, Many bug fixes, New regular expression
+constructs, New operator for precompiled regular expressions, Other
+improvements, Incompatible changes
 
-=item GNU GENERAL PUBLIC LICENSE
+=item  Improved malloc()
 
-=back
+=item Quicksort is internally implemented
 
-=head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
+=item Reliable signals
 
-=over 4
+=item Reliable stack pointers
 
-=item DESCRIPTION
+=item More generous treatment of carriage returns
 
-=over 4
+=item Memory leaks
 
-=item Compiling Perl 5 on AIX
+=item Better support for multiple interpreters
 
-=item OS level
+=item Behavior of local() on array and hash elements is now well-defined
 
-=item Building Dynamic Extensions on AIX
+=item C<%!> is transparently tied to the L<Errno> module
 
-=item The IBM ANSI C Compiler
+=item Pseudo-hashes are supported
 
-=item The usenm option
+=item C<EXPR foreach EXPR> is supported
 
-=item Using GNU's gcc for building perl
+=item Keywords can be globally overridden
 
-=item Using Large Files with Perl
+=item C<$^E> is meaningful on Win32
 
-=item Threaded Perl
+=item C<foreach (1..1000000)> optimized
 
-=item 64-bit Perl
+=item C<Foo::> can be used as implicitly quoted package name
 
-=item AIX 4.2 and extensions using C++ with statics
+=item C<exists $Foo::{Bar::}> tests existence of a package
 
-=back
+=item Better locale support
 
-=item AUTHOR
+=item Experimental support for 64-bit platforms
 
-=item DATE
+=item prototype() returns useful results on builtins
 
-=back
+=item Extended support for exception handling
 
-=head2 perlamiga - Perl under Amiga OS
+=item Re-blessing in DESTROY() supported for chaining DESTROY() methods
 
-=over 4
+=item All C<printf> format conversions are handled internally
 
-=item NOTE
+=item New C<INIT> keyword
 
-=item SYNOPSIS
+=item New C<lock> keyword
 
-=back
+=item New C<qr//> operator
 
-=over 4
+=item C<our> is now a reserved word
 
-=item DESCRIPTION
+=item Tied arrays are now fully supported
 
-=over 4
+=item Tied handles support is better
 
-=item Prerequisites for Compiling Perl on AmigaOS
+=item 4th argument to substr
 
-B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
+=item Negative LENGTH argument to splice
 
-=item Starting Perl programs under AmigaOS
+=item Magic lvalues are now more magical
 
-=item Shortcomings of Perl under AmigaOS
+=item <> now reads in records
 
 =back
 
-=item INSTALLATION
-
-=item Accessing documentation
+=item Supported Platforms
 
 =over 4
 
-=item Manpages for Perl on AmigaOS
-
-=item Perl HTML Documentation on AmigaOS
-
-=item Perl GNU Info Files on AmigaOS
+=item New Platforms
 
-=item Perl LaTeX Documentation on AmigaOS
+=item Changes in existing support
 
 =back
 
-=item BUILDING PERL ON AMIGAOS
+=item Modules and Pragmata
 
 =over 4
 
-=item Build Prerequisites for Perl on AmigaOS
-
-=item Getting the Perl Source for AmigaOS
+=item New Modules
 
-=item Making Perl on AmigaOS
+B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
+ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
+Thread, attrs, fields, re
 
-=item Testing Perl on AmigaOS
+=item Changes in existing modules
 
-=item Installing the built Perl on AmigaOS
+Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
+MakeMaker, CPAN, Cwd
 
 =back
 
-=item PERL 5.8.0 BROKEN IN AMIGAOS
+=item Utility Changes
 
-=item AUTHORS
+=item Documentation Changes
 
-=item SEE ALSO
+=item New Diagnostics
 
-=back
+Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
+while coercing array into hash, Bareword "%s" refers to nonexistent
+package, Can't call method "%s" on an undefined value, Can't check
+filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
+goto subroutine from an eval-string, Can't localize pseudo-hash element,
+Can't use %%! because Errno.pm is not available, Cannot find an opnumber
+for "%s", Character class syntax [. .] is reserved for future extensions,
+Character class syntax [: :] is reserved for future extensions, Character
+class syntax [= =] is reserved for future extensions, %s: Eval-group in
+insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
+Eval-group not allowed at run time, Explicit blessing to '' (assuming
+package main), Illegal hex digit ignored, No such array field, No such
+field "%s" in variable %s of type %s, Out of memory during ridiculously
+large request, Range iterator outside integer range, Recursive inheritance
+detected while looking for method '%s' %s, Reference found where even-sized
+list expected, Undefined value assigned to typeglob, Use of reserved word
+"%s" is deprecated, perl: warning: Setting locale failed
 
-=head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
+=item Obsolete Diagnostics
 
-=over 4
+Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
+temporary file, regexp too big
 
-=item DESCRIPTION
+=item Configuration Changes
 
-=item AUTHOR
+=item BUGS
+
+=item SEE ALSO
+
+=item HISTORY
 
 =back
 
-=head2 perlbeos, README.beos - Perl version 5.8+ on BeOS
+=head2 perl5004delta - what's new for perl5.004
 
 =over 4
 
 =item DESCRIPTION
 
-=item BUILD AND INSTALL
+=item Supported Environments
+
+=item Core Changes
 
 =over 4
 
-=item Requirements
+=item List assignment to %ENV works
 
-=item Configure
+=item Change to "Can't locate Foo.pm in @INC" error
 
-=item Build
+=item Compilation option: Binary compatibility with 5.003
 
-=item Install
+=item $PERL5OPT environment variable
 
-=back
+=item Limitations on B<-M>, B<-m>, and B<-T> options
 
-=item KNOWN PROBLEMS
+=item More precise warnings
 
-=item CONTACT
+=item Deprecated: Inherited C<AUTOLOAD> for non-methods
 
-=back
+=item Previously deprecated %OVERLOAD is no longer usable
 
-=head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
+=item Subroutine arguments created only when they're modified
 
-=over 4
+=item Group vector changeable with C<$)>
 
-=item SYNOPSIS
+=item Fixed parsing of $$<digit>, &$<digit>, etc.
 
-=item DESCRIPTION
+=item Fixed localization of $<digit>, $&, etc.
 
-=over 4
+=item No resetting of $. on implicit close
 
-=item gzip on BS2000
+=item C<wantarray> may return undef
 
-=item bison on BS2000
+=item C<eval EXPR> determines value of EXPR in scalar context
 
-=item Unpacking Perl Distribution on BS2000
+=item Changes to tainting checks
 
-=item Compiling Perl on BS2000
+No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
+spawning if tainted $TERM doesn't look like a terminal name
 
-=item Testing Perl on BS2000
+=item New Opcode module and revised Safe module
 
-=item Installing Perl on BS2000
+=item Embedding improvements
 
-=item Using Perl in the Posix-Shell of BS2000
+=item Internal change: FileHandle class based on IO::* classes
 
-=item Using Perl in "native" BS2000
+=item Internal change: PerlIO abstraction interface
 
-=item Floating point anomalies on BS2000
+=item New and changed syntax
 
-=item Using PerlIO and different encodings on ASCII and EBCDIC partitions
+$coderef->(PARAMS)
 
-=back
+=item New and changed builtin constants
 
-=item AUTHORS
+__PACKAGE__
 
-=item SEE ALSO
+=item New and changed builtin variables
 
-=over 4
+$^E, $^H, $^M
 
-=item Mailing list
+=item New and changed builtin functions
 
-=back
+delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
+Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
+VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
+reset search position on failure, C<m//x> ignores whitespace before ?*+{},
+nested C<sub{}> closures work now, formats work right on changing lexicals
 
-=item HISTORY
+=item New builtin methods
 
-=back
+isa(CLASS), can(METHOD), VERSION( [NEED] )
 
-=head2 perlce - Perl for WinCE
+=item TIEHANDLE now supported
 
-=over 4
+TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
+LIST, READLINE this, GETC this, DESTROY this
 
-=item Building Perl for WinCE
+=item Malloc enhancements
 
-=over 4
+-DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
 
-=item DESCRIPTION
+=item Miscellaneous efficiency enhancements
 
-=item General explanations on cross-compiling WinCE
+=back
 
-=item BUILD
+=item Support for More Operating Systems
 
-Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
-celib-sources, Rainer Keuchel's console-sources, go to C<./win32>
-subdirectory, edit file C<compile.bat>, run    compile.bat, run   
-compile.bat dist
+=over 4
 
-=back
+=item Win32
 
-=item Using Perl on WinCE
+=item Plan 9
 
-=over 4
+=item QNX
 
-=item DESCRIPTION
+=item AmigaOS
 
-=item LIMITATIONS
+=back
 
-=item ENVIRONMENT
+=item Pragmata
 
-PERL5LIB, PATH, TMP, UNIXROOTPATH, ROWS/COLS, HOME, CONSOLEFONTSIZE
+use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
+constant NAME => VALUE, use locale, use ops, use vmsish
 
-=item REGISTRY
+=item Modules
 
-=item XS
+=over 4
 
-=item BUGS
+=item Required Updates
 
-=item INSTALLATION
+=item Installation directories
 
-=back
+=item Module information summary
 
-=item ACKNOWLEDGEMENTS
+=item Fcntl
 
-=item History of WinCE port
+=item IO
 
-=item AUTHORS
+=item Math::Complex
 
-Rainer Keuchel <coyxc@rainer-keuchel.de>, Vadim Konovalov
+=item Math::Trig
 
-=back
+=item DB_File
 
-=head2 perlcygwin, README.cygwin - Perl for Cygwin
+=item Net::Ping
 
-=over 4
+=item Object-oriented overrides for builtin operators
 
-=item SYNOPSIS
+=back
 
-=item PREREQUISITES FOR COMPILING PERL ON CYGWIN
+=item Utility Changes
 
 =over 4
 
-=item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
+=item pod2html
 
-=item Cygwin Configuration
+Sends converted HTML to standard output
 
-C<PATH>, I<nroff>, Permissions
+=item xsubpp
+
+C<void> XSUBs now default to returning nothing
 
 =back
 
-=item CONFIGURE PERL ON CYGWIN
+=item C Language API Changes
 
-=over 4
+C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
+manipulating hashes
 
-=item Stripping Perl Binaries on Cygwin
+=item Documentation Changes
 
-=item Optional Libraries for Perl on Cygwin
+L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
+L<perlmodlib>, L<perldebug>, L<perlsec>
 
-C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
-C<-lcygipc> (C<use IPC::SysV>), C<-lutil>
+=item New Diagnostics
 
-=item Configure-time Options for Perl on Cygwin
+"my" variable %s masks earlier declaration in same scope, %s argument is
+not a HASH element or slice, Allocation too large: %lx, Allocation too
+large, Applying %s to %s will act on scalar(%s), Attempt to free
+nonexistent shared string, Attempt to use reference as lvalue in substr,
+Bareword "%s" refers to nonexistent package, Can't redefine active sort
+subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
+use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
+subroutine %s redefined, Constant subroutine %s undefined, Copy method did
+not return a reference, Died, Exiting pseudo-block via %s, Identifier too
+long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
+%s, Integer overflow in hex number, Integer overflow in octal number,
+internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
+in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
+possible typo, Null picture in formline, Offset outside string, Out of
+memory!, Out of memory during request for %s, panic: frexp, Possible
+attempt to put comments in qw() list, Possible attempt to separate words
+with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
+while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
+option, untie attempted while %d inner references still exist, Unrecognized
+character %s, Unsupported function fork, Use of "$$<digit>" to mean
+"${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
+Variable "%s" may be unavailable, Variable "%s" will not stay shared,
+Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
+Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
+long, Process terminated by SIG%s
 
-C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
-C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
-C<-Dmksymlinks>
+=item BUGS
 
-=item Suspicious Warnings on Cygwin
+=item SEE ALSO
 
-I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
+=item HISTORY
 
 =back
 
-=item MAKE ON CYGWIN
+=head2 perlartistic - the Perl Artistic License
 
 =over 4
 
-=item Errors on Cygwin
-
-=item ld2 on Cygwin
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item TEST ON CYGWIN
+=item The "Artistic License"
 
 =over 4
 
-=item File Permissions on Cygwin
+=item Preamble
 
-=item NDBM_File and ODBM_File do not work on FAT filesystems
+=item Definitions
 
-=item C<fork()> failures in io_* tests
+"Package", "Standard Version", "Copyright Holder", "You", "Reasonable
+copying fee", "Freely Available"
 
-=back
+=item Conditions
 
-=item Specific features of the Cygwin port
+a), b), c), d), a), b), c), d)
 
-=over 4
+=back
 
-=item Script Portability on Cygwin
+=back
 
-Pathnames, Text/Binary, PerlIO, F<.exe>, cygwin vs. windows process ids,
-C<chown()>, Miscellaneous
+=head2 perlgpl - the GNU General Public License, version 2
 
-=item Prebuilt methods:
+=over 4
 
-C<Cwd::cwd>, C<Cygwin::pid_to_winpid>, C<Cygwin::winpid_to_pid>
+=item SYNOPSIS
 
 =back
 
-=item INSTALL PERL ON CYGWIN
-
-=item MANIFEST ON CYGWIN
+=over 4
 
-Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
-Source, Compiled Module Source, Perl Modules/Scripts
+=item DESCRIPTION
 
-=item BUGS ON CYGWIN
+=item GNU GENERAL PUBLIC LICENSE
 
-=item AUTHORS
+=back
 
-=item HISTORY
+=head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
 
-=back
+=over 4
 
-=head2 perldgux - Perl under DG/UX.
+=item DESCRIPTION
 
 =over 4
 
-=item SYNOPSIS
+=item Compiling Perl 5 on AIX
 
-=back
+=item OS level
 
-=over 4
+=item Building Dynamic Extensions on AIX
 
-=item DESCRIPTION
+=item The IBM ANSI C Compiler
 
-=item BUILDING PERL ON DG/UX
+=item The usenm option
 
-=over 4
+=item Using GNU's gcc for building perl
 
-=item Non-threaded Perl on DG/UX
+=item Using Large Files with Perl
 
-=item Threaded Perl on DG/UX
+=item Threaded Perl
 
-=item Testing Perl on DG/UX
+=item 64-bit Perl
 
-=item Installing the built perl on DG/UX
+=item AIX 4.2 and extensions using C++ with statics
 
 =back
 
 =item AUTHOR
 
-=item SEE ALSO
+=item DATE
 
 =back
 
-=head2 perldos - Perl under DOS, W31, W95.
+=head2 perlamiga - Perl under Amiga OS
 
 =over 4
 
+=item NOTE
+
 =item SYNOPSIS
 
-=item DESCRIPTION
+=back
 
 =over 4
 
-=item Prerequisites for Compiling Perl on DOS
+=item DESCRIPTION
 
-DJGPP, Pthreads
+=over 4
 
-=item Shortcomings of Perl under DOS
+=item Prerequisites for Compiling Perl on AmigaOS
 
-=item Building Perl on DOS
+B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
 
-=item Testing Perl on DOS
+=item Starting Perl programs under AmigaOS
 
-=item Installation of Perl on DOS
+=item Shortcomings of Perl under AmigaOS
 
 =back
 
-=item BUILDING AND INSTALLING MODULES ON DOS
-
-=over 4
-
-=item Building Prerequisites for Perl on DOS
+=item INSTALLATION
 
-=item Unpacking CPAN Modules on DOS
+=item Accessing documentation
 
-=item Building Non-XS Modules on DOS
+=over 4
 
-=item Building XS Modules on DOS
+=item Manpages for Perl on AmigaOS
 
-=back
+=item Perl HTML Documentation on AmigaOS
 
-=item AUTHOR
+=item Perl GNU Info Files on AmigaOS
 
-=item SEE ALSO
+=item Perl LaTeX Documentation on AmigaOS
 
 =back
 
-=head2 perlepoc, README.epoc - Perl for EPOC
+=item BUILDING PERL ON AMIGAOS
 
 =over 4
 
-=item SYNOPSIS
+=item Build Prerequisites for Perl on AmigaOS
 
-=item INTRODUCTION
+=item Getting the Perl Source for AmigaOS
 
-=item INSTALLING PERL ON EPOC
+=item Making Perl on AmigaOS
 
-=item STARTING PERL ON EPOC
+=item Testing Perl on AmigaOS
 
-=over 4
+=item Installing the built Perl on AmigaOS
 
-=item Editors on Epoc
+=back
 
-=item Features of Perl on Epoc
+=item PERL 5.8.0 BROKEN IN AMIGAOS
 
-=item Restrictions of Perl on Epoc
+=item AUTHORS
 
-=item Compiling Perl 5 on the EPOC cross compiling environment
+=item SEE ALSO
 
 =back
 
-=item SUPPORT STATUS OF PERL ON EPOC
+=head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
 
-=item AUTHOR
+=over 4
 
-=item LAST UPDATE
+=item DESCRIPTION
+
+=item AUTHOR
 
 =back
 
-=head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
+=head2 perlbeos, README.beos - Perl version 5.8+ on BeOS
 
 =over 4
 
 =item DESCRIPTION
 
+=item BUILD AND INSTALL
+
 =over 4
 
-=item FreeBSD core dumps from readdir_r with ithreads
+=item Requirements
 
-=item $^X doesn't always contain a full path in FreeBSD
+=item Configure
 
-=item Perl will no longer be part of "base FreeBSD"
+=item Build
+
+=item Install
 
 =back
 
-=item AUTHOR
+=item KNOWN PROBLEMS
+
+=item CONTACT
 
 =back
 
-=head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
-(HP-UX) systems
+=head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
 
 =over 4
 
+=item SYNOPSIS
+
 =item DESCRIPTION
 
 =over 4
 
-=item Using perl as shipped with HP-UX
-
-=item Using perl from HP's porting centre
-
-=item Compiling Perl 5 on HP-UX
-
-=item PA-RISC
-
-=item Portability Between PA-RISC Versions
-
-=item PA-RISC 1.0
-
-=item PA-RISC 1.1
+=item gzip on BS2000
 
-=item PA-RISC 2.0
+=item bison on BS2000
 
-=item Itanium Processor Family and HP-UX
+=item Unpacking Perl Distribution on BS2000
 
-=item Itanium & Itanium 2
+=item Compiling Perl on BS2000
 
-=item Building Dynamic Extensions on HP-UX
+=item Testing Perl on BS2000
 
-=item The HP ANSI C Compiler
+=item Installing Perl on BS2000
 
-=item The GNU C Compiler
+=item Using Perl in the Posix-Shell of BS2000
 
-=item Using Large Files with Perl on HP-UX
+=item Using Perl in "native" BS2000
 
-=item Threaded Perl on HP-UX
+=item Floating point anomalies on BS2000
 
-=item 64-bit Perl on HP-UX
+=item Using PerlIO and different encodings on ASCII and EBCDIC partitions
 
-=item Oracle on HP-UX
+=back
 
-=item GDBM and Threads on HP-UX
+=item AUTHORS
 
-=item NFS filesystems and utime(2) on HP-UX
+=item SEE ALSO
 
-=item perl -P and // and HP-UX
+=over 4
 
-=item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
+=item Mailing list
 
 =back
 
-=item nss_delete core dump from op/pwent or op/grent
-
-=item AUTHOR
-
-=item DATE
+=item HISTORY
 
 =back
 
-=head2 perlhurd, README.hurd - Perl version 5 on Hurd
+=head2 perlce - Perl for WinCE
 
 =over 4
 
-=item DESCRIPTION
+=item Building Perl for WinCE
 
 =over 4
 
-=item Known Problems with Perl on Hurd 
+=item DESCRIPTION
 
-=back
+=item General explanations on cross-compiling WinCE
 
-=item AUTHOR
+=item BUILD
+
+Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
+celib-sources, Rainer Keuchel's console-sources, go to C<./win32>
+subdirectory, edit file C<./win32/ce-helpers/compile.bat>, run  
+compile.bat, run    compile.bat dist
 
 =back
 
-=head2 perlirix, README.irix - Perl version 5 on Irix systems
+=item Using Perl on WinCE
 
 =over 4
 
 =item DESCRIPTION
 
-=over 4
-
-=item Building 32-bit Perl in Irix
+=item LIMITATIONS
 
-=item Building 64-bit Perl in Irix
+=item ENVIRONMENT
 
-=item About Compiler Versions of Irix
+PERL5LIB, PATH, TMP, UNIXROOTPATH, ROWS/COLS, HOME, CONSOLEFONTSIZE
 
-=item Linker Problems in Irix
+=item REGISTRY
 
-=item Malloc in Irix
+=item XS
 
-=item Building with threads in Irix
+=item BUGS
 
-=item Irix 5.3
+=item INSTALLATION
 
 =back
 
-=item AUTHOR
+=item ACKNOWLEDGEMENTS
+
+=item History of WinCE port
+
+=item AUTHORS
+
+Rainer Keuchel <coyxc@rainer-keuchel.de>, Vadim Konovalov
 
 =back
 
-=head2 perllinux, README.linux - Perl version 5 on Linux systems
+=head2 perlcygwin, README.cygwin - Perl for Cygwin
 
 =over 4
 
-=item DESCRIPTION
+=item SYNOPSIS
+
+=item PREREQUISITES FOR COMPILING PERL ON CYGWIN
 
 =over 4
 
-=item Experimental Support for Sun Studio Compilers for Linux OS
+=item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
 
-=back
+=item Cygwin Configuration
 
-=item AUTHOR
+C<PATH>, I<nroff>, Permissions
 
 =back
 
-=head2 perlmachten, README.machten - Perl version 5 on Power MachTen
-systems
+=item CONFIGURE PERL ON CYGWIN
 
 =over 4
 
-=item DESCRIPTION
+=item Stripping Perl Binaries on Cygwin
 
-=over 4
+=item Optional Libraries for Perl on Cygwin
 
-=item Perl version 5.8.x and greater not supported
+C<-lcrypt>, C<-lgdbm_compat> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
+C<cygserver> (C<use IPC::SysV>), C<-lutil>
 
-=item Compiling Perl 5.6.x on MachTen
+=item Configure-time Options for Perl on Cygwin
 
-=item Failures during C<make test> on MachTen
+C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
+C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
+C<-Dmksymlinks>
 
-op/lexassign.t, pragma/warnings.t
+=item Suspicious Warnings on Cygwin
 
-=item Building external modules on MachTen
+Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
 
 =back
 
-=item AUTHOR
-
-=item DATE
-
-=back
+=item MAKE ON CYGWIN
 
-=head2 perlmacos, README.macos - Perl under Mac OS (Classic)
+=item TEST ON CYGWIN
 
 =over 4
 
-=item SYNOPSIS
+=item File Permissions on Cygwin
 
-=item DESCRIPTION
+=item NDBM_File and ODBM_File do not work on FAT filesystems
 
-=item AUTHOR
-
-=item DATE
+=item C<fork()> failures in io_* tests
 
 =back
 
-=head2 perlmacosx, README.macosx - Perl under Mac OS X
+=item Specific features of the Cygwin port
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=over 4
+=item Script Portability on Cygwin
 
-=item Installation Prefix
+Pathnames, Text/Binary, PerlIO, F<.exe>, Cygwin vs. Windows process ids,
+Cygwin vs. Windows errors, C<chown()>, Miscellaneous
 
-=item SDK support
+=item Prebuilt methods:
 
-=item Universal Binary support
+C<Cwd::cwd>, C<Cygwin::pid_to_winpid>, C<Cygwin::winpid_to_pid>,
+C<Cygwin::win_to_posix_path>, C<Cygwin::posix_to_win_path>,
+C<Cygwin::mount_table()>, C<Cygwin::mount_flags>, C<Cygwin::is_binmount>
 
-=item 64-bit PPC support
+=back
 
-=item libperl and Prebinding
+=item INSTALL PERL ON CYGWIN
 
-=item Updating Apple's Perl
+=item MANIFEST ON CYGWIN
 
-=item Known problems
+Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
+Source, Compiled Module Source, Perl Modules/Scripts, Perl Module Tests
 
-=item MacPerl
+=item BUGS ON CYGWIN
 
-=item Carbon
+=item AUTHORS
 
-=item Cocoa
+=item HISTORY
 
 =back
 
-=item Starting From Scratch
+=head2 perldgux - Perl under DG/UX.
 
-=item AUTHOR
+=over 4
 
-=item DATE
+=item SYNOPSIS
 
 =back
 
-=head2 perlmint, README.mint - Perl version 5 on Atari MiNT
-
 =over 4
 
 =item DESCRIPTION
 
-=item Known problems with Perl on MiNT
+=item BUILDING PERL ON DG/UX
+
+=over 4
+
+=item Non-threaded Perl on DG/UX
+
+=item Threaded Perl on DG/UX
+
+=item Testing Perl on DG/UX
+
+=item Installing the built perl on DG/UX
+
+=back
 
 =item AUTHOR
 
+=item SEE ALSO
+
 =back
 
-=head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
+=head2 perldos - Perl under DOS, W31, W95.
 
 =over 4
 
 =item SYNOPSIS
 
-=item NOTE
+=item DESCRIPTION
 
-=item Binary distribution from HP
+=over 4
 
-=item What's New in Perl for MPE/iX
+=item Prerequisites for Compiling Perl on DOS
 
-=item Welcome to Perl/iX
+DJGPP, Pthreads
 
-=item System Requirements for Perl/iX
+=item Shortcomings of Perl under DOS
 
-=item How to Obtain Perl/iX
+=item Building Perl on DOS
 
-=item Perl/iX Distribution Contents Highlights
+=item Testing Perl on DOS
 
-README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
-public_html/feedback.cgi, src/perl-5.6.0-mpe
+=item Installation of Perl on DOS
 
-=item How to Compile Perl/iX
+=back
 
- 4,  6
+=item BUILDING AND INSTALLING MODULES ON DOS
 
-=item Getting Started with Perl/iX
+=over 4
 
-=item MPE/iX Implementation Considerations
+=item Building Prerequisites for Perl on DOS
 
-=item Known Perl/iX Bugs Under Investigation
+=item Unpacking CPAN Modules on DOS
 
-=item Perl/iX To-Do List
+=item Building Non-XS Modules on DOS
 
-=item Perl/iX Change History
+=item Building XS Modules on DOS
+
+=back
 
 =item AUTHOR
 
+=item SEE ALSO
+
 =back
 
-=head2 perlnetware - Perl for NetWare
+=head2 perlepoc, README.epoc - Perl for EPOC
 
 =over 4
 
-=item DESCRIPTION
+=item SYNOPSIS
 
-=item BUILD
+=item INTRODUCTION
 
-=over 4
+=item INSTALLING PERL ON EPOC
 
-=item Tools & SDK
+=item STARTING PERL ON EPOC
 
-=item Setup
+=over 4
 
-SetNWBld.bat, Buildtype.bat
+=item Editors on Epoc
 
-=item Make
+=item Features of Perl on Epoc
 
-=item Interpreter
+=item Restrictions of Perl on Epoc
 
-=item Extensions
+=item Compiling Perl 5 on the EPOC cross compiling environment
 
 =back
 
-=item INSTALL
-
-=item BUILD NEW EXTENSIONS
-
-=item ACKNOWLEDGEMENTS
+=item SUPPORT STATUS OF PERL ON EPOC
 
-=item AUTHORS
+=item AUTHOR
 
-=item DATE
+=item LAST UPDATE
 
 =back
 
-=head2 perlopenbsd, README.openbsd - Perl version 5 on OpenBSD systems
+=head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
 
 =over 4
 
@@ -10077,8 +10745,11 @@ SetNWBld.bat, Buildtype.bat
 
 =over 4
 
-=item OpenBSD core dumps from getprotobyname_r and getservbyname_r with
-ithreads
+=item FreeBSD core dumps from readdir_r with ithreads
+
+=item $^X doesn't always contain a full path in FreeBSD
+
+=item Perl will no longer be part of "base FreeBSD"
 
 =back
 
@@ -10086,588 +10757,595 @@ ithreads
 
 =back
 
-=head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
+=head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
+(HP-UX) systems
 
 =over 4
 
-=item SYNOPSIS
-
-=back
+=item DESCRIPTION
 
 =over 4
 
-=item DESCRIPTION
+=item Using perl as shipped with HP-UX
 
-=over 4
+=item Using perl from HP's porting centre
 
-=item Target
+=item Compiling Perl 5 on HP-UX
 
-=item Other OSes
+=item PA-RISC
 
-=item Prerequisites
+=item Portability Between PA-RISC Versions
 
-EMX, RSX, HPFS, pdksh
+=item PA-RISC 1.0
 
-=item Starting Perl programs under OS/2 (and DOS and...)
+=item PA-RISC 1.1
 
-=item Starting OS/2 (and DOS) programs under Perl
+=item PA-RISC 2.0
 
-=back
+=item Itanium Processor Family (IPF) and HP-UX
 
-=item Frequently asked questions
+=item Itanium, Itanium 2 & Madison 6
 
-=over 4
+=item Building Dynamic Extensions on HP-UX
 
-=item "It does not work"
+=item The HP ANSI C Compiler
 
-=item I cannot run external programs
+=item The GNU C Compiler
 
-=item I cannot embed perl into my program, or use F<perl.dll> from my
-program. 
+=item Using Large Files with Perl on HP-UX
 
-Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
-L<ExtUtils::Embed>?
+=item Threaded Perl on HP-UX
 
-=item C<``> and pipe-C<open> do not work under DOS.
+=item 64-bit Perl on HP-UX
 
-=item Cannot start C<find.exe "pattern" file>
+=item Oracle on HP-UX
 
-=back
+=item GDBM and Threads on HP-UX
 
-=item INSTALLATION
+=item NFS filesystems and utime(2) on HP-UX
 
-=over 4
+=item perl -P and // and HP-UX
 
-=item Automatic binary installation
+=item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
 
-C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
+=back
 
-=item Manual binary installation
+=item nss_delete core dump from op/pwent or op/grent
 
-Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
-(statically linked), Executables for Perl utilities, Main Perl library,
-Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
-and utilities, Manpages for Perl modules, Source for Perl documentation,
-Perl manual in F<.INF> format, Pdksh
+=item Miscellaneous
 
-=item B<Warning>
+=item AUTHOR
+
+=item DATE
 
 =back
 
-=item Accessing documentation
+=head2 perlhurd, README.hurd - Perl version 5 on Hurd
 
 =over 4
 
-=item OS/2 F<.INF> file
-
-=item Plain text
-
-=item Manpages
+=item DESCRIPTION
 
-=item HTML
+=over 4
 
-=item GNU C<info> files
+=item Known Problems with Perl on Hurd 
 
-=item F<PDF> files
+=back
 
-=item C<LaTeX> docs
+=item AUTHOR
 
 =back
 
-=item BUILD
+=head2 perlirix, README.irix - Perl version 5 on Irix systems
 
 =over 4
 
-=item The short story
+=item DESCRIPTION
 
-=item Prerequisites
+=over 4
 
-=item Getting perl source
+=item Building 32-bit Perl in Irix
 
-=item Application of the patches
+=item Building 64-bit Perl in Irix
 
-=item Hand-editing
+=item About Compiler Versions of Irix
 
-=item Making
+=item Linker Problems in Irix
 
-=item Testing
+=item Malloc in Irix
 
-A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
-F<op/stat.t>
+=item Building with threads in Irix
 
-=item Installing the built perl
+=item Irix 5.3
 
-=item C<a.out>-style build
+=back
+
+=item AUTHOR
 
 =back
 
-=item Building a binary distribution
+=head2 perllinux, README.linux - Perl version 5 on Linux systems
 
-=item Building custom F<.EXE> files
+=over 4
+
+=item DESCRIPTION
 
 =over 4
 
-=item Making executables with a custom collection of statically loaded
-extensions
+=item Experimental Support for Sun Studio Compilers for Linux OS
 
-=item Making executables with a custom search-paths
+=back
+
+=item AUTHOR
 
 =back
 
-=item Build FAQ
+=head2 perlmachten, README.machten - Perl version 5 on Power MachTen
+systems
 
 =over 4
 
-=item Some C</> became C<\> in pdksh.
+=item DESCRIPTION
 
-=item C<'errno'> - unresolved external
+=over 4
 
-=item Problems with tr or sed
+=item Perl version 5.8.x and greater not supported
 
-=item Some problem (forget which ;-)
+=item Compiling Perl 5.6.x on MachTen
 
-=item Library ... not found
+=item Failures during C<make test> on MachTen
 
-=item Segfault in make
+op/lexassign.t, pragma/warnings.t
 
-=item op/sprintf test failure
+=item Building external modules on MachTen
 
 =back
 
-=item Specific (mis)features of OS/2 port
-
-=over 4
+=item AUTHOR
 
-=item C<setpriority>, C<getpriority>
+=item DATE
 
-=item C<system()>
+=back
 
-=item C<extproc> on the first line
+=head2 perlmacos, README.macos - Perl under Mac OS (Classic)
 
-=item Additional modules:
+=over 4
 
-=item Prebuilt methods:
+=item SYNOPSIS
 
-C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
- C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
-C<Cwd::sys_is_absolute(name)>, C<Cwd::sys_is_rooted(name)>, 
-C<Cwd::sys_is_relative(name)>, C<Cwd::sys_cwd(name)>, 
-C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
-C<Cwd::extLibpath_set( path [, type ] )>,
-C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
-OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
-C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
-C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
-OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>,
-C<OS2::DLLname([how [, \&xsub]])>
+=item DESCRIPTION
 
-=item Prebuilt variables:
+=item AUTHOR
 
-$OS2::emx_rev, $OS2::emx_env, $OS2::os_ver, $OS2::is_aout, $OS2::can_fork,
-$OS2::nsyserror
+=item DATE
 
-=item Misfeatures
+=back
 
-=item Modifications
+=head2 perlmacosx, README.macosx - Perl under Mac OS X
 
-C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
-C<flock>
+=over 4
 
-=item Identifying DLLs
+=item SYNOPSIS
 
-=item Centralized management of resources
+=item DESCRIPTION
 
-C<HAB>, C<HMQ>, Treating errors reported by OS/2 API,
-C<CheckOSError(expr)>, C<CheckWinError(expr)>, C<SaveWinError(expr)>,
-C<SaveCroakWinError(expr,die,name1,name2)>, C<WinError_2_Perl_rc>,
-C<FillWinError>, C<FillOSError(rc)>, Loading DLLs and ordinals in DLLs
+=over 4
 
-=back
+=item Installation Prefix
 
-=item Perl flavors
+=item SDK support
 
-=over 4
+=item Universal Binary support
 
-=item F<perl.exe>
+=item 64-bit PPC support
 
-=item F<perl_.exe>
+=item libperl and Prebinding
 
-=item F<perl__.exe>
+=item Updating Apple's Perl
 
-=item F<perl___.exe>
+=item Known problems
 
-=item Why strange names?
+=item MacPerl
 
-=item Why dynamic linking?
+=item Carbon
 
-=item Why chimera build?
+=item Cocoa
 
 =back
 
-=item ENVIRONMENT
+=item Starting From Scratch
 
-=over 4
+=item AUTHOR
 
-=item C<PERLLIB_PREFIX>
+=item DATE
 
-=item C<PERL_BADLANG>
+=back
 
-=item C<PERL_BADFREE>
+=head2 perlmint, README.mint - Perl version 5 on Atari MiNT
 
-=item C<PERL_SH_DIR>
+=over 4
 
-=item C<USE_PERL_FLOCK>
+=item DESCRIPTION
 
-=item C<TMP> or C<TEMP>
+=item Known problems with Perl on MiNT
+
+=item AUTHOR
 
 =back
 
-=item Evolution
+=head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
 
 =over 4
 
-=item Text-mode filehandles
+=item SYNOPSIS
 
-=item Priorities
+=item NOTE
 
-=item DLL name mangling: pre 5.6.2
+=item Binary distribution from HP
 
-=item DLL name mangling: 5.6.2 and beyond
+=item What's New in Perl for MPE/iX
 
-Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
-C<LIBPATH>
+=item Welcome to Perl/iX
 
-=item DLL forwarder generation
+=item System Requirements for Perl/iX
 
-=item Threading
+=item How to Obtain Perl/iX
 
-=item Calls to external programs
+=item Perl/iX Distribution Contents Highlights
 
-=item Memory allocation
+README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
+public_html/feedback.cgi, src/perl-5.6.0-mpe
 
-=item Threads
+=item How to Compile Perl/iX
 
-C<COND_WAIT>, F<os2.c>
+ 4,  6
 
-=back
+=item Getting Started with Perl/iX
 
-=item BUGS
+=item MPE/iX Implementation Considerations
 
-=back
+=item Known Perl/iX Bugs Under Investigation
 
-=over 4
+=item Perl/iX To-Do List
 
-=item AUTHOR
+=item Perl/iX Change History
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 perlos390, README.os390 - building and installing Perl for OS/390
-and z/OS
+=head2 perlnetware - Perl for NetWare
 
 =over 4
 
-=item SYNOPSIS
-
 =item DESCRIPTION
 
+=item BUILD
+
 =over 4
 
-=item Tools
+=item Tools & SDK
 
-=item Unpacking Perl distribution on OS/390
+=item Setup
 
-=item Setup and utilities for Perl on OS/390
+SetNWBld.bat, Buildtype.bat
 
-=item Configure Perl on OS/390
+=item Make
 
-=item Build, Test, Install Perl on OS/390
+=item Interpreter
 
-=item Build Anomalies with Perl on OS/390
+=item Extensions
 
-=item Testing Anomalies with Perl on OS/390
+=back
 
-=item Installation Anomalies with Perl on OS/390
+=item INSTALL
 
-=item Usage Hints for Perl on OS/390
+=item BUILD NEW EXTENSIONS
 
-=item Floating Point Anomalies with Perl on OS/390
+=item ACKNOWLEDGEMENTS
 
-=item Modules and Extensions for Perl on OS/390
+=item AUTHORS
+
+=item DATE
 
 =back
 
-=item AUTHORS
+=head2 perlopenbsd, README.openbsd - Perl version 5 on OpenBSD systems
 
-=item SEE ALSO
+=over 4
+
+=item DESCRIPTION
 
 =over 4
 
-=item Mailing list for Perl on OS/390
+=item OpenBSD core dumps from getprotobyname_r and getservbyname_r with
+ithreads
 
 =back
 
-=item HISTORY
+=item AUTHOR
 
 =back
 
-=head2 perlos400, README.os400 - Perl version 5 on OS/400
+=head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
 
 =over 4
 
-=item DESCRIPTION
+=item SYNOPSIS
+
+=back
 
 =over 4
 
-=item Compiling Perl for OS/400 PASE
+=item DESCRIPTION
 
-=item Installing Perl in OS/400 PASE
+=over 4
 
-=item Using Perl in OS/400 PASE
+=item Target
 
-=item Known Problems
+=item Other OSes
 
-=item Perl on ILE
+=item Prerequisites
 
-=back
+EMX, RSX, HPFS, pdksh
 
-=item AUTHORS
+=item Starting Perl programs under OS/2 (and DOS and...)
+
+=item Starting OS/2 (and DOS) programs under Perl
 
 =back
 
-=head2 perlplan9 - Plan 9-specific documentation for Perl
+=item Frequently asked questions
 
 =over 4
 
-=item DESCRIPTION
-
-=over 4
+=item "It does not work"
 
-=item Invoking Perl
+=item I cannot run external programs
 
-=item What's in Plan 9 Perl
+=item I cannot embed perl into my program, or use F<perl.dll> from my
+program. 
 
-=item What's not in Plan 9 Perl
+Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
+L<ExtUtils::Embed>?
 
-=item Perl5 Functions not currently supported in Plan 9 Perl
+=item C<``> and pipe-C<open> do not work under DOS.
 
-=item Signals in Plan 9 Perl
+=item Cannot start C<find.exe "pattern" file>
 
 =back
 
-=item COMPILING AND INSTALLING PERL ON PLAN 9
+=item INSTALLATION
 
 =over 4
 
-=item Installing Perl Documentation on Plan 9
+=item Automatic binary installation
 
-=back
+C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
 
-=item BUGS
+=item Manual binary installation
 
-=item Revision date
+Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
+(statically linked), Executables for Perl utilities, Main Perl library,
+Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
+and utilities, Manpages for Perl modules, Source for Perl documentation,
+Perl manual in F<.INF> format, Pdksh
 
-=item AUTHOR
+=item B<Warning>
 
 =back
 
-=head2 perlqnx, README.qnx - Perl version 5 on QNX
-
-=over 4
-
-=item DESCRIPTION
+=item Accessing documentation
 
 =over 4
 
-=item Required Software for Compiling Perl on QNX4
-
-/bin/sh, ar, nm, cpp, make
+=item OS/2 F<.INF> file
 
-=item Outstanding Issues with Perl on QNX4
+=item Plain text
 
-=item QNX auxiliary files
+=item Manpages
 
-qnx/ar, qnx/cpp
+=item HTML
 
-=item Outstanding issues with perl under QNX6
+=item GNU C<info> files
 
-=back
+=item F<PDF> files
 
-=item AUTHOR
+=item C<LaTeX> docs
 
 =back
 
-=head2 perlriscos, README.riscos - Perl version 5 for RISC OS
+=item BUILD
 
 =over 4
 
-=item DESCRIPTION
+=item The short story
 
-=item BUILD
+=item Prerequisites
 
-=item AUTHOR
+=item Getting perl source
 
-=back
+=item Application of the patches
 
-=head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
+=item Hand-editing
 
-=over 4
+=item Making
 
-=item DESCRIPTION
+=item Testing
 
-=over 4
+A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
+F<op/stat.t>
 
-=item Solaris Version Numbers.
+=item Installing the built perl
 
-=back
+=item C<a.out>-style build
 
-=item RESOURCES
+=back
 
-Solaris FAQ, Precompiled Binaries, Solaris Documentation
+=item Building a binary distribution
 
-=item SETTING UP
+=item Building custom F<.EXE> files
 
 =over 4
 
-=item File Extraction Problems on Solaris.
-
-=item Compiler and Related Tools on Solaris.
+=item Making executables with a custom collection of statically loaded
+extensions
 
-=item Environment for Compiling perl on Solaris
+=item Making executables with a custom search-paths
 
 =back
 
-=item RUN CONFIGURE.
+=item Build FAQ
 
 =over 4
 
-=item 64-bit perl on Solaris.
-
-=item Threads in perl on Solaris.
+=item Some C</> became C<\> in pdksh.
 
-=item Malloc Issues with perl on Solaris.
+=item C<'errno'> - unresolved external
 
-=back
+=item Problems with tr or sed
 
-=item MAKE PROBLEMS.
+=item Some problem (forget which ;-)
 
-Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
-relocation error:, dlopen: stub interception failed, #error "No
-DATAMODEL_NATIVE specified", sh: ar: not found
+=item Library ... not found
 
-=item MAKE TEST
+=item Segfault in make
 
-=over 4
+=item op/sprintf test failure
 
-=item op/stat.t test 4 in Solaris
+=back
 
-=item nss_delete core dump from op/pwent or op/grent
+=item Specific (mis)features of OS/2 port
 
-=back
+=over 4
 
-=item PREBUILT BINARIES OF PERL FOR SOLARIS.
+=item C<setpriority>, C<getpriority>
 
-=item RUNTIME ISSUES FOR PERL ON SOLARIS.
+=item C<system()>
 
-=over 4
+=item C<extproc> on the first line
 
-=item Limits on Numbers of Open Files on Solaris.
+=item Additional modules:
 
-=back
+=item Prebuilt methods:
 
-=item SOLARIS-SPECIFIC MODULES.
+C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
+ C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
+C<Cwd::sys_is_absolute(name)>, C<Cwd::sys_is_rooted(name)>, 
+C<Cwd::sys_is_relative(name)>, C<Cwd::sys_cwd(name)>, 
+C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
+C<Cwd::extLibpath_set( path [, type ] )>,
+C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
+OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
+C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
+C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
+OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>,
+C<OS2::DLLname([how [, \&xsub]])>
 
-=item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
+=item Prebuilt variables:
 
-=over 4
+$OS2::emx_rev, $OS2::emx_env, $OS2::os_ver, $OS2::is_aout, $OS2::can_fork,
+$OS2::nsyserror
 
-=item Proc::ProcessTable on Solaris
+=item Misfeatures
 
-=item BSD::Resource on Solaris
+=item Modifications
 
-=item Net::SSLeay on Solaris
+C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
+C<flock>
 
-=back
+=item Identifying DLLs
 
-=item SunOS 4.x
+=item Centralized management of resources
 
-=item AUTHOR
+C<HAB>, C<HMQ>, Treating errors reported by OS/2 API,
+C<CheckOSError(expr)>, C<CheckWinError(expr)>, C<SaveWinError(expr)>,
+C<SaveCroakWinError(expr,die,name1,name2)>, C<WinError_2_Perl_rc>,
+C<FillWinError>, C<FillOSError(rc)>, Loading DLLs and ordinals in DLLs
 
 =back
 
-=head2 perlsymbian, README.symbian - Perl version 5 on Symbian OS
+=item Perl flavors
 
 =over 4
 
-=item DESCRIPTION
+=item F<perl.exe>
 
-=over 4
+=item F<perl_.exe>
 
-=item Compiling Perl on Symbian
+=item F<perl__.exe>
 
-=item Compilation problems
+=item F<perl___.exe>
 
-=item PerlApp
+=item Why strange names?
 
-=item sisify.pl
+=item Why dynamic linking?
 
-=item Using Perl in Symbian
+=item Why chimera build?
 
 =back
 
-=item TO DO
+=item ENVIRONMENT
 
-=item WARNING
+=over 4
 
-=item NOTE
+=item C<PERLLIB_PREFIX>
 
-=item AUTHOR
+=item C<PERL_BADLANG>
 
-=item COPYRIGHT
+=item C<PERL_BADFREE>
 
-=item LICENSE
+=item C<PERL_SH_DIR>
 
-=item HISTORY
+=item C<USE_PERL_FLOCK>
+
+=item C<TMP> or C<TEMP>
 
 =back
 
-=head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
-Digital UNIX formerly known as DEC OSF/1) systems
+=item Evolution
 
 =over 4
 
-=item DESCRIPTION
+=item Text-mode filehandles
 
-=over 4
+=item Priorities
 
-=item Compiling Perl 5 on Tru64
+=item DLL name mangling: pre 5.6.2
 
-=item Using Large Files with Perl on Tru64
+=item DLL name mangling: 5.6.2 and beyond
 
-=item Threaded Perl on Tru64
+Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
+C<LIBPATH>
 
-=item Long Doubles on Tru64
+=item DLL forwarder generation
 
-=item DB_File tests failing on Tru64
+=item Threading
 
-=item 64-bit Perl on Tru64
+=item Calls to external programs
 
-=item Warnings about floating-point overflow when compiling Perl on Tru64
+=item Memory allocation
+
+=item Threads
+
+C<COND_WAIT>, F<os2.c>
 
 =back
 
-=item Testing Perl on Tru64
+=item BUGS
 
-=item ext/ODBM_File/odbm Test Failing With Static Builds
+=back
 
-=item Perl Fails Because Of Unresolved Symbol sockatmark
+=over 4
 
 =item AUTHOR
 
+=item SEE ALSO
+
 =back
 
-=head2 perluts - Perl under UTS
+=head2 perlos390, README.os390 - building and installing Perl for OS/390
+and z/OS
 
 =over 4
 
@@ -10675,33 +11353,29 @@ Digital UNIX formerly known as DEC OSF/1) systems
 
 =item DESCRIPTION
 
-=item BUILDING PERL ON UTS
-
-=item Installing the built perl on UTS
-
-=item AUTHOR
+=over 4
 
-=back
+=item Tools
 
-=head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
+=item Unpacking Perl distribution on OS/390
 
-=over 4
+=item Setup and utilities for Perl on OS/390
 
-=item SYNOPSIS
+=item Configure Perl on OS/390
 
-=item DESCRIPTION
+=item Build, Test, Install Perl on OS/390
 
-=over 4
+=item Build Anomalies with Perl on OS/390
 
-=item Unpacking Perl Distribution on VM/ESA
+=item Testing Anomalies with Perl on OS/390
 
-=item Setup Perl and utilities on VM/ESA
+=item Installation Anomalies with Perl on OS/390
 
-=item Configure Perl on VM/ESA
+=item Usage Hints for Perl on OS/390
 
-=item Testing Anomalies of Perl on VM/ESA
+=item Floating Point Anomalies with Perl on OS/390
 
-=item Usage Hints for Perl on VM/ESA
+=item Modules and Extensions for Perl on OS/390
 
 =back
 
@@ -10711,310 +11385,286 @@ Digital UNIX formerly known as DEC OSF/1) systems
 
 =over 4
 
-=item Mailing list for Perl on VM/ESA
+=item Mailing list for Perl on OS/390
 
 =back
 
+=item HISTORY
+
 =back
 
-=head2 perlvms - VMS-specific documentation for Perl
+=head2 perlos400, README.os400 - Perl version 5 on OS/400
 
 =over 4
 
 =item DESCRIPTION
 
-=item Installation
+=over 4
 
-=item Organization of Perl Images
+=item Compiling Perl for OS/400 PASE
 
-=over 4
+=item Installing Perl in OS/400 PASE
 
-=item Core Images
+=item Using Perl in OS/400 PASE
 
-=item Perl Extensions
+=item Known Problems
 
-=item Installing static extensions
+=item Perl on ILE
 
-=item Installing dynamic extensions
+=back
+
+=item AUTHORS
 
 =back
 
-=item File specifications
+=head2 perlplan9 - Plan 9-specific documentation for Perl
 
 =over 4
 
-=item Syntax
+=item DESCRIPTION
 
-=item Wildcard expansion
+=over 4
 
-=item Pipes
+=item Invoking Perl
 
-=back
+=item What's in Plan 9 Perl
 
-=item PERL5LIB and PERLLIB
+=item What's not in Plan 9 Perl
 
-=item PERL_VMS_EXCEPTION_DEBUG
+=item Perl5 Functions not currently supported in Plan 9 Perl
 
-=item Command line
+=item Signals in Plan 9 Perl
 
-=over 4
+=back
 
-=item I/O redirection and backgrounding
+=item COMPILING AND INSTALLING PERL ON PLAN 9
 
-=item Command line switches
+=over 4
 
--i, -S, -u
+=item Installing Perl Documentation on Plan 9
 
 =back
 
-=item Perl functions
+=item BUGS
 
-File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, die,
-dump, exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//,
-select (system call), stat EXPR, system LIST, time, times, unlink LIST,
-utime LIST, waitpid PID,FLAGS
+=item Revision date
 
-=item Perl variables
+=item AUTHOR
 
-%ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
+=back
 
-=item Standard modules with VMS-specific differences
+=head2 perlqnx, README.qnx - Perl version 5 on QNX
 
 =over 4
 
-=item SDBM_File
+=item DESCRIPTION
 
-=back
+=over 4
 
-=item Revision date
+=item Required Software for Compiling Perl on QNX4
 
-=item AUTHOR
+/bin/sh, ar, nm, cpp, make
 
-=back
+=item Outstanding Issues with Perl on QNX4
 
-=head2 perlvos, README.vos - Perl for Stratus VOS
+=item QNX auxiliary files
 
-=over 4
+qnx/ar, qnx/cpp
 
-=item SYNOPSIS
+=item Outstanding issues with perl under QNX6
 
-=item BUILDING PERL FOR VOS
+=back
 
-=item INSTALLING PERL IN VOS
+=item AUTHOR
 
-=item USING PERL IN VOS
+=back
+
+=head2 perlriscos, README.riscos - Perl version 5 for RISC OS
 
 =over 4
 
-=item Restrictions of Perl on VOS
+=item DESCRIPTION
 
-=item Handling of underflow and overflow
+=item BUILD
+
+=item AUTHOR
 
 =back
 
-=item TEST STATUS
+=head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
 
-=item SUPPORT STATUS
+=over 4
 
-=item AUTHOR
+=item DESCRIPTION
 
-=item LAST UPDATE
+=over 4
 
-=back
+=item Solaris Version Numbers.
 
-=head2 perlwin32 - Perl under Windows
+=back
 
-=over 4
+=item RESOURCES
 
-=item SYNOPSIS
+Solaris FAQ, Precompiled Binaries, Solaris Documentation
 
-=item DESCRIPTION
+=item SETTING UP
 
 =over 4
 
-=item Setting Up Perl on Win32
+=item File Extraction Problems on Solaris.
 
-Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Visual
-C++ Toolkit 2003, Microsoft Platform SDK 64-bit Compiler, MinGW release 3
-with gcc, MinGW release 1 with gcc
+=item Compiler and Related Tools on Solaris.
 
-=item Building
+=item Environment for Compiling perl on Solaris
 
-=item Testing Perl on Win32
+=back
 
-=item Installation of Perl on Win32
+=item RUN CONFIGURE.
 
-=item Usage Hints for Perl on Win32
+=over 4
 
-Environment Variables, File Globbing, Using perl from the command line,
-Building Extensions, Command-line Wildcard Expansion, Win32 Specific
-Extensions, Notes on 64-bit Windows
+=item 64-bit perl on Solaris.
 
-=item Running Perl Scripts
+=item Threads in perl on Solaris.
 
-=item Miscellaneous Things
+=item Malloc Issues with perl on Solaris.
 
 =back
 
-=item BUGS AND CAVEATS
+=item MAKE PROBLEMS.
 
-=item ACKNOWLEDGEMENTS
+Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
+relocation error:, dlopen: stub interception failed, #error "No
+DATAMODEL_NATIVE specified", sh: ar: not found
 
-=item AUTHORS
+=item MAKE TEST
 
-Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
-E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
-E<lt>nick@ing-simmons.netE<gt>, Jan Dubois E<lt>jand@activestate.comE<gt>,
-Steve Hay E<lt>steve.hay@uk.radan.comE<gt>
+=over 4
 
-=item SEE ALSO
+=item op/stat.t test 4 in Solaris
 
-=item HISTORY
+=item nss_delete core dump from op/pwent or op/grent
 
 =back
 
-=head1 PRAGMA DOCUMENTATION
+=item PREBUILT BINARIES OF PERL FOR SOLARIS.
 
-=head2 attrs - set/get attributes of a subroutine (deprecated)
+=item RUNTIME ISSUES FOR PERL ON SOLARIS.
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-method, locked
+=item Limits on Numbers of Open Files on Solaris.
 
 =back
 
-=head2 re - Perl pragma to alter regular expression behaviour
+=item SOLARIS-SPECIFIC MODULES.
+
+=item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
 
 =over 4
 
-=item SYNOPSIS
+=item Proc::ProcessTable on Solaris
 
-=item DESCRIPTION
+=item BSD::Resource on Solaris
 
-Compile related options, COMPILE, PARSE, OPTIMISE, TRIE_COMPILE, DUMP,
-OFFSETS, Execute related options, EXECUTE, MATCH, TRIE_EXECUTE, INTUIT,
-Extra debugging options, EXTRA, TRIE_MORE, OFFSETS_DEBUG, Other useful
-flags, ALL, All, MORE, More
+=item Net::SSLeay on Solaris
 
 =back
 
-=head2 threadshared::shared, threads::shared - Perl extension for sharing
-data structures between threads
+=item SunOS 4.x
 
-=over 4
+=item AUTHOR
 
-=item SYNOPSIS
+=back
 
-=item DESCRIPTION
+=head2 perlsymbian, README.symbian - Perl version 5 on Symbian OS
 
-=item EXPORT
+=over 4
 
-=item FUNCTIONS
+=item DESCRIPTION
 
-share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_wait CONDVAR,
-LOCKVAR, cond_timedwait VARIABLE, ABS_TIMEOUT, cond_timedwait CONDVAR,
-ABS_TIMEOUT, LOCKVAR, cond_signal VARIABLE, cond_broadcast VARIABLE
+=over 4
 
-=item NOTES
+=item Compiling Perl on Symbian
 
-=item BUGS
+=item Compilation problems
 
-=item AUTHOR
+=item PerlApp
 
-=item SEE ALSO
+=item sisify.pl
+
+=item Using Perl in Symbian
 
 =back
 
-=head2 threads - Perl interpreter-based threads
+=item TO DO
 
-=over 4
+=item WARNING
 
-=item VERSION
+=item NOTE
 
-=item SYNOPSIS
+=item AUTHOR
 
-=item DESCRIPTION
+=item COPYRIGHT
 
-$thr = threads->create(FUNCTION, ARGS), $thr->join(), $thr->detach(),
-threads->detach(), threads->self(), $thr->tid(), threads->tid(),
-threads->object($tid), threads->yield(), threads->list(),
-threads->list(threads::all), threads->list(threads::running),
-threads->list(threads::joinable), $thr1->equal($thr2), async BLOCK;,
-$thr->_handle(), threads->_handle()
+=item LICENSE
 
-=item EXITING A THREAD
+=item HISTORY
 
-threads->exit(), threads->exit(status), die(), exit(status), use threads
-'exit' => 'thread_only', threads->create({'exit' => 'thread_only'}, ...),
-$thr->set_thread_exit_only(boolean), threads->set_thread_exit_only(boolean)
+=back
 
-=item THREAD STATE
+=head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
+Digital UNIX formerly known as DEC OSF/1) systems
 
-$thr->is_running(), $thr->is_joinable(), $thr->is_detached(),
-threads->is_detached()
+=over 4
 
-=item THREAD CONTEXT
+=item DESCRIPTION
 
 =over 4
 
-=item Explicit context
+=item Compiling Perl 5 on Tru64
 
-=item Implicit context
+=item Using Large Files with Perl on Tru64
 
-=item $thr->wantarray()
+=item Threaded Perl on Tru64
 
-=item threads->wantarray()
+=item Long Doubles on Tru64
 
-=back
+=item DB_File tests failing on Tru64
 
-=item THREAD STACK SIZE
+=item 64-bit Perl on Tru64
 
-threads->get_stack_size();, $size = $thr->get_stack_size();, $old_size =
-threads->set_stack_size($new_size);, use threads ('stack_size' => VALUE);,
-$ENV{'PERL5_ITHREADS_STACK_SIZE'}, threads->create({'stack_size' => VALUE},
-FUNCTION, ARGS), $thr2 = $thr1->create(FUNCTION, ARGS)
+=item Warnings about floating-point overflow when compiling Perl on Tru64
 
-=item THREAD SIGNALLING
+=back
 
-$thr->kill('SIG...');
+=item Testing Perl on Tru64
 
-=item WARNINGS
+=item ext/ODBM_File/odbm Test Failing With Static Builds
 
-Perl exited with active threads:, Thread creation failed: pthread_create
-returned #, Thread # terminated abnormally: .., Using minimum thread stack
-size of #, Thread creation failed: pthread_attr_setstacksize(I<SIZE>)
-returned 22
+=item Perl Fails Because Of Unresolved Symbol sockatmark
 
-=item ERRORS
+=item AUTHOR
 
-This Perl not built to support threads, Cannot change stack size of an
-existing thread, Cannot signal threads without safe signals, Unrecognized
-signal name: ..
+=back
 
-=item BUGS
+=head2 perluts - Perl under UTS
 
-Parent-child threads, Creating threads inside special blocks, Unsafe
-signals, Perl was been built with C<PERL_OLD_SIGNALS> (see C<perl -V>), The
-environment variable C<PERL_SIGNALS> is set to C<unsafe> (see
-L<perlrun/"PERL_SIGNALS">), The module L<Perl::Unsafe::Signals> is used,
-Returning closures from threads, Perl Bugs and the CPAN Version of
-L<threads>
+=over 4
 
-=item REQUIREMENTS
+=item SYNOPSIS
 
-=item SEE ALSO
+=item DESCRIPTION
 
-=item AUTHOR
+=item BUILDING PERL ON UTS
 
-=item ACKNOWLEDGEMENTS
+=item Installing the built perl on UTS
+
+=item AUTHOR
 
 =back
 
-=head2 assertions - select assertions in blocks of code
+=head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
 
 =over 4
 
@@ -11024,145 +11674,142 @@ L<threads>
 
 =over 4
 
-=item Selecting assertions
+=item Unpacking Perl Distribution on VM/ESA
+
+=item Setup Perl and utilities on VM/ESA
+
+=item Configure Perl on VM/ESA
 
-=item Handling assertions your own way
+=item Testing Anomalies of Perl on VM/ESA
 
-enabled($on), enabled(), seen($on), seen()
+=item Usage Hints for Perl on VM/ESA
 
 =back
 
-=item COMPATIBILITY
+=item AUTHORS
 
 =item SEE ALSO
 
-=item AUTHOR
+=over 4
 
-=item COPYRIGHT AND LICENSE
+=item Mailing list for Perl on VM/ESA
+
+=back
 
 =back
 
-=head2 assertions::activate - activate assertions
+=head2 perlvms - VMS-specific documentation for Perl
 
 =over 4
 
-=item SYNOPSIS
-
 =item DESCRIPTION
 
-=item SEE ALSO
+=item Installation
 
-=item AUTHOR
+=item Organization of Perl Images
 
-=item COPYRIGHT AND LICENSE
+=over 4
 
-=back
+=item Core Images
 
-=head2 assertions::compat - assertions for pre-5.9 versions of perl
+=item Perl Extensions
 
-=over 4
+=item Installing static extensions
 
-=item SYNOPSIS
+=item Installing dynamic extensions
 
-=item DESCRIPTION
+=back
 
-=over 4
+=item File specifications
 
-=item The C<assertion> attribute handler
+=over 4
 
-=item Assertion execution status as a constant
+=item Syntax
 
-=back
+=item Filename Case
 
-=item SEE ALSO
+=item Symbolic Links
 
-=item AUTHOR
+=item Wildcard expansion
 
-=item COPYRIGHT AND LICENSE
+=item Pipes
 
 =back
 
-=head2 attributes - get/set subroutine or variable attributes
+=item PERL5LIB and PERLLIB
 
-=over 4
+=item The Perl Forked Debugger
 
-=item SYNOPSIS
+=item PERL_VMS_EXCEPTION_DEBUG
 
-=item DESCRIPTION
+=item Command line
 
 =over 4
 
-=item Built-in Attributes
+=item I/O redirection and backgrounding
 
-locked, method, lvalue
+=item Command line switches
 
-=item Available Subroutines
+-i, -S, -u
 
-get, reftype
+=back
 
-=item Package-specific Attribute Handling
+=item Perl functions
 
-FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
+File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, die,
+dump, exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//,
+select (system call), stat EXPR, system LIST, time, times, unlink LIST,
+utime LIST, waitpid PID,FLAGS
 
-=item Syntax of Attribute Lists
+=item Perl variables
 
-=back
+%ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
 
-=item EXPORTS
+=item Standard modules with VMS-specific differences
 
 =over 4
 
-=item Default exports
-
-=item Available exports
-
-=item Export tags defined
+=item SDBM_File
 
 =back
 
-=item EXAMPLES
+=item Revision date
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 autouse - postpone load of modules until a function is used
+=head2 perlvos, README.vos - Perl for Stratus VOS
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
-
-=item WARNING
-
-=item AUTHOR
-
-=item SEE ALSO
+=item BUILDING PERL FOR VOS
 
-=back
+=item INSTALLING PERL IN VOS
 
-=head2 base - Establish IS-A relationship with base classes at compile time
+=item USING PERL IN VOS
 
 =over 4
 
-=item SYNOPSIS
+=item Restrictions of Perl on VOS
 
-=item DESCRIPTION
+=item Handling of underflow and overflow
 
-=item DIAGNOSTICS
+=back
 
-Base class package "%s" is empty
+=item TEST STATUS
 
-=item HISTORY
+=item SUPPORT STATUS
 
-=item CAVEATS
+=item AUTHOR
 
-=item SEE ALSO
+=item LAST UPDATE
 
 =back
 
-=head2 bigint - Transparent BigInteger support for Perl
+=head2 perlwin32 - Perl under Windows
 
 =over 4
 
@@ -11172,35 +11819,51 @@ Base class package "%s" is empty
 
 =over 4
 
-=item Options
+=item Setting Up Perl on Win32
 
-a or accuracy, p or precision, t or trace, l or lib, v or version
+Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Visual
+C++ 2008 Express Edition Beta 2, Microsoft Visual C++ 2005 Express Edition,
+Microsoft Visual C++ Toolkit 2003, Microsoft Platform SDK 64-bit Compiler,
+MinGW release 3 with gcc, MinGW release 1 with gcc
 
-=item Math Library
+=item Building
 
-=item Internal Format
+=item Testing Perl on Win32
 
-=item Sign
+=item Installation of Perl on Win32
 
-=item Methods
+=item Usage Hints for Perl on Win32
 
-=item Caveat
+Environment Variables, File Globbing, Using perl from the command line,
+Building Extensions, Command-line Wildcard Expansion, Win32 Specific
+Extensions, Notes on 64-bit Windows
+
+=item Running Perl Scripts
+
+=item Miscellaneous Things
 
 =back
 
-=item MODULES USED
+=item BUGS AND CAVEATS
 
-=item EXAMPLES
+=item ACKNOWLEDGEMENTS
 
-=item LICENSE
+=item AUTHORS
+
+Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
+E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
+E<lt>nick@ing-simmons.netE<gt>, Jan Dubois E<lt>jand@activestate.comE<gt>,
+Steve Hay E<lt>steve.hay@uk.radan.comE<gt>
 
 =item SEE ALSO
 
-=item AUTHORS
+=item HISTORY
 
 =back
 
-=head2 bignum - Transparent BigNumber support for Perl
+=head1 PRAGMA DOCUMENTATION
+
+=head2 attrs - set/get attributes of a subroutine (deprecated)
 
 =over 4
 
@@ -11208,39 +11871,11 @@ a or accuracy, p or precision, t or trace, l or lib, v or version
 
 =item DESCRIPTION
 
-=over 4
-
-=item Options
-
-a or accuracy, p or precision, t or trace, l or lib, v or version
-
-=item Methods
-
-=item Caveat
-
-inf(), NaN(), upgrade()
-
-=item MATH LIBRARY
-
-=item INTERNAL FORMAT
-
-=item SIGN
-
-=back
-
-=item MODULES USED
-
-=item EXAMPLES
-
-=item LICENSE
-
-=item SEE ALSO
-
-=item AUTHORS
+method, locked
 
 =back
 
-=head2 bigrat - Transparent BigNumber/BigRational support for Perl
+=head2 re - Perl pragma to alter regular expression behaviour
 
 =over 4
 
@@ -11250,133 +11885,150 @@ inf(), NaN(), upgrade()
 
 =over 4
 
-=item Modules Used
+=item 'taint' mode
 
-=item Math Library
+=item 'eval' mode
 
-=item Sign
+=item 'debug' mode
 
-=item Methods
+=item 'Debug' mode
 
-=item Caveat
+Compile related options, COMPILE, PARSE, OPTIMISE, TRIEC, DUMP, Execute
+related options, EXECUTE, MATCH, TRIEE, INTUIT, Extra debugging options,
+EXTRA, BUFFERS, TRIEM, STATE, STACK, OPTIMISEM, OFFSETS, OFFSETSDBG, Other
+useful flags, ALL, All, MORE, More
 
-=item Options
+=item Exportable Functions
 
-a or accuracy, p or precision, t or trace, l or lib, v or version
+is_regexp($ref), regexp_pattern($ref), regmust($ref), regname($name,$all),
+regnames($all), regnames_count()
 
 =back
 
-=item EXAMPLES
-
-       perl -Mbigrat -le 'print sqrt(33)'
-       perl -Mbigrat -le 'print 2*255'
-       perl -Mbigrat -le 'print 4.5+2*255'
-       perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
-       perl -Mbigrat -le 'print 12->is_odd()';
-
-=item LICENSE
-
 =item SEE ALSO
 
-=item AUTHORS
-
 =back
 
-=head2 blib - Use MakeMaker's uninstalled version of a package
+=head2 threadshared::shared, threads::shared - Perl extension for sharing
+data structures between threads
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-=item BUGS
-
-=item AUTHOR
-
-=back
+=item EXPORT
 
-=head2 bytes - Perl pragma to force byte semantics rather than character
-semantics
+=item FUNCTIONS
 
-=over 4
+share VARIABLE, is_shared VARIABLE, lock VARIABLE, cond_wait VARIABLE,
+cond_wait CONDVAR, LOCKVAR, cond_timedwait VARIABLE, ABS_TIMEOUT,
+cond_timedwait CONDVAR, ABS_TIMEOUT, LOCKVAR, cond_signal VARIABLE,
+cond_broadcast VARIABLE
 
-=item SYNOPSIS
+=item OBJECTS
 
-=item DESCRIPTION
+=item NOTES
 
-=item LIMITATIONS
+=item BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 charnames - define character names for C<\N{named}> string literal
-escapes
+=head2 threads - Perl interpreter-based threads
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-=item CUSTOM TRANSLATORS
-
-=item CUSTOM ALIASES
+$thr = threads->create(FUNCTION, ARGS), $thr->join(), $thr->detach(),
+threads->detach(), threads->self(), $thr->tid(), threads->tid(), "$thr",
+threads->object($tid), threads->yield(), threads->list(),
+threads->list(threads::all), threads->list(threads::running),
+threads->list(threads::joinable), $thr1->equal($thr2), async BLOCK;,
+$thr->error(), $thr->_handle(), threads->_handle()
 
-=over 4
+=item EXITING A THREAD
 
-=item Anonymous hashes
+threads->exit(), threads->exit(status), die(), exit(status), use threads
+'exit' => 'threads_only', threads->create({'exit' => 'thread_only'}, ...),
+$thr->set_thread_exit_only(boolean), threads->set_thread_exit_only(boolean)
 
-=item Alias file
+=item THREAD STATE
 
-=item Alias shortcut
+$thr->is_running(), $thr->is_joinable(), $thr->is_detached(),
+threads->is_detached()
 
-=back
+=item THREAD CONTEXT
 
-=item charnames::viacode(code)
+=over 4
 
-=item charnames::vianame(name)
+=item Explicit context
 
-=item ALIASES
+=item Implicit context
 
-=item ILLEGAL CHARACTERS
+=item $thr->wantarray()
 
-=item BUGS
+=item threads->wantarray()
 
 =back
 
-=head2 constant - Perl pragma to declare constants
+=item THREAD STACK SIZE
 
-=over 4
+threads->get_stack_size();, $size = $thr->get_stack_size();, $old_size =
+threads->set_stack_size($new_size);, use threads ('stack_size' => VALUE);,
+$ENV{'PERL5_ITHREADS_STACK_SIZE'}, threads->create({'stack_size' => VALUE},
+FUNCTION, ARGS), $thr2 = $thr1->create(FUNCTION, ARGS)
 
-=item SYNOPSIS
+=item THREAD SIGNALLING
 
-=item DESCRIPTION
+$thr->kill('SIG...');
 
-=item NOTES
+=item WARNINGS
 
-=over 4
+Perl exited with active threads:, Thread creation failed: pthread_create
+returned #, Thread # terminated abnormally: .., Using minimum thread stack
+size of #, Thread creation failed: pthread_attr_setstacksize(I<SIZE>)
+returned 22
 
-=item List constants
+=item ERRORS
 
-=item Defining multiple constants at once
+This Perl not built to support threads, Cannot change stack size of an
+existing thread, Cannot signal threads without safe signals, Unrecognized
+signal name: ..
 
-=item Magic constants
+=item BUGS AND LIMITATIONS
 
-=back
+Thread-safe modules, Using non-thread-safe modules, Current working
+directory, Environment variables, Parent-child threads, Creating threads
+inside special blocks, Unsafe signals, Perl has been built with
+C<PERL_OLD_SIGNALS> (see C<perl -V>), The environment variable
+C<PERL_SIGNALS> is set to C<unsafe> (see L<perlrun/"PERL_SIGNALS">), The
+module L<Perl::Unsafe::Signals> is used, Returning closures from threads,
+Returning objects from threads, Perl Bugs and the CPAN Version of
+L<threads>
 
-=item TECHNICAL NOTES
+=item REQUIREMENTS
 
-=item BUGS
+=item SEE ALSO
 
 =item AUTHOR
 
-=item COPYRIGHT
+=item ACKNOWLEDGEMENTS
 
 =back
 
-=head2 diagnostics, splain - produce verbose warning diagnostics
+=head2 attributes - get/set subroutine or variable attributes
 
 =over 4
 
@@ -11386,129 +12038,127 @@ escapes
 
 =over 4
 
-=item The C<diagnostics> Pragma
+=item Built-in Attributes
 
-=item The I<splain> Program
+locked, method, lvalue
 
-=back
+=item Available Subroutines
 
-=item EXAMPLES
+get, reftype
 
-=item INTERNALS
+=item Package-specific Attribute Handling
 
-=item BUGS
+FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
 
-=item AUTHOR
+=item Syntax of Attribute Lists
 
 =back
 
-=head2 encoding - allows you to write your script in non-ascii or non-utf8
+=item EXPORTS
 
 =over 4
 
-=item SYNOPSIS
+=item Default exports
 
-=item ABSTRACT
+=item Available exports
 
-=over 4
+=item Export tags defined
 
-=item Literal Conversions
+=back
 
-=item PerlIO layers for C<STD(IN|OUT)>
+=item EXAMPLES
 
-=item Implicit upgrading for byte strings
+=item SEE ALSO
 
 =back
 
-=item FEATURES THAT REQUIRE 5.8.1
+=head2 autouse - postpone load of modules until a function is used
 
-"NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
+=over 4
 
-=item USAGE
+=item SYNOPSIS
 
-use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
-I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
+=item DESCRIPTION
 
-=item The Filter Option
+=item WARNING
 
-=over 4
+=item AUTHOR
 
-=item Filter-related changes at Encode version 1.87
+=item SEE ALSO
 
 =back
 
-=item CAVEATS
+=head2 base - Establish an ISA relationship with base classes at compile
+time
 
 =over 4
 
-=item NOT SCOPED
+=item SYNOPSIS
 
-=item DO NOT MIX MULTIPLE ENCODINGS
+=item DESCRIPTION
 
-=item tr/// with ranges
+=item DIAGNOSTICS
 
-Legend of characters above
+Base class package "%s" is empty, Class 'Foo' tried to inherit from itself
 
-=back
+=item HISTORY
 
-=item EXAMPLE - Greekperl
+=item CAVEATS
 
-=item KNOWN PROBLEMS
+=item SEE ALSO
+
+=back
 
-literals in regex that are longer than 127 bytes, EBCDIC, format
+=head2 bigint - Transparent BigInteger support for Perl
 
 =over 4
 
-=item The Logic of :locale
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item HISTORY
+=over 4
 
-=item SEE ALSO
+=item use integer vs. use bigint
 
-=back
+=item Options
 
-=head2 encoding::warnings - Warn on implicit encoding conversions
+a or accuracy, p or precision, t or trace, hex, oct, l, lib, try or only, v
+or version
 
-=over 4
+=item Math Library
 
-=item VERSION
+=item Internal Format
 
-=item SYNOPSIS
+=item Sign
 
-=item DESCRIPTION
+=item Methods
 
-=over 4
+inf(), NaN(), e, PI, bexp(), bpi(), upgrade(), in_effect()
 
-=item Overview of the problem
+=item MATH LIBRARY
 
-=item Detecting the problem
+=item Caveat
 
-=item Solving the problem
+=back
 
-Upgrade both sides to unicode-strings, Downgrade both sides to
-byte-strings, Specify the encoding for implicit byte-string upgrading,
-PerlIO layers for B<STDIN> and B<STDOUT>, Literal conversions, Implicit
-upgrading for byte-strings
+=item CAVAETS
 
-=back
+in_effect(), hex()/oct()
 
-=item CAVEATS
+=item MODULES USED
 
-=back
+=item EXAMPLES
 
-=over 4
+=item LICENSE
 
 =item SEE ALSO
 
 =item AUTHORS
 
-=item COPYRIGHT
-
 =back
 
-=head2 feature - Perl pragma to enable new syntactic features
+=head2 bignum - Transparent BigNumber support for Perl
 
 =over 4
 
@@ -11518,39 +12168,41 @@ upgrading for byte-strings
 
 =over 4
 
-=item The 'switch' feature
+=item Options
 
-=item The '~~' feature
+a or accuracy, p or precision, t or trace, l or lib, hex, oct, v or version
 
-=item The 'say' feature
+=item Methods
 
-=item the 'err' feature
+=item Caveats
 
-=item the 'dor' feature
+inf(), NaN(), e, PI(), bexp(), bpi(), upgrade(), in_effect()
 
-=item the 'state' feature
+=item Math Library
 
-=back
+=item INTERNAL FORMAT
 
-=item FEATURE BUNDLES
+=item SIGN
 
 =back
 
-=head2 fields - compile-time class fields
+=item CAVAETS
 
-=over 4
+in_effect(), hex()/oct()
 
-=item SYNOPSIS
+=item MODULES USED
 
-=item DESCRIPTION
+=item EXAMPLES
 
-new, phash
+=item LICENSE
 
 =item SEE ALSO
 
+=item AUTHORS
+
 =back
 
-=head2 filetest - Perl pragma to control the filetest permission operators
+=head2 bigrat - Transparent BigNumber/BigRational support for Perl
 
 =over 4
 
@@ -11560,28 +12212,48 @@ new, phash
 
 =over 4
 
-=item subpragma access
+=item Modules Used
 
-=back
+=item Math Library
+
+=item Sign
+
+=item Methods
+
+inf(), NaN(), e, PI, bexp(), bpi(), upgrade(), in_effect()
+
+=item MATH LIBRARY
+
+=item Cavaet
+
+=item Options
+
+a or accuracy, p or precision, t or trace, l or lib, hex, oct, v or version
 
 =back
 
-=head2 if - C<use> a Perl module if a condition holds
+=item CAVAETS
 
-=over 4
+in_effect(), hex()/oct()
 
-=item SYNOPSIS
+=item EXAMPLES
 
-=item DESCRIPTION
+       perl -Mbigrat -le 'print sqrt(33)'
+       perl -Mbigrat -le 'print 2*255'
+       perl -Mbigrat -le 'print 4.5+2*255'
+       perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
+       perl -Mbigrat -le 'print 12->is_odd()';
+       perl -Mbignum=l,GMP -le 'print 7 ** 7777'
 
-=item BUGS
+=item LICENSE
 
-=item AUTHOR
+=item SEE ALSO
+
+=item AUTHORS
 
 =back
 
-=head2 integer - Perl pragma to use integer arithmetic instead of floating
-point
+=head2 blib - Use MakeMaker's uninstalled version of a package
 
 =over 4
 
@@ -11589,9 +12261,14 @@ point
 
 =item DESCRIPTION
 
+=item BUGS
+
+=item AUTHOR
+
 =back
 
-=head2 less - perl pragma to request less of something from the compiler
+=head2 bytes - Perl pragma to force byte semantics rather than character
+semantics
 
 =over 4
 
@@ -11599,9 +12276,14 @@ point
 
 =item DESCRIPTION
 
+=item LIMITATIONS
+
+=item SEE ALSO
+
 =back
 
-=head2 lib - manipulate @INC at compile time
+=head2 charnames - define character names for C<\N{named}> string literal
+escapes
 
 =over 4
 
@@ -11609,28 +12291,33 @@ point
 
 =item DESCRIPTION
 
+=item ALIASES
+
+=item CUSTOM ALIASES
+
 =over 4
 
-=item Adding directories to @INC
+=item Anonymous hashes
 
-=item Deleting directories from @INC
+=item Alias file
 
-=item Restoring original @INC
+=item Alias shortcut
 
 =back
 
-=item CAVEATS
+=item charnames::viacode(code)
 
-=item NOTES
+=item charnames::vianame(name)
 
-=item SEE ALSO
+=item CUSTOM TRANSLATORS
 
-=item AUTHOR
+=item ILLEGAL CHARACTERS
+
+=item BUGS
 
 =back
 
-=head2 locale - Perl pragma to use and avoid POSIX locales for built-in
-operations
+=head2 constant - Perl pragma to declare constants
 
 =over 4
 
@@ -11638,37 +12325,31 @@ operations
 
 =item DESCRIPTION
 
-=back
-
-=head2 open - perl pragma to set default PerlIO layers for input and output
+=item NOTES
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item NONPERLIO FUNCTIONALITY
+=item List constants
 
-=item IMPLEMENTATION DETAILS
+=item Defining multiple constants at once
 
-=item SEE ALSO
+=item Magic constants
 
 =back
 
-=head2 ops - Perl pragma to restrict unsafe operations when compiling
+=item TECHNICAL NOTES
 
-=over 4
+=item CAVEATS
 
-=item SYNOPSIS 
+=item BUGS
 
-=item DESCRIPTION
+=item AUTHORS
 
-=item SEE ALSO
+=item COPYRIGHT
 
 =back
 
-=head2 overload - Package for overloading Perl operations
+=head2 diagnostics, splain - produce verbose warning diagnostics
 
 =over 4
 
@@ -11678,130 +12359,136 @@ operations
 
 =over 4
 
-=item Declaration of overloaded functions
+=item The C<diagnostics> Pragma
 
-=item Calling Conventions for Binary Operations
+=item The I<splain> Program
 
-FALSE, TRUE, C<undef>
+=back
 
-=item Calling Conventions for Unary Operations
+=item EXAMPLES
 
-=item Calling Conventions for Mutators
+=item INTERNALS
 
-C<++> and C<-->, C<x=> and other assignment versions
+=item BUGS
 
-=item Overloadable Operations
+=item AUTHOR
 
-I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
-I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
-and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
+=back
 
-=item Inheritance and overloading
+=head2 encoding - allows you to write your script in non-ascii or non-utf8
 
-Strings as values of C<use overload> directive, Overloading of an operation
-is inherited by derived classes
+=over 4
 
-=back
+=item SYNOPSIS
 
-=item SPECIAL SYMBOLS FOR C<use overload>
+=item ABSTRACT
 
 =over 4
 
-=item Last Resort
+=item Literal Conversions
 
-=item Fallback
+=item PerlIO layers for C<STD(IN|OUT)>
 
-C<undef>, TRUE, defined, but FALSE
+=item Implicit upgrading for byte strings
 
-=item Smart Match
+=item Side effects
 
-=item Copy Constructor
+=item Side effects
 
-B<Example>
+=item Side effects
 
 =back
 
-=item MAGIC AUTOGENERATION
+=item FEATURES THAT REQUIRE 5.8.1
 
-I<Assignment forms of arithmetic operations>, I<Conversion operations>,
-I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
-I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
-I<Copy operator>
+"NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
 
-=item Minimal set of overloaded operations
+=item USAGE
 
-=item Losing overloading
+use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
+I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
 
-=item Run-time Overloading
+=item The Filter Option
 
-=item Public functions
+=over 4
 
-overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
+=item Filter-related changes at Encode version 1.87
 
-=item Overloading constants
+=back
 
-integer, float, binary, q, qr
+=item CAVEATS
 
-=item IMPLEMENTATION
+=over 4
 
-=item Metaphor clash
+=item NOT SCOPED
 
-=item Cookbook
+=item DO NOT MIX MULTIPLE ENCODINGS
 
-=over 4
+=item tr/// with ranges
 
-=item Two-face scalars
+Legend of characters above
 
-=item Two-face references
+=back
 
-=item Symbolic calculator
+=item EXAMPLE - Greekperl
 
-=item I<Really> symbolic calculator
+=item KNOWN PROBLEMS
 
-=back
+literals in regex that are longer than 127 bytes, EBCDIC, format, Thread
+safety
 
-=item AUTHOR
+=over 4
 
-=item DIAGNOSTICS
+=item The Logic of :locale
 
-Odd number of arguments for overload::constant, `%s' is not an overloadable
-type, `%s' is not a code reference
+=back
 
-=item BUGS
+=item HISTORY
+
+=item SEE ALSO
 
 =back
 
-=head2 sigtrap - Perl pragma to enable simple signal handling
+=head2 encoding::warnings - Warn on implicit encoding conversions
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-=item OPTIONS
-
 =over 4
 
-=item SIGNAL HANDLERS
+=item Overview of the problem
 
-B<stack-trace>, B<die>, B<handler> I<your-handler>
+=item Detecting the problem
 
-=item SIGNAL LISTS
+=item Solving the problem
 
-B<normal-signals>, B<error-signals>, B<old-interface-signals>
+Upgrade both sides to unicode-strings, Downgrade both sides to
+byte-strings, Specify the encoding for implicit byte-string upgrading,
+PerlIO layers for B<STDIN> and B<STDOUT>, Literal conversions, Implicit
+upgrading for byte-strings
 
-=item OTHER
+=back
 
-B<untrapped>, B<any>, I<signal>, I<number>
+=item CAVEATS
 
 =back
 
-=item EXAMPLES
+=over 4
+
+=item SEE ALSO
+
+=item AUTHORS
+
+=item COPYRIGHT
 
 =back
 
-=head2 sort - perl pragma to control sort() behaviour
+=head2 feature - Perl pragma to enable new syntactic features
 
 =over 4
 
@@ -11809,25 +12496,27 @@ B<untrapped>, B<any>, I<signal>, I<number>
 
 =item DESCRIPTION
 
-=item CAVEATS
+=over 4
 
-=back
+=item Lexical effect
 
-=head2 strict - Perl pragma to restrict unsafe constructs
+=item C<no feature>
 
-=over 4
+=item The 'switch' feature
 
-=item SYNOPSIS
+=item The 'say' feature
 
-=item DESCRIPTION
+=item the 'state' feature
 
-C<strict refs>, C<strict vars>, C<strict subs>
+=back
 
-=item HISTORY
+=item FEATURE BUNDLES
+
+=item IMPLICIT LOADING
 
 =back
 
-=head2 subs - Perl pragma to predeclare sub names
+=head2 fields - compile-time class fields
 
 =over 4
 
@@ -11835,10 +12524,13 @@ C<strict refs>, C<strict vars>, C<strict subs>
 
 =item DESCRIPTION
 
+new, phash
+
+=item SEE ALSO
+
 =back
 
-=head2 threadshared, threads::shared - Perl extension for sharing data
-structures between threads
+=head2 filetest - Perl pragma to control the filetest permission operators
 
 =over 4
 
@@ -11846,26 +12538,19 @@ structures between threads
 
 =item DESCRIPTION
 
-=item EXPORT
-
-=item FUNCTIONS
-
-share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_wait CONDVAR,
-LOCKVAR, cond_timedwait VARIABLE, ABS_TIMEOUT, cond_timedwait CONDVAR,
-ABS_TIMEOUT, LOCKVAR, cond_signal VARIABLE, cond_broadcast VARIABLE
+=over 4
 
-=item NOTES
+=item Consider this carefully
 
-=item BUGS
+=item The "access" sub-pragma
 
-=item AUTHOR
+=item Limitation with regard to C<_>
 
-=item SEE ALSO
+=back
 
 =back
 
-=head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
-code
+=head2 if - C<use> a Perl module if a condition holds
 
 =over 4
 
@@ -11873,23 +12558,14 @@ code
 
 =item DESCRIPTION
 
-=over 4
-
-=item Utility functions
-
-$num_octets = utf8::upgrade($string), $success = utf8::downgrade($string[,
-FAIL_OK]), utf8::encode($string), utf8::decode($string), $flag =
-utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
-
-=back
-
 =item BUGS
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 vars - Perl pragma to predeclare global variable names (obsolete)
+=head2 integer - Perl pragma to use integer arithmetic instead of floating
+point
 
 =over 4
 
@@ -11899,7 +12575,7 @@ utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
 
 =back
 
-=head2 version - Perl extension for Version Objects
+=head2 less - perl pragma to request less of something
 
 =over 4
 
@@ -11907,54 +12583,52 @@ utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
 
 =item DESCRIPTION
 
-=over 4
-
-=item BEST PRACTICES
+=item FOR MODULE AUTHORS
 
-Be consistent, Be careful
+=over 4
 
-=item Using modules that use version.pm
+=item C<< BOOLEAN = less->of( FEATURE ) >>
 
-Numeric versions always work, Extended version work sometimes
+=item C<< FEATURES = less->of() >>
 
-=item What IS a version
+=back
 
-Numeric Versions, Extended Versions
+=item CAVEATS
 
-=item Numeric Versions
+This probably does nothing, This works only on 5.10+
 
-=item Extended Versions
+=back
 
-=item Numeric Alpha Versions
+=head2 lib - manipulate @INC at compile time
 
-=item Object Methods
+=over 4
 
-New Operator, qv(), Normal Form, Numification, Stringification, Comparison
-operators, Logical Operators
+=item SYNOPSIS
 
-=item Quoting
+=item DESCRIPTION
 
-=item What about v-strings?
+=over 4
 
-=item Types of Versions Objects
+=item Adding directories to @INC
 
-Ordinary versions, Alpha Versions
+=item Deleting directories from @INC
 
-=item Replacement UNIVERSAL::VERSION
+=item Restoring original @INC
 
 =back
 
-=item SUBCLASSING
-
-=item EXPORT
+=item CAVEATS
 
-=item AUTHOR
+=item NOTES
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 vmsish - Perl pragma to control VMS-specific language features
+=head2 locale - Perl pragma to use and avoid POSIX locales for built-in
+operations
 
 =over 4
 
@@ -11962,11 +12636,9 @@ Ordinary versions, Alpha Versions
 
 =item DESCRIPTION
 
-C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
-
 =back
 
-=head2 warnings - Perl pragma to control optional warnings
+=head2 mro - Method Resolution Order
 
 =over 4
 
@@ -11974,266 +12646,256 @@ C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
 
 =item DESCRIPTION
 
-use warnings::register, warnings::enabled(), warnings::enabled($category),
-warnings::enabled($object), warnings::warn($message),
-warnings::warn($category, $message), warnings::warn($object, $message),
-warnings::warnif($message), warnings::warnif($category, $message),
-warnings::warnif($object, $message)
-
-=back
+=item OVERVIEW
 
-=head2 warnings::register - warnings import function
+=item The C3 MRO
 
 =over 4
 
-=item SYNOPSIS
+=item What is C3?
 
-=item DESCRIPTION
+=item How does C3 work
 
 =back
 
-=head1 MODULE DOCUMENTATION
-
-=head2 AnyDBM_File - provide framework for multiple DBMs
+=item Functions
 
 =over 4
 
-=item SYNOPSIS
+=item mro::get_linear_isa($classname[, $type])
 
-=item DESCRIPTION
+=item mro::set_mro($classname, $type)
 
-=over 4
+=item mro::get_mro($classname)
 
-=item DBM Comparisons
+=item mro::get_isarev($classname)
 
-[0], [1], [2], [3]
+=item mro::is_universal($classname)
 
-=back
+=item mro::invalidate_all_method_caches()
 
-=item SEE ALSO
+=item mro::method_changed_in($classname)
 
-=back
+=item mro::get_pkg_gen($classname)
 
-=head2 Archive::Tar - module for manipulations of tar archives
+=item next::method
 
-=over 4
+=item next::can
 
-=item SYNOPSIS
+=item maybe::next::method
 
-=item DESCRIPTION
+=back
 
-=item Object Methods
+=item SEE ALSO
 
 =over 4
 
-=item Archive::Tar->new( [$file, $compressed] )
+=item The original Dylan paper
 
-=back
+L<http://www.webcom.com/haahr/dylan/linearization-oopsla96.html>
 
-=back
+=item The prototype Perl 6 Object Model uses C3
 
-=over 4
+L<http://svn.openfoundry.org/pugs/perl5/Perl6-MetaModel/>
 
-=item $tar->read ( $filename|$handle, $compressed, {opt => 'val'} )
+=item Parrot now uses C3
 
-limit, extract
+L<http://aspn.activestate.com/ASPN/Mail/Message/perl6-internals/2746631>,
+L<http://use.perl.org/~autrijus/journal/25768>
 
-=back
+=item Python 2.3 MRO related links
 
-=over 4
+L<http://www.python.org/2.3/mro.html>,
+L<http://www.python.org/2.2.2/descrintro.html#mro>
 
-=item $tar->contains_file( $filename )
+=item C3 for TinyCLOS
 
-=back
+L<http://www.call-with-current-continuation.org/eggs/c3.html>
 
-=over 4
+=item Class::C3
 
-=item $tar->extract( [@filenames] )
+L<Class::C3>
 
 =back
 
-=over 4
-
-=item $tar->extract_file( $file, [$extract_path] )
+=item AUTHOR
 
 =back
 
+=head2 open - perl pragma to set default PerlIO layers for input and output
+
 =over 4
 
-=item $tar->list_files( [\@properties] )
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=over 4
+=item NONPERLIO FUNCTIONALITY
 
-=item $tar->get_files( [@filenames] )
+=item IMPLEMENTATION DETAILS
+
+=item SEE ALSO
 
 =back
 
-=over 4
+=head2 ops - Perl pragma to restrict unsafe operations when compiling
 
-=item $tar->get_content( $file )
+=over 4
 
-=back
+=item SYNOPSIS 
 
-=over 4
+=item DESCRIPTION
 
-=item $tar->replace_content( $file, $content )
+=item SEE ALSO
 
 =back
 
+=head2 overload - Package for overloading Perl operations
+
 =over 4
 
-=item $tar->rename( $file, $new_name )
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
 =over 4
 
-=item $tar->remove (@filenamelist)
+=item Declaration of overloaded functions
 
-=back
+=item Calling Conventions for Binary Operations
 
-=over 4
+FALSE, TRUE, C<undef>
 
-=item $tar->clear
+=item Calling Conventions for Unary Operations
 
-=back
+=item Calling Conventions for Mutators
 
-=over 4
+C<++> and C<-->, C<x=> and other assignment versions
 
-=item $tar->write ( [$file, $compressed, $prefix] )
+=item Overloadable Operations
 
-=back
+I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
+I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
+and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
 
-=over 4
+=item Inheritance and overloading
 
-=item $tar->add_files( @filenamelist )
+Strings as values of C<use overload> directive, Overloading of an operation
+is inherited by derived classes
 
 =back
 
+=item SPECIAL SYMBOLS FOR C<use overload>
+
 =over 4
 
-=item $tar->add_data ( $filename, $data, [$opthashref] )
+=item Last Resort
 
-FILE, HARDLINK, SYMLINK, CHARDEV, BLOCKDEV, DIR, FIFO, SOCKET
+=item Fallback
 
-=back
-
-=over 4
-
-=item $tar->error( [$BOOL] )
+C<undef>, TRUE, defined, but FALSE
 
-=back
+=item Smart Match
 
-=over 4
+=item Copy Constructor
 
-=item $tar->setcwd( $cwd );
+B<Example>
 
 =back
 
-=over 4
+=item MAGIC AUTOGENERATION
 
-=item $bool = $tar->has_io_string
+I<Assignment forms of arithmetic operations>, I<Conversion operations>,
+I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
+I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
+I<Copy operator>
 
-=back
+=item Minimal set of overloaded operations
 
-=over 4
+=item Losing overloading
 
-=item $bool = $tar->has_perlio
+=item Run-time Overloading
 
-=back
+=item Public functions
 
-=over 4
+overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
 
-=item Class Methods
+=item Overloading constants
 
-=over 4
+integer, float, binary, q, qr
 
-=item Archive::Tar->create_archive($file, $compression, @filelist)
+=item IMPLEMENTATION
 
-=back
+=item Metaphor clash
 
-=back
+=item Cookbook
 
 =over 4
 
-=item Archive::Tar->list_archive ($file, $compressed, [\@properties])
+=item Two-face scalars
 
-=back
+=item Two-face references
 
-=over 4
+=item Symbolic calculator
 
-=item Archive::Tar->extract_archive ($file, $gzip)
+=item I<Really> symbolic calculator
 
 =back
 
-=over 4
+=item AUTHOR
 
-=item Archive::Tar->can_handle_compressed_files
+=item DIAGNOSTICS
 
-=back
+Odd number of arguments for overload::constant, `%s' is not an overloadable
+type, `%s' is not a code reference
 
-=over 4
+=item BUGS
 
-=item GLOBAL VARIABLES
+=back
 
-=over 4
+=head2 sigtrap - Perl pragma to enable simple signal handling
 
-=item $Archive::Tar::FOLLOW_SYMLINK
+=over 4
 
-=item $Archive::Tar::CHOWN
+=item SYNOPSIS
 
-=item $Archive::Tar::CHMOD
+=item DESCRIPTION
 
-=item $Archive::Tar::DO_NOT_USE_PREFIX
+=item OPTIONS
 
-=item $Archive::Tar::DEBUG
+=over 4
 
-=item $Archive::Tar::WARN
+=item SIGNAL HANDLERS
 
-=item $Archive::Tar::error
+B<stack-trace>, B<die>, B<handler> I<your-handler>
 
-=item $Archive::Tar::HAS_PERLIO
+=item SIGNAL LISTS
 
-=item $Archive::Tar::HAS_IO_STRING
+B<normal-signals>, B<error-signals>, B<old-interface-signals>
 
-=back
+=item OTHER
 
-=item FAQ
+B<untrapped>, B<any>, I<signal>, I<number>
 
-What's the minimum perl version required to run Archive::Tar?, Isn't
-Archive::Tar slow?, Isn't Archive::Tar heavier on memory than /bin/tar?,
-Can't you lazy-load data instead?, How much memory will an X kb tar file
-need?, What do you do with unsupported filetypes in an archive?, I'm using
-WinZip, or some other non-POSIX client, and files are not being extracted
-properly!, How do I extract only files that have property X from an
-archive?, How do I access .tar.Z files?
+=back
 
-=item TODO
+=item EXAMPLES
 
-Check if passed in handles are open for read/write, Allow archives to be
-passed in as string, Facilitate processing an opened filehandle of a
-compressed archive
+=back
 
-=item SEE ALSO
+=head2 sort - perl pragma to control sort() behaviour
 
-The GNU tar specification, The PAX format specication, A comparison of GNU
-and POSIX tar standards;
-C<http://www.delorie.com/gnu/docs/tar/tar_114.html>, GNU tar intends to
-switch to POSIX compatibility, A Comparison between various tar
-implementations
+=over 4
 
-=item AUTHOR
+=item SYNOPSIS
 
-=item ACKNOWLEDGEMENTS
+=item DESCRIPTION
 
-=item COPYRIGHT
+=item CAVEATS
 
 =back
 
-=head2 Archive::Tar::File - a subclass for in-memory extracted file from
-Archive::Tar
+=head2 strict - Perl pragma to restrict unsafe constructs
 
 =over 4
 
@@ -12241,155 +12903,145 @@ Archive::Tar
 
 =item DESCRIPTION
 
-=over 4
-
-=item Accessors
+C<strict refs>, C<strict vars>, C<strict subs>
 
-name, mode, uid, gid, size, mtime, chksum, type, linkname, magic, version,
-uname, gname, devmajor, devminor, prefix, raw
+=item HISTORY
 
 =back
 
-=item Methods
+=head2 subs - Perl pragma to predeclare sub names
 
 =over 4
 
-=item new( file => $path )
-
-=item new( data => $path, $data, $opt )
+=item SYNOPSIS
 
-=item new( chunk => $chunk )
+=item DESCRIPTION
 
 =back
 
-=back
+=head2 threadshared, threads::shared - Perl extension for sharing data
+structures between threads
 
 =over 4
 
-=item full_path
+=item VERSION
 
-=back
+=item SYNOPSIS
 
-=over 4
+=item DESCRIPTION
 
-=item validate
+=item EXPORT
 
-=back
+=item FUNCTIONS
 
-=over 4
+share VARIABLE, is_shared VARIABLE, lock VARIABLE, cond_wait VARIABLE,
+cond_wait CONDVAR, LOCKVAR, cond_timedwait VARIABLE, ABS_TIMEOUT,
+cond_timedwait CONDVAR, ABS_TIMEOUT, LOCKVAR, cond_signal VARIABLE,
+cond_broadcast VARIABLE
 
-=item has_content
+=item OBJECTS
 
-=back
+=item NOTES
 
-=over 4
+=item BUGS AND LIMITATIONS
 
-=item get_content
+=item SEE ALSO
+
+=item AUTHOR
 
 =back
 
+=head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
+code
+
 =over 4
 
-=item get_content_by_ref
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
 =over 4
 
-=item replace_content( $content )
+=item Utility functions
+
+$num_octets = utf8::upgrade($string), $success = utf8::downgrade($string[,
+FAIL_OK]), utf8::encode($string), $success = utf8::decode($string), $flag =
+utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
 
 =back
 
-=over 4
+=item BUGS
 
-=item rename( $new_name )
+=item SEE ALSO
 
 =back
 
+=head2 vars - Perl pragma to predeclare global variable names (obsolete)
+
 =over 4
 
-=item Convenience methods
+=item SYNOPSIS
 
-is_file, is_dir, is_hardlink, is_symlink, is_chardev, is_blockdev, is_fifo,
-is_socket, is_longlink, is_label, is_unknown
+=item DESCRIPTION
 
 =back
 
-=head2 Attribute::Handlers - Simpler definition of attribute handlers
+=head2 version - Perl extension for Version Objects
 
 =over 4
 
-=item VERSION
-
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-[0], [1], [2], [3], [4], [5]
-
 =over 4
 
-=item Typed lexicals
-
-=item Type-specific attribute handlers
-
-=item Non-interpretive attribute handlers
-
-=item Phase-specific attribute handlers
-
-=item Attributes as C<tie> interfaces
-
-=back
-
-=item EXAMPLES
+=item BEST PRACTICES
 
-=item DIAGNOSTICS
+Be consistent, Be careful
 
-C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
-attributes>, C<Declaration of %s attribute in package %s may clash with
-future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
-C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
-be able to apply END handler>
+=item Using modules that use version.pm
 
-=item AUTHOR
+Numeric versions always work, Extended version work sometimes
 
-=item BUGS
+=item What IS a version
 
-=item COPYRIGHT
+Numeric Versions, Extended Versions
 
-=back
+=item Numeric Versions
 
-=head2 AutoLoader - load subroutines only on demand
+=item Extended Versions
 
-=over 4
+=item Numeric Alpha Versions
 
-=item SYNOPSIS
+=item Object Methods
 
-=item DESCRIPTION
+New Operator, qv(), Normal Form, Numification, Stringification, Comparison
+operators, Logical Operators
 
-=over 4
+=item Quoting
 
-=item Subroutine Stubs
+=item What about v-strings?
 
-=item Using B<AutoLoader>'s AUTOLOAD Subroutine
+=item Types of Versions Objects
 
-=item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
+Ordinary versions, Alpha Versions
 
-=item Package Lexicals
+=item Replacement UNIVERSAL::VERSION
 
-=item Not Using AutoLoader
+=back
 
-=item B<AutoLoader> vs. B<SelfLoader>
+=item SUBCLASSING
 
-=back
+=item EXPORT
 
-=item CAVEATS
+=item AUTHOR
 
 =item SEE ALSO
 
 =back
 
-=head2 AutoSplit - split a package for autoloading
+=head2 vmsish - Perl pragma to control VMS-specific language features
 
 =over 4
 
@@ -12397,19 +13049,27 @@ be able to apply END handler>
 
 =item DESCRIPTION
 
-$keep, $check, $modtime
+C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
+
+=back
+
+=head2 warnings - Perl pragma to control optional warnings
 
 =over 4
 
-=item Multiple packages
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item DIAGNOSTICS
+use warnings::register, warnings::enabled(), warnings::enabled($category),
+warnings::enabled($object), warnings::warn($message),
+warnings::warn($category, $message), warnings::warn($object, $message),
+warnings::warnif($message), warnings::warnif($category, $message),
+warnings::warnif($object, $message)
 
 =back
 
-=head2 B - The Perl Compiler
+=head2 warnings::register - warnings import function
 
 =over 4
 
@@ -12417,154 +13077,150 @@ $keep, $check, $modtime
 
 =item DESCRIPTION
 
-=item OVERVIEW
+=back
 
-=item Utility Functions
+=head1 MODULE DOCUMENTATION
 
-=over 4
+=head2 AnyDBM_File - provide framework for multiple DBMs
 
-=item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
-objects
+=over 4
 
-sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
-check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
+=item SYNOPSIS
 
-=item Functions for Examining the Symbol Table
+=item DESCRIPTION
 
-walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
+=over 4
 
-=item Functions Returning C<B::OP> objects or for walking op trees
+=item DBM Comparisons
 
-main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
+[0], [1], [2], [3]
 
-=item Miscellaneous Utility Functions
+=back
 
-ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
-perlstring(STR), class(OBJ), threadsv_names
+=item SEE ALSO
 
 =back
 
-=item OVERVIEW OF CLASSES
+=head2 Archive::Extract - A generic archive extracting mechanism
 
 =over 4
 
-=item SV-RELATED CLASSES
+=item SYNOPSIS
 
-=item B::SV Methods
+=item DESCRIPTION
 
-REFCNT, FLAGS, object_2svref
+=back
 
-=item B::IV Methods
+=over 4
 
-IV, IVX, UVX, int_value, needs64bits, packiv
+=item METHODS
 
-=item B::NV Methods
+=over 4
 
-NV, NVX
+=item $ae = Archive::Extract->new(archive => '/path/to/archive',[type =>
+TYPE])
 
-=item B::RV Methods
+tar, tgz, gz, Z, zip, bz2, tbz
 
-RV
+=back
 
-=item B::PV Methods
+=back
 
-PV, RV, PVX
+=over 4
 
-=item B::PVMG Methods
+=item $ae->extract( [to => '/output/path'] )
 
-MAGIC, SvSTASH
+$ae->extract_path, $ae->files
 
-=item B::MAGIC Methods
+=back
 
-MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
+=over 4
 
-=item B::PVLV Methods
+=item ACCESSORS
 
-TARGOFF, TARGLEN, TYPE, TARG
+=over 4
 
-=item B::BM Methods
+=item $ae->error([BOOL])
 
-USEFUL, PREVIOUS, RARE, TABLE
+=item $ae->extract_path
 
-=item B::GV Methods
+=item $ae->files
 
-is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
-LINE, FILE, FILEGV, GvREFCNT, FLAGS
+=item $ae->archive
 
-=item B::IO Methods
+=item $ae->type
 
-LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
-BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
+=item $ae->types
 
-=item B::AV Methods
+=back
 
-FILL, MAX, ARRAY, ARRAYelt, OFF, AvFLAGS
+=back
 
-=item B::CV Methods
+=over 4
 
-STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
-XSUBANY, CvFLAGS, const_sv
+=item $ae->is_tgz
 
-=item B::HV Methods
+=item $ae->is_tar
 
-FILL, MAX, KEYS, RITER, NAME, ARRAY, PMROOT
+=item $ae->is_gz
 
-=item OP-RELATED CLASSES
+=item $ae->is_Z
 
-=item B::OP Methods
+=item $ae->is_zip
 
-next, sibling, name, ppaddr, desc, targ, type, opt, static, flags, private,
-spare
+=back
 
-=item B::UNOP METHOD
+=over 4
 
-first
+=item $ae->bin_tar
 
-=item B::BINOP METHOD
+=item $ae->bin_gzip
 
-last
+=item $ae->bin_unzip
 
-=item B::LOGOP METHOD
+=back
 
-other
+=over 4
 
-=item B::LISTOP METHOD
+=item HOW IT WORKS
 
-children
+=item CAVEATS
 
-=item B::PMOP Methods
+=over 4
 
-pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, extflags, 
-precomp, pmoffset
+=item File Extensions
 
-=item B::SVOP METHOD
+=item Supporting Very Large Files
 
-sv, gv
+=item Bunzip2 support of arbitrary extensions.
 
-=item B::PADOP METHOD
+=back
 
-padix
+=item GLOBAL VARIABLES
 
-=item B::PVOP METHOD
+=over 4
 
-pv
+=item $Archive::Extract::DEBUG
 
-=item B::LOOP Methods
+=item $Archive::Extract::WARN
 
-redoop, nextop, lastop
+=item $Archive::Extract::PREFER_BIN
 
-=item B::COP Methods
+=back
 
-label, stash, stashpv, file, cop_seq, arybase, line, warnings, io, hints
+=item TODO
 
-=back
+Mime magic support
+
+=item BUG REPORTS
 
 =item AUTHOR
 
+=item COPYRIGHT
+
 =back
 
-=head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
-bytecode
+=head2 Archive::Tar - module for manipulations of tar archives
 
 =over 4
 
@@ -12572,241 +13228,220 @@ bytecode
 
 =item DESCRIPTION
 
-%insn_data, @insn_name, @optype, @specialsv_name
+=item Object Methods
 
-=item AUTHOR
+=over 4
+
+=item Archive::Tar->new( [$file, $compressed] )
 
 =back
 
-=head2 B::Assembler - Assemble Perl bytecode
+=back
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item $tar->read ( $filename|$handle, $compressed, {opt => 'val'} )
 
-=item AUTHORS
+limit, extract
 
 =back
 
-=head2 B::Bblock - Walk basic blocks
-
 =over 4
 
-=item SYNOPSIS
+=item $tar->contains_file( $filename )
 
-=item DESCRIPTION
+=back
 
 =over 4
 
-=item Functions
-
-B<find_leaders>
+=item $tar->extract( [@filenames] )
 
 =back
 
-=item AUTHOR
+=over 4
 
-=back
+=item $tar->extract_file( $file, [$extract_path] )
 
-=head2 B::Bytecode - Perl compiler's bytecode backend
+=back
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item $tar->list_files( [\@properties] )
 
-=item EXAMPLE
+=back
 
-=item OPTIONS
+=over 4
 
-B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
+=item $tar->get_files( [@filenames] )
 
-=item KNOWN BUGS
+=back
 
-=item NOTICE
+=over 4
 
-=item AUTHORS
+=item $tar->get_content( $file )
 
 =back
 
-=head2 B::C - Perl compiler's C backend
-
 =over 4
 
-=item SYNOPSIS
+=item $tar->replace_content( $file, $content )
 
-=item DESCRIPTION
+=back
 
-=item OPTIONS
+=over 4
 
-B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
-B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
-B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
-B<-llimit>
+=item $tar->rename( $file, $new_name )
 
-=item EXAMPLES
+=back
 
-=item BUGS
+=over 4
 
-=item AUTHOR
+=item $tar->remove (@filenamelist)
 
 =back
 
-=head2 B::CC - Perl compiler's optimized C translation backend
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item OPTIONS
+=item $tar->clear
 
-B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
-B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
-B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
+=back
 
-=item EXAMPLES
+=over 4
 
-=item BUGS
+=item $tar->write ( [$file, $compressed, $prefix] )
 
-=item DIFFERENCES
+=back
 
 =over 4
 
-=item Loops
-
-=item Context of ".."
+=item $tar->add_files( @filenamelist )
 
-=item Arithmetic
+=back
 
-=item Deprecated features
+=over 4
 
-=back
+=item $tar->add_data ( $filename, $data, [$opthashref] )
 
-=item AUTHOR
+FILE, HARDLINK, SYMLINK, CHARDEV, BLOCKDEV, DIR, FIFO, SOCKET
 
 =back
 
-=head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item EXAMPLE
+=item $tar->error( [$BOOL] )
 
-=item OPTIONS
+=back
 
 =over 4
 
-=item Options for Opcode Ordering
+=item $tar->setcwd( $cwd );
 
-B<-basic>, B<-exec>, B<-tree>
+=back
 
-=item Options for Line-Style
+=over 4
 
-B<-concise>, B<-terse>, B<-linenoise>, B<-debug>, B<-env>
+=item $bool = $tar->has_io_string
 
-=item Options for tree-specific formatting
+=back
 
-B<-compact>, B<-loose>, B<-vt>, B<-ascii>
+=over 4
 
-=item Options controlling sequence numbering
+=item $bool = $tar->has_perlio
 
-B<-base>I<n>, B<-bigendian>, B<-littleendian>
+=back
 
-=item Other options
+=over 4
 
-B<-main>, B<-nomain>, B<-nobanner>, B<-banner>, B<-banneris> => subref
+=item Class Methods
 
-=item Option Stickiness
+=over 4
+
+=item Archive::Tar->create_archive($file, $compression, @filelist)
 
 =back
 
-=item ABBREVIATIONS
+=back
 
 =over 4
 
-=item OP class abbreviations
-
-=item OP flags abbreviations
+=item Archive::Tar->list_archive ($file, $compressed, [\@properties])
 
 =back
 
-=item FORMATTING SPECIFICATIONS
-
 =over 4
 
-=item Special Patterns
+=item Archive::Tar->extract_archive ($file, $gzip)
 
-B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
-B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
-B<~>
+=back
 
-=item # Variables
+=over 4
 
-B<#>I<var>, B<#>I<var>I<N>, B<#>I<Var>, B<#addr>, B<#arg>, B<#class>,
-B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
-B<#flags>, B<#flagval>, B<#hints>, B<#hintsval>, B<#hyphseq>, B<#label>,
-B<#lastaddr>, B<#name>, B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>,
-B<#private>, B<#privval>, B<#seq>, B<#seqnum>, B<#opt>, B<#static>,
-B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>, B<#targ>, B<#targarg>,
-B<#targarglife>, B<#typenum>
+=item Archive::Tar->can_handle_compressed_files
 
 =back
 
-=item One-Liner Command tips
-
-perl -MO=Concise,bar foo.pl, perl -MDigest::MD5=md5 -MO=Concise,md5 -e1,
-perl -MPOSIX -MO=Concise,_POSIX_ARG_MAX -e1, perl -MPOSIX -MO=Concise,a -e
-'print _POSIX_SAVED_IDS', perl -MPOSIX -MO=Concise,a -e 'sub
-a{_POSIX_SAVED_IDS}'
+=over 4
 
-=item Using B::Concise outside of the O framework
+=item GLOBAL VARIABLES
 
 =over 4
 
-=item Example: Altering Concise Renderings
+=item $Archive::Tar::FOLLOW_SYMLINK
 
-=item set_style()
+=item $Archive::Tar::CHOWN
 
-=item set_style_standard($name)
+=item $Archive::Tar::CHMOD
 
-=item add_style()
+=item $Archive::Tar::DO_NOT_USE_PREFIX
 
-=item add_callback()
+=item $Archive::Tar::DEBUG
 
-=item Running B::Concise::compile()
+=item $Archive::Tar::WARN
 
-=item B::Concise::reset_sequence()
+=item $Archive::Tar::error
 
-=item Errors
+=item $Archive::Tar::INSECURE_EXTRACT_MODE
 
-=back
+=item $Archive::Tar::HAS_PERLIO
 
-=item AUTHOR
+=item $Archive::Tar::HAS_IO_STRING
 
 =back
 
-=head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
+=item FAQ
 
-=over 4
+What's the minimum perl version required to run Archive::Tar?, Isn't
+Archive::Tar slow?, Isn't Archive::Tar heavier on memory than /bin/tar?,
+Can't you lazy-load data instead?, How much memory will an X kb tar file
+need?, What do you do with unsupported filetypes in an archive?, I'm using
+WinZip, or some other non-POSIX client, and files are not being extracted
+properly!, How do I extract only files that have property X from an
+archive?, How do I access .tar.Z files?, How do I handle Unicode strings?
 
-=item SYNOPSIS
+=item TODO
 
-=item DESCRIPTION
+Check if passed in handles are open for read/write, Allow archives to be
+passed in as string, Facilitate processing an opened filehandle of a
+compressed archive
+
+=item SEE ALSO
+
+The GNU tar specification, The PAX format specication, A comparison of GNU
+and POSIX tar standards;
+C<http://www.delorie.com/gnu/docs/tar/tar_114.html>, GNU tar intends to
+switch to POSIX compatibility, A Comparison between various tar
+implementations
 
 =item AUTHOR
 
+=item ACKNOWLEDGEMENTS
+
+=item COPYRIGHT
+
 =back
 
-=head2 B::Deparse - Perl compiler backend to produce perl code
+=head2 Archive::Tar::File - a subclass for in-memory extracted file from
+Archive::Tar
 
 =over 4
 
@@ -12814,135 +13449,125 @@ a{_POSIX_SAVED_IDS}'
 
 =item DESCRIPTION
 
-=item OPTIONS
+=over 4
 
-B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
-B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
+=item Accessors
 
-=item USING B::Deparse AS A MODULE
+name, mode, uid, gid, size, mtime, chksum, type, linkname, magic, version,
+uname, gname, devmajor, devminor, prefix, raw
 
-=over 4
+=back
 
-=item Synopsis
+=item Methods
 
-=item Description
+=over 4
 
-=item new
+=item new( file => $path )
 
-=item ambient_pragmas
+=item new( data => $path, $data, $opt )
 
-strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
+=item new( chunk => $chunk )
 
-=item coderef2text
+=back
 
 =back
 
-=item BUGS
+=over 4
 
-=item AUTHOR
+=item full_path
 
 =back
 
-=head2 B::Disassembler - Disassemble Perl bytecode
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item AUTHOR
+=item validate
 
 =back
 
-=head2 B::Lint - Perl lint
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item has_content
 
-=item OPTIONS AND LINT CHECKS
+=back
 
-B<magic-diamond>, B<context>, B<implicit-read> and B<implicit-write>,
-B<bare-subs>, B<dollar-underscore>, B<private-names>, B<undefined-subs>,
-B<regexp-variables>, B<all>, B<none>
+=over 4
 
-=item NON LINT-CHECK OPTIONS
+=item get_content
 
-B<-u Package>
+=back
 
-=item EXTENDING LINT
+=over 4
 
-=item TODO
+=item get_content_by_ref
 
-while(<FH>) stomps $_, strict oo, unchecked system calls, more tests,
-validate against older perls
+=back
 
-=item BUGS
+=over 4
 
-=item AUTHOR
+=item replace_content( $content )
 
 =back
 
-=head2 B::O, O - Generic interface to Perl Compiler backends
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item rename( $new_name )
 
-=item CONVENTIONS
+=back
 
-=item IMPLEMENTATION
+=over 4
 
-=item BUGS
+=item Convenience methods
 
-=item AUTHOR
+is_file, is_dir, is_hardlink, is_symlink, is_chardev, is_blockdev, is_fifo,
+is_socket, is_longlink, is_label, is_unknown
 
 =back
 
-=head2 B::Showlex - Show lexical variables used in functions or files
+=head2 Attribute::Handlers - Simpler definition of attribute handlers
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-=item EXAMPLES
+[0], [1], [2], [3], [4], [5], [6], [7]
 
 =over 4
 
-=item OPTIONS
+=item Typed lexicals
 
-=back
+=item Type-specific attribute handlers
 
-=item SEE ALSO
+=item Non-interpretive attribute handlers
 
-=item TODO
+=item Phase-specific attribute handlers
 
-=item AUTHOR
+=item Attributes as C<tie> interfaces
 
 =back
 
-=head2 B::Stackobj - Helper module for CC backend
-
-=over 4
+=item EXAMPLES
 
-=item SYNOPSIS
+=item DIAGNOSTICS
 
-=item DESCRIPTION
+C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
+attributes>, C<Declaration of %s attribute in package %s may clash with
+future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
+C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
+be able to apply END handler>
 
 =item AUTHOR
 
-=back
+=item BUGS
+
+=item COPYRIGHT
 
-=head2 B::Stash - show what stashes are loaded
+=back
 
-=head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
+=head2 AutoLoader - load subroutines only on demand
 
 =over 4
 
@@ -12950,29 +13575,29 @@ validate against older perls
 
 =item DESCRIPTION
 
-=item AUTHOR
+=over 4
 
-=back
+=item Subroutine Stubs
 
-=head2 B::Xref - Generates cross reference reports for Perl programs
+=item Using B<AutoLoader>'s AUTOLOAD Subroutine
 
-=over 4
+=item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
 
-=item SYNOPSIS
+=item Package Lexicals
 
-=item DESCRIPTION
+=item Not Using AutoLoader
 
-=item OPTIONS
+=item B<AutoLoader> vs. B<SelfLoader>
 
-C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
+=back
 
-=item BUGS
+=item CAVEATS
 
-=item AUTHOR
+=item SEE ALSO
 
 =back
 
-=head2 Bblock, B::Bblock - Walk basic blocks
+=head2 AutoSplit - split a package for autoloading
 
 =over 4
 
@@ -12980,19 +13605,19 @@ C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
 
 =item DESCRIPTION
 
-=over 4
+$keep, $check, $modtime
 
-=item Functions
+=over 4
 
-B<find_leaders>
+=item Multiple packages
 
 =back
 
-=item AUTHOR
+=item DIAGNOSTICS
 
 =back
 
-=head2 Benchmark - benchmark running times of Perl code
+=head2 B - The Perl Compiler
 
 =over 4
 
@@ -13000,384 +13625,361 @@ B<find_leaders>
 
 =item DESCRIPTION
 
-=over 4
-
-=item Methods
-
-new, debug, iters
-
-=item Standard Exports
+=item OVERVIEW
 
-timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
-timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
-TIMEDIFF, [ STYLE, [ FORMAT ] ] )
+=item Utility Functions
 
-=item Optional Exports
+=over 4
 
-clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
-STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
-disablecache ( ), enablecache ( ), timesum ( T1, T2 )
+=item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
+objects
 
-=item :hireswallclock
+sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
+check_av, unitcheck_av, begin_av, end_av, comppadlist, regex_padav, main_cv
 
-=back
+=item Functions for Examining the Symbol Table
 
-=item NOTES
+walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
 
-=item EXAMPLES
+=item Functions Returning C<B::OP> objects or for walking op trees
 
-=item INHERITANCE
+main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
 
-=item CAVEATS
+=item Miscellaneous Utility Functions
 
-=item SEE ALSO
+ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
+perlstring(STR), class(OBJ), threadsv_names
 
-=item AUTHORS
+=item Exported utility variabiles
 
-=item MODIFICATION HISTORY
+@optype, @specialsv_name
 
 =back
 
-=head2 ByteLoader - load byte compiled perl code
+=item OVERVIEW OF CLASSES
 
 =over 4
 
-=item SYNOPSIS
+=item SV-RELATED CLASSES
 
-=item DESCRIPTION
+=item B::SV Methods
 
-=item AUTHOR
+REFCNT, FLAGS, object_2svref
 
-=item SEE ALSO
+=item B::IV Methods
 
-=back
+IV, IVX, UVX, int_value, needs64bits, packiv
 
-=head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
+=item B::NV Methods
 
-=over 4
+NV, NVX
 
-=item SYNOPSIS
+=item B::RV Methods
 
-=item DESCRIPTION
+RV
 
-=item EXAMPLE
+=item B::PV Methods
 
-=item OPTIONS
+PV, RV, PVX
 
-B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
+=item B::PVMG Methods
 
-=item KNOWN BUGS
+MAGIC, SvSTASH
 
-=item NOTICE
+=item B::MAGIC Methods
 
-=item AUTHORS
+MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
 
-=back
+=item B::PVLV Methods
 
-=head2 CGI - Simple Common Gateway Interface Class
+TARGOFF, TARGLEN, TYPE, TARG
 
-=over 4
+=item B::BM Methods
 
-=item SYNOPSIS
+USEFUL, PREVIOUS, RARE, TABLE
 
-=item ABSTRACT
+=item B::GV Methods
 
-=item DESCRIPTION
+is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
+LINE, FILE, FILEGV, GvREFCNT, FLAGS
 
-=over 4
+=item B::IO Methods
 
-=item PROGRAMMING STYLE
+LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
+BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
 
-=item CALLING CGI.PM ROUTINES
-
-=item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
-
-=item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
-
-=item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
+=item B::AV Methods
 
-=item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
+FILL, MAX, ARRAY, ARRAYelt, OFF, AvFLAGS
 
-=item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
+=item B::CV Methods
 
-=item SETTING THE VALUE(S) OF A NAMED PARAMETER:
+STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
+XSUBANY, CvFLAGS, const_sv
 
-=item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
+=item B::HV Methods
 
-=item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
+FILL, MAX, KEYS, RITER, NAME, ARRAY, PMROOT
 
-=item DELETING A PARAMETER COMPLETELY:
+=item OP-RELATED CLASSES
 
-=item DELETING ALL PARAMETERS:
+=item B::OP Methods
 
-=item HANDLING NON-URLENCODED ARGUMENTS
+next, sibling, name, ppaddr, desc, targ, type, opt, flags, private, spare
 
-=item DIRECT ACCESS TO THE PARAMETER LIST:
+=item B::UNOP METHOD
 
-=item FETCHING THE PARAMETER LIST AS A HASH:
+first
 
-=item SAVING THE STATE OF THE SCRIPT TO A FILE:
+=item B::BINOP METHOD
 
-=item RETRIEVING CGI ERRORS
+last
 
-=item USING THE FUNCTION-ORIENTED INTERFACE
+=item B::LOGOP METHOD
 
-B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
-B<:standard>, B<:all>
+other
 
-=item PRAGMAS
+=item B::LISTOP METHOD
 
--any, -compile, -nosticky, -tabindex, -no_undef_params, -no_xhtml, -nph,
--newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
--private_tempfiles
+children
 
-=item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
+=item B::PMOP Methods
 
-1. start_table() (generates a <table> tag), 2. end_table() (generates a
-</table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
-a </ul> tag)
+pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, extflags, precomp,
+pmoffset
 
-=back
+=item B::SVOP METHOD
 
-=item GENERATING DYNAMIC DOCUMENTS
+sv, gv
 
-=over 4
+=item B::PADOP METHOD
 
-=item CREATING A STANDARD HTTP HEADER:
+padix
 
-=item GENERATING A REDIRECTION HEADER
+=item B::PVOP METHOD
 
-=item CREATING THE HTML DOCUMENT HEADER
+pv
 
-B<Parameters:>, 4, 5, 6..
+=item B::LOOP Methods
 
-=item ENDING THE HTML DOCUMENT:
+redoop, nextop, lastop
 
-=item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
+=item B::COP Methods
 
-=item OBTAINING THE SCRIPT'S URL
+label, stash, stashpv, file, cop_seq, arybase, line, warnings, io, hints,
+hints_hash
 
-B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
-(B<-query_string>), B<-base>, B<-rewrite>
+=back
 
-=item MIXING POST AND URL PARAMETERS
+=item AUTHOR
 
 =back
 
-=item CREATING STANDARD HTML ELEMENTS:
+=head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
 
 =over 4
 
-=item PROVIDING ARGUMENTS TO HTML SHORTCUTS
+=item SYNOPSIS
 
-=item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
+=item DESCRIPTION
 
-=item HTML SHORTCUTS AND LIST INTERPOLATION
+=item EXAMPLE
 
-=item NON-STANDARD HTML SHORTCUTS
+=item OPTIONS
 
-=item AUTOESCAPING HTML
+=over 4
 
-$escaped_string = escapeHTML("unescaped string");, $charset =
-charset([$charset]);, $flag = autoEscape([$flag]);
+=item Options for Opcode Ordering
 
-=item PRETTY-PRINTING HTML
+B<-basic>, B<-exec>, B<-tree>
 
-=back
+=item Options for Line-Style
 
-=item CREATING FILL-OUT FORMS:
+B<-concise>, B<-terse>, B<-linenoise>, B<-debug>, B<-env>
 
-=over 4
+=item Options for tree-specific formatting
 
-=item CREATING AN ISINDEX TAG
+B<-compact>, B<-loose>, B<-vt>, B<-ascii>
 
-=item STARTING AND ENDING A FORM
+=item Options controlling sequence numbering
 
-B<application/x-www-form-urlencoded>, B<multipart/form-data>
+B<-base>I<n>, B<-bigendian>, B<-littleendian>
 
-=item FORM ELEMENTS
+=item Other options
 
-B<-name>, B<-value>, B<-values>, B<-tabindex>, B<-id>, B<-override>,
-B<-onChange>, B<-onFocus>, B<-onBlur>, B<-onMouseOver>, B<-onMouseOut>,
-B<-onSelect>
+B<-src>, B<-stash="somepackage">, B<-main>, B<-nomain>, B<-nobanner>,
+B<-banner>, B<-banneris> => subref
 
-=item CREATING A TEXT FIELD
+=item Option Stickiness
 
-B<Parameters>
+=back
 
-=item CREATING A BIG TEXT FIELD
+=item ABBREVIATIONS
 
-=item CREATING A PASSWORD FIELD
+=over 4
 
-=item CREATING A FILE UPLOAD FIELD
+=item OP class abbreviations
 
-B<Parameters>
+=item OP flags abbreviations
 
-=item CREATING A POPUP MENU
+=back
 
-=item CREATING AN OPTION GROUP
+=item FORMATTING SPECIFICATIONS
 
-=item CREATING A SCROLLING LIST
+=over 4
 
-B<Parameters:>
+=item Special Patterns
 
-=item CREATING A GROUP OF RELATED CHECKBOXES
+B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
+B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
+B<~>
 
-B<Parameters:>
+=item # Variables
 
-=item CREATING A STANDALONE CHECKBOX
+B<#>I<var>, B<#>I<var>I<N>, B<#>I<Var>, B<#addr>, B<#arg>, B<#class>,
+B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
+B<#flags>, B<#flagval>, B<#hints>, B<#hintsval>, B<#hyphseq>, B<#label>,
+B<#lastaddr>, B<#name>, B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>,
+B<#private>, B<#privval>, B<#seq>, B<#seqnum>, B<#opt>, B<#sibaddr>,
+B<#svaddr>, B<#svclass>, B<#svval>, B<#targ>, B<#targarg>, B<#targarglife>,
+B<#typenum>
 
-B<Parameters:>
+=back
 
-=item CREATING A RADIO BUTTON GROUP
+=item One-Liner Command tips
 
-B<Parameters:>
+perl -MO=Concise,bar foo.pl, perl -MDigest::MD5=md5 -MO=Concise,md5 -e1,
+perl -MPOSIX -MO=Concise,_POSIX_ARG_MAX -e1, perl -MPOSIX -MO=Concise,a -e
+'print _POSIX_SAVED_IDS', perl -MPOSIX -MO=Concise,a -e 'sub
+a{_POSIX_SAVED_IDS}', perl -MB::Concise -e
+'B::Concise::compile("-exec","-src", \%B::Concise::)->()'
 
-=item CREATING A SUBMIT BUTTON 
+=item Using B::Concise outside of the O framework
 
-B<Parameters:>
+=over 4
 
-=item CREATING A RESET BUTTON
+=item Example: Altering Concise Renderings
 
-=item CREATING A DEFAULT BUTTON
+=item set_style()
 
-=item CREATING A HIDDEN FIELD
+=item set_style_standard($name)
 
-B<Parameters:>
+=item add_style()
 
-=item CREATING A CLICKABLE IMAGE BUTTON
+=item add_callback()
 
-B<Parameters:>, 3. The third option (-align, optional) is an alignment
-type, and may be TOP, BOTTOM or MIDDLE
+=item Running B::Concise::compile()
 
-=item CREATING A JAVASCRIPT ACTION BUTTON
+=item B::Concise::reset_sequence()
 
-=back
+=item Errors
 
-=item HTTP COOKIES
+=back
 
-1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
-B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
+=item AUTHOR
 
-=item WORKING WITH FRAMES
+=back
 
-1. Create a <Frameset> document, 2. Specify the destination for the
-document in the HTTP header, 3. Specify the destination for the document in
-the <form> tag
+=head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
 
-=item SUPPORT FOR JAVASCRIPT
+=over 4
 
-B<onLoad>, B<onUnload>, B<onSubmit>, B<onClick>, B<onChange>, B<onFocus>,
-B<onBlur>, B<onSelect>, B<onMouseOver>, B<onMouseOut>
+=item SYNOPSIS
 
-=item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
+=item DESCRIPTION
 
-=item DEBUGGING
+=item AUTHOR
 
-=over 4
+=back
 
-=item DUMPING OUT ALL THE NAME/VALUE PAIRS
+=head2 B::Deparse - Perl compiler backend to produce perl code
 
-=back
+=over 4
 
-=item FETCHING ENVIRONMENT VARIABLES
+=item SYNOPSIS
 
-B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
-B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
-name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
-()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
-B<virtual_port ()>, B<server_software ()>, B<remote_user ()>, B<user_name
-()>, B<request_method()>, B<content_type()>, B<http()>, B<https()>
+=item DESCRIPTION
 
-=item USING NPH SCRIPTS
+=item OPTIONS
 
-In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
-parameters
+B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
+B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
 
-=item Server Push
+=item USING B::Deparse AS A MODULE
 
-multipart_init(), multipart_start(), multipart_end(), multipart_final()
+=over 4
 
-=item Avoiding Denial of Service Attacks
+=item Synopsis
 
-B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
-basis>, B<2. Globally for all scripts>
+=item Description
 
-=item COMPATIBILITY WITH CGI-LIB.PL
+=item new
 
-=item AUTHOR INFORMATION
+=item ambient_pragmas
 
-=item CREDITS
+strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits,
+%^H
 
-Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
-(james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
-(mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
-(jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
-(applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
-(tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
-(tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
-MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
-(kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
-Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
-MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
-...and many many more..
+=item coderef2text
 
-=item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
+=back
 
 =item BUGS
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 CGI::Apache - Backward compatibility module for CGI.pm
+=head2 B::Lint - Perl lint
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
-
 =item DESCRIPTION
 
-=item AUTHOR INFORMATION
+=item OPTIONS AND LINT CHECKS
 
-=item BUGS
+B<magic-diamond>, B<context>, B<implicit-read> and B<implicit-write>,
+B<bare-subs>, B<dollar-underscore>, B<private-names>, B<undefined-subs>,
+B<regexp-variables>, B<all>, B<none>
 
-=item SEE ALSO
+=item NON LINT-CHECK OPTIONS
 
-=back
+B<-u Package>
 
-=head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
-other) error log
+=item EXTENDING LINT
 
-=over 4
+=item TODO
 
-=item SYNOPSIS
+while(<FH>) stomps $_, strict oo, unchecked system calls, more tests,
+validate against older perls
 
-=item DESCRIPTION
+=item BUGS
 
-=item REDIRECTING ERROR MESSAGES
+=item AUTHOR
 
-=item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
+=back
+
+=head2 B::O, O - Generic interface to Perl Compiler backends
 
 =over 4
 
-=item Changing the default message
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item MAKING WARNINGS APPEAR AS HTML COMMENTS
+=item CONVENTIONS
 
-=item OVERRIDING THE NAME OF THE PROGRAM
+=item IMPLEMENTATION
 
-=item AUTHORS
+=item BUGS
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 CGI::Cookie - Interface to Netscape Cookies
+=head2 B::Showlex - Show lexical variables used in functions or files
 
 =over 4
 
@@ -13385,33 +13987,23 @@ other) error log
 
 =item DESCRIPTION
 
-=item USING CGI::Cookie
-
-B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
+=item EXAMPLES
 
 =over 4
 
-=item Creating New Cookies
-
-=item Sending the Cookie to the Browser
-
-=item Recovering Previous Cookies
-
-=item Manipulating Cookies
-
-B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
+=item OPTIONS
 
 =back
 
-=item AUTHOR INFORMATION
+=item SEE ALSO
 
-=item BUGS
+=item TODO
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 CGI::Fast - CGI Interface for Fast CGI
+=head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
 
 =over 4
 
@@ -13419,29 +14011,11 @@ B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
 
 =item DESCRIPTION
 
-=item OTHER PIECES OF THE PUZZLE
-
-=item WRITING FASTCGI PERL SCRIPTS
-
-=item INSTALLING FASTCGI SCRIPTS
-
-=item USING FASTCGI SCRIPTS AS CGI SCRIPTS
-
-=item EXTERNAL FASTCGI SERVER INVOCATION
-
-FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
-
-=item CAVEATS
-
-=item AUTHOR INFORMATION
-
-=item BUGS
-
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 CGI::Pretty - module to produce nicely formatted HTML code
+=head2 B::Xref - Generates cross reference reports for Perl programs
 
 =over 4
 
@@ -13449,23 +14023,17 @@ FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
 
 =item DESCRIPTION
 
-=over 4
-
-=item Tags that won't be formatted
-
-=item Customizing the Indenting
+=item OPTIONS
 
-=back
+C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
 
 =item BUGS
 
 =item AUTHOR
 
-=item SEE ALSO
-
 =back
 
-=head2 CGI::Push - Simple Interface to Server Push
+=head2 Benchmark - benchmark running times of Perl code
 
 =over 4
 
@@ -13473,29 +14041,45 @@ FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
 
 =item DESCRIPTION
 
-=item USING CGI::Push
+=over 4
 
--next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
+=item Methods
 
-=over 4
+new, debug, iters
 
-=item Heterogeneous Pages
+=item Standard Exports
 
-=item Changing the Page Delay on the Fly
+timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
+timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
+TIMEDIFF, [ STYLE, [ FORMAT ] ] )
+
+=item Optional Exports
+
+clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
+STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
+disablecache ( ), enablecache ( ), timesum ( T1, T2 )
+
+=item :hireswallclock
 
 =back
 
-=item INSTALLING CGI::Push SCRIPTS
+=item NOTES
 
-=item AUTHOR INFORMATION
+=item EXAMPLES
 
-=item BUGS
+=item INHERITANCE
+
+=item CAVEATS
 
 =item SEE ALSO
 
+=item AUTHORS
+
+=item MODIFICATION HISTORY
+
 =back
 
-=head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
+=head2 CGI - Simple Common Gateway Interface Class
 
 =over 4
 
@@ -13505,262 +14089,272 @@ FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
 
 =item DESCRIPTION
 
-=item AUTHOR INFORMATION
+=over 4
 
-=item BUGS
+=item PROGRAMMING STYLE
 
-=item SEE ALSO
+=item CALLING CGI.PM ROUTINES
 
-=back
+=item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
 
-=head2 CGI::Util - Internal utilities used by CGI module
+=item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
 
-=over 4
+=item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
 
-=item SYNOPSIS
+=item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
 
-=item DESCRIPTION
+=item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
 
-=item AUTHOR INFORMATION
+=item SETTING THE VALUE(S) OF A NAMED PARAMETER:
 
-=item SEE ALSO
+=item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
 
-=back
+=item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
 
-=head2 CPAN - query, download and build perl modules from CPAN sites
+=item DELETING A PARAMETER COMPLETELY:
 
-=over 4
+=item DELETING ALL PARAMETERS:
 
-=item SYNOPSIS
+=item HANDLING NON-URLENCODED ARGUMENTS
 
-=item STATUS
+=item DIRECT ACCESS TO THE PARAMETER LIST:
 
-=item COMPATIBILITY
+=item FETCHING THE PARAMETER LIST AS A HASH:
 
-=item DESCRIPTION
+=item SAVING THE STATE OF THE SCRIPT TO A FILE:
 
-=over 4
+=item RETRIEVING CGI ERRORS
 
-=item Interactive Mode
+=item USING THE FUNCTION-ORIENTED INTERFACE
 
-Searching for authors, bundles, distribution files and modules, make, test,
-install, clean modules or distributions, get, readme, perldoc, look module
-or distribution, ls author, ls globbing_expression, failed, Lockfile,
-Signals
+B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
+B<:standard>, B<:all>
 
-=item CPAN::Shell
+=item PRAGMAS
 
-=item autobundle
+-any, -compile, -nosticky, -tabindex, -no_undef_params, -no_xhtml, -nph,
+-newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
+-private_tempfiles
 
-=item recompile
+=item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
 
-=item upgrade
+1. start_table() (generates a <table> tag), 2. end_table() (generates a
+</table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
+a </ul> tag)
 
-=item mkmyconfig
+=back
 
-=item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
+=item GENERATING DYNAMIC DOCUMENTS
 
-=item Programmer's interface
+=over 4
 
-expand($type,@things), expandany(@things), Programming Examples
+=item CREATING A STANDARD HTTP HEADER:
 
-=item Methods in the other Classes
+=item GENERATING A REDIRECTION HEADER
 
-CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
-CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
-CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
-CPAN::Bundle::clean(), CPAN::Bundle::contains(),
-CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
-CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
-CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
-CPAN::Bundle::readme(), CPAN::Bundle::test(),
-CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
-CPAN::Distribution::author, CPAN::Distribution::clean(),
-CPAN::Distribution::containsmods(), CPAN::Distribution::cvs_import(),
-CPAN::Distribution::dir(), CPAN::Distribution::force($method,@args),
-CPAN::Distribution::get(), CPAN::Distribution::install(),
-CPAN::Distribution::isa_perl(), CPAN::Distribution::look(),
-CPAN::Distribution::make(), CPAN::Distribution::perldoc(),
-CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
-CPAN::Distribution::read_yaml(), CPAN::Distribution::test(),
-CPAN::Distribution::uptodate(), CPAN::Index::force_reload(),
-CPAN::Index::reload(), CPAN::InfoObj::dump(), CPAN::Module::as_glimpse(),
-CPAN::Module::as_string(), CPAN::Module::clean(),
-CPAN::Module::cpan_file(), CPAN::Module::cpan_version(),
-CPAN::Module::cvs_import(), CPAN::Module::description(),
-CPAN::Module::distribution(), CPAN::Module::dslip_status(),
-CPAN::Module::force($method,@args), CPAN::Module::get(),
-CPAN::Module::inst_file(), CPAN::Module::inst_version(),
-CPAN::Module::install(), CPAN::Module::look(), CPAN::Module::make(),
-CPAN::Module::manpage_headline(), CPAN::Module::perldoc(),
-CPAN::Module::readme(), CPAN::Module::test(), CPAN::Module::uptodate(),
-CPAN::Module::userid()
+=item CREATING THE HTML DOCUMENT HEADER
 
-=item Cache Manager
+B<Parameters:>, 4, 5, 6..
 
-=item Bundles
+=item ENDING THE HTML DOCUMENT:
 
-=item Prerequisites
+=item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
 
-=item Finding packages and VERSION
+=item OBTAINING THE SCRIPT'S URL
 
-=item Debugging
+B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
+(B<-query_string>), B<-base>, B<-rewrite>
 
-=item Floppy, Zip, Offline Mode
+=item MIXING POST AND URL PARAMETERS
 
 =back
 
-=item CONFIGURATION
-
-C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
-E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
-optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
-[unshift|push|splice] E<lt>listE<gt>>
+=item CREATING STANDARD HTML ELEMENTS:
 
 =over 4
 
-=item Not on config variable getcwd
+=item PROVIDING ARGUMENTS TO HTML SHORTCUTS
 
-=item Note on urllist parameter's format
+=item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
 
-=item urllist parameter has CD-ROM support
+=item HTML SHORTCUTS AND LIST INTERPOLATION
 
-=back
+=item NON-STANDARD HTML SHORTCUTS
 
-=item SECURITY
+=item AUTOESCAPING HTML
 
-=over 4
+$escaped_string = escapeHTML("unescaped string");, $charset =
+charset([$charset]);, $flag = autoEscape([$flag]);
 
-=item Cryptographically signed modules
+=item PRETTY-PRINTING HTML
 
 =back
 
-=item EXPORT
+=item CREATING FILL-OUT FORMS:
 
-=item ENVIRONMENT
+=over 4
 
-=item POPULATE AN INSTALLATION WITH LOTS OF MODULES
+=item CREATING AN ISINDEX TAG
 
-=item WORKING WITH CPAN.pm BEHIND FIREWALLS
+=item STARTING AND ENDING A FORM
 
-=over 4
+B<application/x-www-form-urlencoded>, B<multipart/form-data>
 
-=item Three basic types of firewalls
+=item FORM ELEMENTS
 
-http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
+B<-name>, B<-value>, B<-values>, B<-tabindex>, B<-id>, B<-override>,
+B<-onChange>, B<-onFocus>, B<-onBlur>, B<-onMouseOver>, B<-onMouseOut>,
+B<-onSelect>
 
-=item Configuring lynx or ncftp for going through a firewall
+=item CREATING A TEXT FIELD
 
-=back
+B<Parameters>
 
-=item FAQ
+=item CREATING A BIG TEXT FIELD
 
-1), 2), 3), 4), 5), 6), 7), 8), 9), 10), 11), 12), 13), 14)
+=item CREATING A PASSWORD FIELD
 
-=item BUGS
+=item CREATING A FILE UPLOAD FIELD
 
-=item SECURITY ADVICE
+B<Parameters>
 
-=item AUTHOR
+=item CREATING A POPUP MENU
 
-=item TRANSLATIONS
+=item CREATING AN OPTION GROUP
 
-=item SEE ALSO
+=item CREATING A SCROLLING LIST
 
-=back
+B<Parameters:>
 
-=head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
+=item CREATING A GROUP OF RELATED CHECKBOXES
 
-=over 4
+B<Parameters:>
 
-=item SYNOPSIS
+=item CREATING A STANDALONE CHECKBOX
 
-=item DESCRIPTION
+B<Parameters:>
 
-=back
+=item CREATING A RADIO BUTTON GROUP
 
-=head2 CPAN::Version - utility functions to compare CPAN versions
+B<Parameters:>
 
-=over 4
+=item CREATING A SUBMIT BUTTON 
 
-=item SYNOPSIS
+B<Parameters:>
 
-=item DESCRIPTION
+=item CREATING A RESET BUTTON
 
-=back
+=item CREATING A DEFAULT BUTTON
 
-=head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
-module
+=item CREATING A HIDDEN FIELD
 
-=over 4
+B<Parameters:>
 
-=item SYNOPSIS
+=item CREATING A CLICKABLE IMAGE BUTTON
 
-=item DESCRIPTION
+B<Parameters:>, 3. The third option (-align, optional) is an alignment
+type, and may be TOP, BOTTOM or MIDDLE
 
-=item  SEE ALSO
+=item CREATING A JAVASCRIPT ACTION BUTTON
 
 =back
 
-=head2 Carp, carp    - warn of errors (from perspective of caller)
+=item HTTP COOKIES
 
-=over 4
+1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
+B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
 
-=item SYNOPSIS
+=item WORKING WITH FRAMES
 
-=item DESCRIPTION
+1. Create a <Frameset> document, 2. Specify the destination for the
+document in the HTTP header, 3. Specify the destination for the document in
+the <form> tag
+
+=item SUPPORT FOR JAVASCRIPT
+
+B<onLoad>, B<onUnload>, B<onSubmit>, B<onClick>, B<onChange>, B<onFocus>,
+B<onBlur>, B<onSelect>, B<onMouseOver>, B<onMouseOut>
+
+=item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
+
+=item DEBUGGING
 
 =over 4
 
-=item Forcing a Stack Trace
+=item DUMPING OUT ALL THE NAME/VALUE PAIRS
 
 =back
 
-=item GLOBAL VARIABLES
+=item FETCHING ENVIRONMENT VARIABLES
 
-=over 4
+B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
+B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
+name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
+()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
+B<virtual_port ()>, B<server_software ()>, B<remote_user ()>, B<user_name
+()>, B<request_method()>, B<content_type()>, B<http()>, B<https()>
 
-=item $Carp::CarpLevel
+=item USING NPH SCRIPTS
 
-=item $Carp::MaxEvalLen
+In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
+parameters
 
-=item $Carp::MaxArgLen
+=item Server Push
 
-=item $Carp::MaxArgNums
+multipart_init(), multipart_start(), multipart_end(), multipart_final()
 
-=item $Carp::Verbose
+=item Avoiding Denial of Service Attacks
 
-=back
+B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
+basis>, B<2. Globally for all scripts>
+
+=item COMPATIBILITY WITH CGI-LIB.PL
+
+=item AUTHOR INFORMATION
+
+=item CREDITS
+
+Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
+(james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
+(mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
+(jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
+(applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
+(tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
+(tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
+MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
+(kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
+Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
+MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
+...and many many more..
+
+=item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
 
 =item BUGS
 
-=back
+=item SEE ALSO
 
-=head2 Carp::Heavy - heavy machinery, no user serviceable parts inside
+=back
 
-=head2 Class::ISA -- report the search path for a class's ISA tree
+=head2 CGI::Apache - Backward compatibility module for CGI.pm
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
-
-=item FUNCTIONS
+=item ABSTRACT
 
-the function Class::ISA::super_path($CLASS), the function
-Class::ISA::self_and_super_path($CLASS), the function
-Class::ISA::self_and_super_versions($CLASS)
+=item DESCRIPTION
 
-=item CAUTIONARY NOTES
+=item AUTHOR INFORMATION
 
-=item COPYRIGHT
+=item BUGS
 
-=item AUTHOR
+=item SEE ALSO
 
 =back
 
-=head2 Class::Struct - declare struct-like datatypes as Perl classes
+=head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
+other) error log
 
 =over 4
 
@@ -13768,31 +14362,29 @@ Class::ISA::self_and_super_versions($CLASS)
 
 =item DESCRIPTION
 
-=over 4
+=item REDIRECTING ERROR MESSAGES
 
-=item The C<struct()> function
+=item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
 
-=item Class Creation at Compile Time
+=over 4
 
-=item Element Types and Accessor Methods
+=item Changing the default message
 
-Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
-C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
+=back
 
-=item Initializing with C<new>
+=item DOING MORE THAN PRINTING A MESSAGE IN THE EVENT OF PERL ERRORS
 
-=back
+=item MAKING WARNINGS APPEAR AS HTML COMMENTS
 
-=item EXAMPLES
+=item OVERRIDING THE NAME OF THE PROGRAM
 
-Example 1, Example 2, Example 3
+=item AUTHORS
 
-=item Author and Modification History
+=item SEE ALSO
 
 =back
 
-=head2 Compress::IO::Base::lib::File::GlobMapper, File::GlobMapper - Extend
-File Glob to Allow Input and Output Files
+=head2 CGI::Cookie - Interface to Netscape Cookies
 
 =over 4
 
@@ -13800,48 +14392,64 @@ File Glob to Allow Input and Output Files
 
 =item DESCRIPTION
 
-This code is a work in progress, There are known bugs, The interface
-defined here is tentative, There are portability issues, Do not use in
-production code, Consider yourself warned!
+=item USING CGI::Cookie
+
+B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>, B<4.
+httponly flag>
 
 =over 4
 
-=item Behind The Scenes
+=item Creating New Cookies
 
-=item Limitations
+=item Sending the Cookie to the Browser
 
-=item Input File Glob
+=item Recovering Previous Cookies
 
-B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
+=item Manipulating Cookies
 
-=item Output File Glob
+B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
 
-"*", #1
+=back
 
-=item Returned Data
+=item AUTHOR INFORMATION
+
+=item BUGS
+
+=item SEE ALSO
 
 =back
 
-=item EXAMPLES
+=head2 CGI::Fast - CGI Interface for Fast CGI
 
 =over 4
 
-=item A Rename script
+=item SYNOPSIS
 
-=item A few example globmaps
+=item DESCRIPTION
 
-=back
+=item OTHER PIECES OF THE PUZZLE
 
-=item SEE ALSO
+=item WRITING FASTCGI PERL SCRIPTS
 
-=item AUTHOR
+=item INSTALLING FASTCGI SCRIPTS
 
-=item COPYRIGHT AND LICENSE
+=item USING FASTCGI SCRIPTS AS CGI SCRIPTS
+
+=item EXTERNAL FASTCGI SERVER INVOCATION
+
+FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
+
+=item CAVEATS
+
+=item AUTHOR INFORMATION
+
+=item BUGS
+
+=item SEE ALSO
 
 =back
 
-=head2 Compress::IO::Base::lib::IO::Compress::Base, IO::Compress::Base -
-Base Class for IO::Compress modules 
+=head2 CGI::Pretty - module to produce nicely formatted HTML code
 
 =over 4
 
@@ -13849,19 +14457,23 @@ Base Class for IO::Compress modules
 
 =item DESCRIPTION
 
-=item SEE ALSO
+=over 4
 
-=item AUTHOR
+=item Tags that won't be formatted
 
-=item MODIFICATION HISTORY
+=item Customizing the Indenting
 
-=item COPYRIGHT AND LICENSE
+=back
+
+=item BUGS
+
+=item AUTHOR
+
+=item SEE ALSO
 
 =back
 
-=head2 Compress::IO::Base::lib::IO::Uncompress::AnyUncompress,
-IO::Uncompress::AnyUncompress - Uncompress gzip, zip, bzip2 or lzop
-file/buffer
+=head2 CGI::Push - Simple Interface to Server Push
 
 =over 4
 
@@ -13869,338 +14481,360 @@ file/buffer
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find, RFC 1950, RFC 1951, gzip (RFC 1952), zip, bzip2, lzop
+=item USING CGI::Push
 
-=item Functional Interface
+-next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
 
 =over 4
 
-=item anyuncompress $input => $output [, OPTS]
+=item Heterogeneous Pages
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+=item Changing the Page Delay on the Fly
 
-=item Notes
+=back
 
-=item Optional Parameters
+=item INSTALLING CGI::Push SCRIPTS
 
-C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+=item AUTHOR INFORMATION
 
-=item Examples
+=item BUGS
+
+=item SEE ALSO
 
 =back
 
-=item OO Interface
+=head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
 
 =over 4
 
-=item Constructor
+=item SYNOPSIS
 
-A filename, A filehandle, A scalar reference
+=item ABSTRACT
 
-=item Constructor Options
+=item DESCRIPTION
 
-C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
->>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+=item AUTHOR INFORMATION
 
-=item Examples
+=item BUGS
+
+=item SEE ALSO
 
 =back
 
-=item Methods 
+=head2 CGI::Util - Internal utilities used by CGI module
 
 =over 4
 
-=item read
+=item SYNOPSIS
 
-=item read
-
-=item getline
-
-=item getc
-
-=item ungetc
+=item DESCRIPTION
 
-=item getHeaderInfo
+=item AUTHOR INFORMATION
 
-=item tell
+=item SEE ALSO
 
-=item eof
+=back
 
-=item seek
+=head2 CORE - Pseudo-namespace for Perl's core routines
 
-=item binmode
+=over 4
 
-=item opened
+=item SYNOPSIS
 
-=item autoflush
+=item DESCRIPTION
 
-=item input_line_number
+=item OVERRIDING CORE FUNCTIONS
 
-=item fileno
+=item AUTHOR
 
-=item close
+=item SEE ALSO
 
-=item nextStream
+=back
 
-=item trailingData
+=head2 CPAN - query, download and build perl modules from CPAN sites
 
-=back
+=over 4
 
-=item Importing 
+=item SYNOPSIS
 
-:all
+=item DESCRIPTION
 
-=item EXAMPLES
+=over 4
 
-=item SEE ALSO
+=item CPAN::shell([$prompt, $command]) Starting Interactive Mode
 
-=item AUTHOR
+Searching for authors, bundles, distribution files and modules, C<get>,
+C<make>, C<test>, C<install>, C<clean> modules or distributions, C<readme>,
+C<perldoc>, C<look> module or distribution, C<ls> author, C<ls>
+globbing_expression, C<failed>, Persistence between sessions, The C<force>
+and the C<fforce> pragma, Lockfile, Signals
 
-=item MODIFICATION HISTORY
+=item CPAN::Shell
 
-=item COPYRIGHT AND LICENSE
+=item autobundle
 
-=back
+=item hosts
 
-=head2 Compress::IO::Base::lib::IO::Uncompress::Base, IO::Uncompress::Base
-- Base Class for IO::Uncompress modules 
+=item mkmyconfig
 
-=over 4
+=item recent ***EXPERIMENTAL COMMAND***
 
-=item SYNOPSIS
+=item recompile
 
-=item DESCRIPTION
+=item report Bundle|Distribution|Module
 
-=item SEE ALSO
+=item smoke ***EXPERIMENTAL COMMAND***
 
-=item AUTHOR
+=item upgrade [Module|/Regex/]...
 
-=item MODIFICATION HISTORY
+=item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
 
-=item COPYRIGHT AND LICENSE
+=item Integrating local directories
 
 =back
 
-=head2 Compress::IO::Zlib::IO::Compress::Deflate, IO::Compress::Deflate -
-Write RFC 1950 files/buffers
+=item CONFIGURATION
 
-=over 4
+completion support, displaying some help: o conf help, displaying current
+values: o conf [KEY], changing of scalar values: o conf KEY VALUE, changing
+of list values: o conf KEY SHIFT|UNSHIFT|PUSH|POP|SPLICE|LIST, reverting to
+saved: o conf defaults, saving the config: o conf commit
 
-=item SYNOPSIS
+=over 4
 
-=item DESCRIPTION
+=item Config Variables
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
+E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
+optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
+[unshift|push|splice] E<lt>listE<gt>>, interactive editing: o conf init
+[MATCH|LIST]
 
-=item Functional Interface
+=item CPAN::anycwd($path): Note on config variable getcwd
 
-=over 4
+cwd, getcwd, fastcwd, backtickcwd
 
-=item deflate $input => $output [, OPTS]
+=item Note on the format of the urllist parameter
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+=item The urllist parameter has CD-ROM support
 
-=item Notes
+=item Maintaining the urllist parameter
 
-=item Optional Parameters
+=item The C<requires> and C<build_requires> dependency declarations
 
-C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+=item Configuration for individual distributions (I<Distroprefs>)
 
-=item Examples
+=item Filenames
 
-=back
+=item Fallback Data::Dumper and Storable
 
-=item OO Interface
+=item Blueprint
 
-=over 4
+=item Language Specs
 
-=item Constructor
+comment [scalar], cpanconfig [hash], depends [hash] *** EXPERIMENTAL
+FEATURE ***, disabled [boolean], goto [string], install [hash], make
+[hash], match [hash], patches [array], pl [hash], test [hash]
 
-A filename, A filehandle, A scalar reference
+=item Processing Instructions
 
-=item Constructor Options
+args [array], commandline, eexpect [hash], env [hash], expect [array]
 
-C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
-Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
+=item Schema verification with C<Kwalify>
 
-=item Examples
+=item Example Distroprefs Files
 
 =back
 
-=item Methods 
-
-=over 4
+=item PROGRAMMER'S INTERFACE
 
-=item print
+expand($type,@things), expandany(@things), Programming Examples
 
-=item printf
+=over 4
 
-=item syswrite
+=item Methods in the other Classes
 
-=item write
+CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
+CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
+CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
+CPAN::Bundle::clean(), CPAN::Bundle::contains(),
+CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
+CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
+CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
+CPAN::Bundle::readme(), CPAN::Bundle::test(),
+CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
+CPAN::Distribution::author, CPAN::Distribution::pretty_id(),
+CPAN::Distribution::base_id(), CPAN::Distribution::clean(),
+CPAN::Distribution::containsmods(), CPAN::Distribution::cvs_import(),
+CPAN::Distribution::dir(), CPAN::Distribution::force($method,@args),
+CPAN::Distribution::get(), CPAN::Distribution::install(),
+CPAN::Distribution::install_tested(), CPAN::Distribution::isa_perl(),
+CPAN::Distribution::is_tested(), CPAN::Distribution::look(),
+CPAN::Distribution::make(), CPAN::Distribution::perldoc(),
+CPAN::Distribution::prefs(), CPAN::Distribution::prereq_pm(),
+CPAN::Distribution::readme(), CPAN::Distribution::reports(),
+CPAN::Distribution::read_yaml(), CPAN::Distribution::test(),
+CPAN::Distribution::uptodate(), CPAN::Index::force_reload(),
+CPAN::Index::reload(), CPAN::InfoObj::dump(), CPAN::Module::as_glimpse(),
+CPAN::Module::as_string(), CPAN::Module::clean(),
+CPAN::Module::cpan_file(), CPAN::Module::cpan_version(),
+CPAN::Module::cvs_import(), CPAN::Module::description(),
+CPAN::Module::distribution(), CPAN::Module::dslip_status(),
+CPAN::Module::force($method,@args), CPAN::Module::get(),
+CPAN::Module::inst_file(), CPAN::Module::available_file(),
+CPAN::Module::inst_version(), CPAN::Module::available_version(),
+CPAN::Module::install(), CPAN::Module::look(), CPAN::Module::make(),
+CPAN::Module::manpage_headline(), CPAN::Module::perldoc(),
+CPAN::Module::readme(), CPAN::Module::reports(), CPAN::Module::test(),
+CPAN::Module::uptodate(), CPAN::Module::userid()
 
-=item flush
+=item Cache Manager
 
-=item tell
+=item Bundles
 
-=item eof
+=back
 
-=item seek
+=item PREREQUISITES
 
-=item binmode
+=item UTILITIES
 
-=item opened
+=over 4
 
-=item autoflush
+=item Finding packages and VERSION
 
-=item input_line_number
+=item Debugging
 
-=item fileno
+o debug package.., o debug -package.., o debug all, o debug number
 
-=item close
+=item Floppy, Zip, Offline Mode
 
-=item newStream([OPTS])
+=item Basic Utilities for Programmers
 
-=item deflateParams
+has_inst($module), has_usable($module), instance($module)
 
 =back
 
-=item Importing 
-
-:all, :constants, :flush, :level, :strategy
+=item SECURITY
 
-=item EXAMPLES
+=over 4
 
-=item SEE ALSO
+=item Cryptographically signed modules
 
-=item AUTHOR
+=back
 
-=item MODIFICATION HISTORY
+=item EXPORT
 
-=item COPYRIGHT AND LICENSE
+=item ENVIRONMENT
 
-=back
+=item POPULATE AN INSTALLATION WITH LOTS OF MODULES
 
-=head2 Compress::IO::Zlib::IO::Compress::Gzip, IO::Compress::Gzip - Write
-RFC 1952 files/buffers
+=item WORKING WITH CPAN.pm BEHIND FIREWALLS
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item Three basic types of firewalls
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
 
-=item Functional Interface
+=item Configuring lynx or ncftp for going through a firewall
 
-=over 4
+=back
 
-=item gzip $input => $output [, OPTS]
+=item FAQ
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+1), 2), 3), 4), 5), 6), 7), 8), 9), 10), 11), 12), 13), 14), 15), 16)
 
-=item Notes
+=item COMPATIBILITY
 
-=item Optional Parameters
+=over 4
 
-C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+=item OLD PERL VERSIONS
 
-=item Examples
+=item CPANPLUS
 
 =back
 
-=item OO Interface
-
-=over 4
+=item SECURITY ADVICE
 
-=item Constructor
+=item BUGS
 
-A filename, A filehandle, A scalar reference
+=item AUTHOR
 
-=item Constructor Options
+=item LICENSE
 
-C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
-Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Minimal => 0|1 >>,
-C<< Comment => $comment >>, C<< Name => $string >>, C<< Time => $number >>,
-C<< TextFlag => 0|1 >>, C<< HeaderCRC => 0|1 >>, C<< OS_Code => $value >>,
-C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
->>
+=item TRANSLATIONS
 
-=item Examples
+=item SEE ALSO
 
 =back
 
-=item Methods 
+=head2 CPAN::API::HOWTO - a recipe book for programming with CPAN.pm
 
 =over 4
 
-=item print
+=item RECIPES
 
-=item printf
+=over 4
 
-=item syswrite
+=item What distribution contains a particular module?
 
-=item write
+=item What modules does a particular distribution contain?
 
-=item flush
+=back
 
-=item tell
+=item SEE ALSO
 
-=item eof
+=item LICENSE
 
-=item seek
+=item AUTHOR
 
-=item binmode
+=back
 
-=item opened
+=head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
 
-=item autoflush
+=over 4
 
-=item input_line_number
+=item SYNOPSIS
 
-=item fileno
+=item DESCRIPTION
 
-=item close
+=back
 
-=item newStream([OPTS])
+auto_commit, build_cache, build_dir, build_dir_reuse,
+build_requires_install_policy, cache_metadata, check_sigs, colorize_output,
+colorize_print, colorize_warn, colorize_debug, commandnumber_in_prompt,
+ftp_passive, getcwd, histfile, histsize, inactivity_timeout, index_expire,
+inhibit_startup_message, keep_source_where, load_module_verbosity,
+makepl_arg, make_arg, make_install_arg, make_install_make_command,
+mbuildpl_arg, mbuild_arg, mbuild_install_arg, mbuild_install_build_command,
+pager, prefer_installer, prefs_dir, prerequisites_policy,
+randomize_urllist, scan_cache, shell, show_unparsable_versions,
+show_upload_date, show_zero_versions, tar_verbosity, term_is_latin,
+term_ornaments, test_report, use_sqlite, yaml_load_code, yaml_module
 
-=item deflateParams
+=over 4
+
+=item LICENSE
 
 =back
 
-=item Importing 
+=head2 CPAN::Kwalify - Interface between CPAN.pm and Kwalify.pm
 
-:all, :constants, :flush, :level, :strategy
+=over 4
 
-=item EXAMPLES
+=item SYNOPSIS
 
-=item SEE ALSO
+=item DESCRIPTION
 
-=item AUTHOR
+_validate($schema_name, $data, $file, $doc), yaml($schema_name)
 
-=item MODIFICATION HISTORY
+=item AUTHOR
 
-=item COPYRIGHT AND LICENSE
+=item LICENSE
 
 =back
 
-=head2 Compress::IO::Zlib::IO::Compress::RawDeflate,
-IO::Compress::RawDeflate - Write RFC 1951 files/buffers
+=head2 CPAN::Version - utility functions to compare CPAN versions
 
 =over 4
 
@@ -14208,212 +14842,236 @@ IO::Compress::RawDeflate - Write RFC 1951 files/buffers
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+=item LICENSE
 
-=item Functional Interface
+=back
+
+=head2 CPANPLUS - API & CLI access to the CPAN mirrors
 
 =over 4
 
-=item rawdeflate $input => $output [, OPTS]
+=item SYNOPSIS
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+=item GUIDE TO DOCUMENTATION
 
-=item Notes
+=over 4
 
-=item Optional Parameters
+=item GENERAL USAGE
 
-C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+=item API REFERENCE
 
-=item Examples
+=back
 
 =back
 
-=item OO Interface
+=over 4
+
+=item COMMANDLINE TOOLS
 
 =over 4
 
-=item Constructor
+=item STARTING AN INTERACTIVE SHELL
 
-A filename, A filehandle, A scalar reference
+=item BUILDING PACKAGES
 
-=item Constructor Options
+=item $bool = install( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz )
 
-C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
-Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
+=item $where = fetch( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz )
 
-=item Examples
+=item $where = get( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz )
+
+=item shell()
 
 =back
 
-=item Methods 
+=item FAQ
 
-=over 4
+=item BUG REPORTS
 
-=item print
+=item AUTHOR
 
-=item printf
+=item COPYRIGHT
 
-=item syswrite
+=item SEE ALSO
 
-=item write
+=item CONTACT INFORMATION
 
-=item flush
+Bug reporting: I<bug-cpanplus@rt.cpan.org>, Questions & suggestions:
+I<cpanplus-devel@lists.sourceforge.net>
 
-=item tell
+=back
 
-=item eof
+=head2 CPANPLUS::Backend
 
-=item seek
+=over 4
 
-=item binmode
+=item SYNOPSIS
 
-=item opened
+=item DESCRIPTION
 
-=item autoflush
+=item ENVIRONMENT
 
-=item input_line_number
+=item METHODS
 
-=item fileno
+=over 4
 
-=item close
+=item $cb = CPANPLUS::Backend->new( [CONFIGURE_OBJ] )
 
-=item newStream([OPTS])
+Provide a valid C<CPANPLUS::Configure> object, No arguments
 
-=item deflateParams
+=back
 
 =back
 
-=item Importing 
+=over 4
 
-:all, :constants, :flush, :level, :strategy
+=item $href = $cb->module_tree( [@modules_names_list] )
 
-=item EXAMPLES
+=back
 
-=item SEE ALSO
+=over 4
 
-=item AUTHOR
+=item $href = $cb->author_tree( [@author_names_list] )
 
-=item MODIFICATION HISTORY
+=back
 
-=item COPYRIGHT AND LICENSE
+=over 4
 
-=back
+=item $conf = $cb->configure_object;
 
-=head2 Compress::IO::Zlib::IO::Compress::Zip, IO::Compress::Zip - Write zip
-files/buffers
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item $su = $cb->selfupdate_object;
 
-=item DESCRIPTION
+=back
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+=over 4
 
-=item Functional Interface
+=item @mods = $cb->search( type => TYPE, allow => AREF, [data => AREF,
+verbose => BOOL] )
+
+=back
 
 =over 4
 
-=item zip $input => $output [, OPTS]
+=item $backend_rv = $cb->fetch( modules => \@mods )
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+=item $backend_rv = $cb->extract( modules => \@mods )
 
-=item Notes
+=item $backend_rv = $cb->install( modules => \@mods )
 
-=item Optional Parameters
+=item $backend_rv = $cb->readme( modules => \@mods )
 
-C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+=item $backend_rv = $cb->files( modules => \@mods )
 
-=item Examples
+=item $backend_rv = $cb->distributions( modules => \@mods )
 
 =back
 
-=item OO Interface
+=over 4
+
+=item $mod_obj = $cb->parse_module( module =>
+$modname|$distname|$modobj|URI )
+
+Text::Bastardize, Text-Bastardize, Text-Bastardize-1.06,
+AYRNIEU/Text-Bastardize, AYRNIEU/Text-Bastardize-1.06,
+AYRNIEU/Text-Bastardize-1.06.tar.gz,
+http://example.com/Text-Bastardize-1.06.tar.gz,
+file:///tmp/Text-Bastardize-1.06.tar.gz
+
+=back
 
 =over 4
 
-=item Constructor
+=item $bool = $cb->reload_indices( [update_source => BOOL, verbose => BOOL]
+);
 
-A filename, A filehandle, A scalar reference
+=back
 
-=item Constructor Options
+=over 4
 
-C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
-Filehandle, C<< Name => $string >>, C<< Time => $number >>, C<< exTime =>
-[$atime, $mtime, $ctime] >>, C<< Comment => $comment >>, C<< ZipComment =>
-$comment >>, C<< Method => $method >>, C<< Stream => 0|1 >>, C<< TextFlag
-=> 0|1 >>, C<< ExtraFieldLocal => $data >> =item C<< ExtraFieldCentral =>
-$data >>, C<< Minimal => 1|0 >>, C<< BlockSize100K => number >>, C<<
-WorkFactor => number >>, -Level, -Strategy, C<< Strict => 0|1 >>
+=item $bool = $cb->flush(CACHE_NAME)
 
-=item Examples
+C<methods>, C<hosts>, C<modules>, C<lib>, C<load>, C<all>
 
 =back
 
-=item Methods 
+=over 4
+
+=item @mods = $cb->installed()
+
+=back
 
 =over 4
 
-=item print
+=item $bool = $cb->local_mirror([path => '/dir/to/save/to', index_files =>
+BOOL, force => BOOL, verbose => BOOL] )
 
-=item printf
+path, index_files, force, verbose
 
-=item syswrite
+=back
 
-=item write
+=over 4
 
-=item flush
+=item $file = $cb->autobundle([path => OUTPUT_PATH, force => BOOL, verbose
+=> BOOL])
 
-=item tell
+=back
 
-=item eof
+=over 4
 
-=item seek
+=item CUSTOM MODULE SOURCES
 
-=item binmode
+=over 4
 
-=item opened
+=item %files = $cb->list_custom_sources
 
-=item autoflush
+=back
 
-=item input_line_number
+=back
 
-=item fileno
+=over 4
 
-=item close
+=item $local_index = $cb->add_custom_source( uri => URI, [verbose => BOOL]
+);
 
-=item newStream([OPTS])
+=back
 
-=item deflateParams
+=over 4
+
+=item $local_index = $cb->remove_custom_source( uri => URI, [verbose =>
+BOOL] );
 
 =back
 
-=item Importing 
+=over 4
 
-:all, :constants, :flush, :level, :strategy, :zip_method
+=item $bool = $cb->update_custom_source( [remote => URI] );
 
-=item EXAMPLES
+=back
 
-=item SEE ALSO
+=over 4
+
+=item $file = $cb->write_custom_source_index( path =>
+/path/to/package/root, [to => /path/to/index/file, verbose => BOOL] );
+
+=back
+
+=over 4
+
+=item BUG REPORTS
 
 =item AUTHOR
 
-=item MODIFICATION HISTORY
+=item COPYRIGHT
 
-=item COPYRIGHT AND LICENSE
+=item SEE ALSO
 
 =back
 
-=head2 Compress::IO::Zlib::IO::Uncompress::AnyInflate,
-IO::Uncompress::AnyInflate - Uncompress zlib-based (zip, gzip) file/buffer
+=head2 CPANPLUS::Backend::RV
 
 =over 4
 
@@ -14421,223 +15079,201 @@ IO::Uncompress::AnyInflate - Uncompress zlib-based (zip, gzip) file/buffer
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find, RFC 1950, RFC 1951, gzip (RFC 1952), zip
-
-=item Functional Interface
+=item METHODS
 
 =over 4
 
-=item anyinflate $input => $output [, OPTS]
+=item new( ok => BOOL, args => DATA, rv => DATA, [function => $method_name]
+)
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+ok, args, rv, function
 
-=item Notes
+=back
 
-=item Optional Parameters
+=back
 
-C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+=over 4
 
-=item Examples
+=item BUG REPORTS
+
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=item OO Interface
+=head2 CPANPLUS::Config
 
 =over 4
 
-=item Constructor
+=item DESCRIPTION
 
-A filename, A filehandle, A scalar reference
+=item CONFIGURATION
 
-=item Constructor Options
+=back
 
-C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
->>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
->>
+=over 4
 
-=item Examples
+=item Section 'conf'
 
-=back
+hosts
 
-=item Methods 
+=back
 
-=over 4
+base
 
-=item read
+buildflags
 
-=item read
+cpantest
 
-=item getline
+cpantest_mx
 
-=item getc
+debug
 
-=item ungetc
+dist_type
 
-=item inflateSync
+email
 
-=item getHeaderInfo
+extractdir
 
-=item tell
+fetchdir
 
-=item eof
+flush
 
-=item seek
+force
 
-=item binmode
+lib
 
-=item opened
+makeflags
 
-=item autoflush
+makemakerflags
 
-=item input_line_number
+md5
 
-=item fileno
+no_update
 
-=item close
+passive
 
-=item nextStream
+prefer_bin
 
-=item trailingData
+prefer_makefile
 
-=back
+prereqs
 
-=item Importing 
+shell
 
-:all
+show_startup_tip
 
-=item EXAMPLES
+signature
 
-=item SEE ALSO
+skiptest
 
-=item AUTHOR
+storable
 
-=item MODIFICATION HISTORY
+timeout
 
-=item COPYRIGHT AND LICENSE
+verbose
 
-=back
+write_install_log
 
-=head2 Compress::IO::Zlib::IO::Uncompress::Gunzip, IO::Uncompress::Gunzip -
-Read RFC 1952 files/buffers
+editor
 
-=over 4
+make
 
-=item SYNOPSIS
+pager
 
-=item DESCRIPTION
+shell
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+sudo
 
-=item Functional Interface
+perlwrapper
 
 =over 4
 
-=item gunzip $input => $output [, OPTS]
-
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
-
-=item Notes
+=item BUG REPORTS
 
-=item Optional Parameters
+=item AUTHOR
 
-C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+=item COPYRIGHT
 
-=item Examples
+=item SEE ALSO
 
 =back
 
-=item OO Interface
+=head2 CPANPLUS::Configure
 
 =over 4
 
-=item Constructor
+=item SYNOPSIS
 
-A filename, A filehandle, A scalar reference
+=item DESCRIPTION
 
-=item Constructor Options
+=item METHODS
 
-C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
->>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
->>
+=over 4
 
-=item Examples
+=item $Configure = CPANPLUS::Configure->new( load_configs => BOOL )
 
 =back
 
-=item Methods 
+=back
 
 =over 4
 
-=item read
+=item $bool = $Configure->init( [rescan => BOOL])
 
-=item read
+=back
 
-=item getline
+=over 4
 
-=item getc
+=item can_save( [$config_location] )
 
-=item ungetc
+=back
 
-=item inflateSync
+=over 4
 
-=item getHeaderInfo
+=item $file = $conf->save( [$package_name] )
 
-Name, Comment
+=back
 
-=item tell
+=over 4
 
-=item eof
+=item options( type => TYPE )
 
-=item seek
+=back
 
-=item binmode
+=over 4
 
-=item opened
+=item ACCESSORS
 
-=item autoflush
+=over 4
 
-=item input_line_number
+=item get_SOMETHING( ITEM, [ITEM, ITEM, ... ] );
 
-=item fileno
+=item set_SOMETHING( ITEM => VAL, [ITEM => VAL, ITEM => VAL, ... ] );
 
-=item close
+=item add_SOMETHING( ITEM => VAL, [ITEM => VAL, ITEM => VAL, ... ] );
 
-=item nextStream
+set|get_conf, set|get_program, _set|_get_build, _set|_get_source,
+_set|_get_mirror, _set|_get_fetch
 
-=item trailingData
+=back
 
 =back
 
-=item Importing 
-
-:all
-
-=item EXAMPLES
+=over 4
 
-=item SEE ALSO
+=item BUG REPORTS
 
 =item AUTHOR
 
-=item MODIFICATION HISTORY
+=item COPYRIGHT
 
-=item COPYRIGHT AND LICENSE
+=item SEE ALSO
 
 =back
 
-=head2 Compress::IO::Zlib::IO::Uncompress::Inflate, IO::Uncompress::Inflate
-- Read RFC 1950 files/buffers
+=head2 CPANPLUS::Dist
 
 =over 4
 
@@ -14645,109 +15281,92 @@ Name, Comment
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
-
-=item Functional Interface
-
-=over 4
+=item ACCESSORS
 
-=item inflate $input => $output [, OPTS]
+parent(), status()
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+=item STATUS ACCESSORS
 
-=item Notes
+created(), installed(), uninstalled(), dist()
 
-=item Optional Parameters
+=back
 
-C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+=over 4
 
-=item Examples
+=item $dist = CPANPLUS::Dist->new( module => MODOBJ, [format => DIST_TYPE]
+);
 
 =back
 
-=item OO Interface
-
 =over 4
 
-=item Constructor
-
-A filename, A filehandle, A scalar reference
+=item @dists = CPANPLUS::Dist->dist_types;
 
-=item Constructor Options
+=back
 
-C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
->>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+=over 4
 
-=item Examples
+=item prereq_satisfied( modobj => $modobj, version => $version_spec )
 
 =back
 
-=item Methods 
-
 =over 4
 
-=item read
-
-=item read
+=item _resolve_prereqs
 
-=item getline
+=back
 
-=item getc
+=head2 CPANPLUS::Dist::Base - Base class for custom distribution classes
 
-=item ungetc
+=over 4
 
-=item inflateSync
+=item SYNOPSIS
 
-=item getHeaderInfo
+=item DESCRIPTION
 
-=item tell
+=item FLOW
 
-=item eof
+=item METHODS
 
-=item seek
+=back
 
-=item binmode
+=over 4
 
-=item opened
+=item $bool = $Class->format_available
 
-=item autoflush
+=back
 
-=item input_line_number
+=over 4
 
-=item fileno
+=item $bool = $dist->init
 
-=item close
+=back
 
-=item nextStream
+=over 4
 
-=item trailingData
+=item $bool = $dist->prepare
 
 =back
 
-=item Importing 
+=over 4
 
-:all
+=item $bool = $dist->create
 
-=item EXAMPLES
+=back
 
-=item SEE ALSO
+=over 4
 
-=item AUTHOR
+=item $bool = $dist->install
 
-=item MODIFICATION HISTORY
+=back
 
-=item COPYRIGHT AND LICENSE
+=over 4
+
+=item $bool = $dist->uninstall
 
 =back
 
-=head2 Compress::IO::Zlib::IO::Uncompress::RawInflate,
-IO::Uncompress::RawInflate - Read RFC 1951 files/buffers
+=head2 CPANPLUS::Dist::Build
 
 =over 4
 
@@ -14755,219 +15374,225 @@ IO::Uncompress::RawInflate - Read RFC 1951 files/buffers
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+=item ACCESSORS
 
-=item Functional Interface
+parent(), status()
 
-=over 4
+=item STATUS ACCESSORS
 
-=item rawinflate $input => $output [, OPTS]
+build_pl (), build (), test (), prepared (), distdir (), created (),
+installed (), uninstalled (), _create_args (), _install_args (), _mb_object
+()
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+=back
 
-=item Notes
+=over 4
 
-=item Optional Parameters
+=item METHODS
 
-C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+=over 4
 
-=item Examples
+=item $bool = CPANPLUS::Dist::Build->format_available();
 
 =back
 
-=item OO Interface
+=back
 
 =over 4
 
-=item Constructor
-
-A filename, A filehandle, A scalar reference
+=item $bool = $dist->init();
 
-=item Constructor Options
+=back
 
-C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
->>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+=over 4
 
-=item Examples
+=item $bool = $dist->prepare([perl => '/path/to/perl', buildflags =>
+'EXTRA=FLAGS', force => BOOL, verbose => BOOL])
 
 =back
 
-=item Methods 
-
 =over 4
 
-=item read
+=item $dist->create([perl => '/path/to/perl', buildflags => 'EXTRA=FLAGS',
+prereq_target => TARGET, force => BOOL, verbose => BOOL, skiptest => BOOL])
 
-=item read
+=back
 
-=item getline
+=over 4
 
-=item getc
+=item $dist->install([verbose => BOOL, perl => /path/to/perl])
 
-=item ungetc
+=back
 
-=item inflateSync
+=over 4
 
-=item getHeaderInfo
+=item KNOWN ISSUES
 
-=item tell
+Module::Build can not be upgraded using its own API (#13169), Module::Build
+does not provide access to install history (#9793)
 
-=item eof
+=item AUTHOR
 
-=item seek
+=item COPYRIGHT
 
-=item binmode
+=back
 
-=item opened
+=head2 CPANPLUS::Dist::MM
 
-=item autoflush
+=over 4
 
-=item input_line_number
+=item SYNOPSIS
 
-=item fileno
+=item ACCESSORS
 
-=item close
+parent(), status()
 
-=item nextStream
+=item STATUS ACCESSORS 
 
-=item trailingData
+makefile (), make (), test (), prepared (), distdir (), created (),
+installed (), uninstalled (), _create_args (), _install_args ()
 
 =back
 
-=item Importing 
+=over 4
 
-:all
+=item METHODS
 
-=item EXAMPLES
+=over 4
 
-=item SEE ALSO
+=item $bool = $dist->format_available();
 
-=item AUTHOR
+=back
 
-=item MODIFICATION HISTORY
+=back
 
-=item COPYRIGHT AND LICENSE
+=over 4
 
-=back
+=item $href = $dist->_find_prereqs( file => '/path/to/Makefile', [verbose
+=> BOOL])
 
-=head2 Compress::IO::Zlib::IO::Uncompress::Unzip, IO::Uncompress::Unzip -
-Read zip files/buffers
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item $bool = $dist->create([perl => '/path/to/perl', make =>
+'/path/to/make', makeflags => 'EXTRA=FLAGS', prereq_target => TARGET,
+skiptest => BOOL, force => BOOL, verbose => BOOL])
 
-=item DESCRIPTION
+=back
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+=over 4
 
-=item Functional Interface
+=item $bool = $dist->install([make => '/path/to/make', makemakerflags =>
+'EXTRA=FLAGS', force => BOOL, verbose => BOOL])
 
-=over 4
+=back
 
-=item unzip $input => $output [, OPTS]
+=over 4
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+=item $bool = $dist->write_makefile_pl([force => BOOL, verbose => BOOL])
 
-=item Notes
+=back
 
-=item Optional Parameters
+=head2 CPANPLUS::Dist::Sample -- Sample code to create your own Dist::*
+plugin
 
-C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+=over 4
 
-=item Examples
+=item Description.
 
 =back
 
-=item OO Interface
+=head2 CPANPLUS::Error
 
 =over 4
 
-=item Constructor
+=item SYNOPSIS
 
-A filename, A filehandle, A scalar reference
+=item DESCRIPTION
 
-=item Constructor Options
+=item FUNCTIONS
 
-C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
->>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+=over 4
 
-=item Examples
+=item cp_msg("message string" [,VERBOSE])
+
+=item msg()
+
+=item cp_error("error string" [,VERBOSE])
+
+=item error()
 
 =back
 
-=item Methods 
+=item CLASS METHODS
 
 =over 4
 
-=item read
+=item CPANPLUS::Error->stack()
 
-=item read
+=item CPANPLUS::Error->stack_as_string([TRACE])
 
-=item getline
+=item CPANPLUS::Error->flush()
 
-=item getc
+=back
 
-=item ungetc
+=back
 
-=item inflateSync
+=over 4
 
-=item getHeaderInfo
+=item GLOBAL VARIABLES
 
-=item tell
+$ERROR_FH, $MSG_FH
 
-=item eof
+=back
 
-=item seek
+=head2 CPANPLUS::FAQ
 
-=item binmode
+=over 4
 
-=item opened
+=item DESCRIPTION
 
-=item autoflush
+=item BUG REPORTS
 
-=item input_line_number
+=item AUTHOR
 
-=item fileno
+=item COPYRIGHT
 
-=item close
+=back
 
-=item nextStream
+=head2 CPANPLUS::Hacking
 
-=item trailingData
+=over 4
 
-=back
+=item DESCRIPTION
 
-=item Importing 
+=item OBTAINING CPANPLUS
 
-:all
+=item INSTALLING CPANPLUS
 
-=item EXAMPLES
+=item CONFIGURING CPANPLUS
 
-=item SEE ALSO
+=item RUNNING CPANPLUS FROM DEVELOPMENT ENVIRONMENT
 
-=item AUTHOR
+=item RUNNING CPANPLUS TESTS
 
-=item MODIFICATION HISTORY
+=item FINDING BUGS
 
-=item COPYRIGHT AND LICENSE
+Problem description, Program demonstrating the bug, [OPTIONAL] A patch to
+the test suite to test for the bug, [OPTIONAL] A patch to the code + tests
++ documentation
+
+=item SUPPLYING PATCHES
+
+In C<diff -u> or C<diff -c> format, From the root of the snapshot,
+Including patches for code + tests + docs, Sent per mail to
+cpanplus-devel@lists.sourceforge.net, With subject containing C<[PATCH]> +
+description of the patch
 
 =back
 
-=head2 Compress::Raw::Zlib - Low-Level Interface to zlib compression
-library
+=head2 CPANPLUS::Internals
 
 =over 4
 
@@ -14975,97 +15600,109 @@ library
 
 =item DESCRIPTION
 
-=item Compress::Raw::Zlib::Deflate
+=item ACCESSORS
 
-=over 4
+_conf, _id, _lib, _perl5lib
 
-=item B<($d, $status) = new Compress::Raw::Zlib::Deflate( [OPT] ) >
+=back
 
-B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
-B<-Dictionary>, B<-Bufsize>, B<-AppendOutput>, B<-CRC32>, B<-ADLER32>
+=over 4
 
-=item B<$status = $d-E<gt>deflate($input, $output)>
+=item METHODS
 
-=item B<$status = $d-E<gt>flush($output [, $flush_type]) >
+=over 4
 
-=item B<$status = $d-E<gt>deflateParams([OPT])>
+=item $internals = CPANPLUS::Internals->_init( _conf => CONFIG_OBJ )
 
-B<-Level>, B<-Strategy>, B<-BufSize>
+=back
 
-=item B<$status = $d-E<gt>deflateTune($good_length, $max_lazy,
-$nice_length, $max_chain)>
+=back
 
-=item B<$d-E<gt>dict_adler()>
+=over 4
 
-=item B<$d-E<gt>crc32()>
+=item $bool = $internals->_flush( list => \@caches )
 
-=item B<$d-E<gt>adler32()>
+=back
 
-=item B<$d-E<gt>msg()>
+=over 4
 
-=item B<$d-E<gt>total_in()>
+=item $bool = $internals->_register_callback( name => CALLBACK_NAME, code
+=> CODEREF );
 
-=item B<$d-E<gt>total_out()>
+install_prerequisite, send_test_report, munge_test_report,
+edit_test_report, proceed_on_test_failure, munge_dist_metafile
 
-=item B<$d-E<gt>get_Strategy()>
+=back
 
-=item B<$d-E<gt>get_Level()>
+=over 4
 
-=item B<$d-E<gt>get_BufSize()>
+=item $bool = $internals->_add_to_includepath( directories => \@dirs )
 
-=item Example
+=back
+
+=over 4
+
+=item $id = CPANPLUS::Internals->_last_id
+
+=item $id = CPANPLUS::Internals->_store_id( $internals )
+
+=item $obj = CPANPLUS::Internals->_retrieve_id( $ID )
+
+=item CPANPLUS::Internals->_remove_id( $ID )
+
+=item @objs = CPANPLUS::Internals->_return_all_objects
 
 =back
 
-=item Compress::Raw::Zlib::Inflate
+=head2 CPANPLUS::Internals::Extract
 
 =over 4
 
-=item B< ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) >
+=item SYNOPSIS
 
-B<-WindowBits>, B<-Bufsize>, B<-Dictionary>, B<-AppendOutput>, B<-CRC32>,
-B<-ADLER32>, B<-ConsumeInput>
+=item DESCRIPTION
 
-=item B< $status = $i-E<gt>inflate($input, $output [,$eof]) >
+=over 4
 
-=item B<$status = $i-E<gt>inflateSync($input)>
+=item $dir = _extract( module => $modobj, [perl => '/path/to/perl',
+extractdir => '/path/to/extract/to', prefer_bin => BOOL, verbose => BOOL,
+force => BOOL] )
 
-=item B<$i-E<gt>dict_adler()>
+module, extractdir, prefer_bin, perl, verbose, force
 
-=item B<$i-E<gt>crc32()>
+=back
 
-=item B<$i-E<gt>adler32()>
+=back
 
-=item B<$i-E<gt>msg()>
+=head2 CPANPLUS::Internals::Fetch
 
-=item B<$i-E<gt>total_in()>
+=over 4
 
-=item B<$i-E<gt>total_out()>
+=item SYNOPSIS
 
-=item B<$d-E<gt>get_BufSize()>
+=item DESCRIPTION
 
-=item Example
+=item METHODS
 
 =back
 
-=item CHECKSUM FUNCTIONS
-
-=item ACCESSING ZIP FILES
+=over 4
 
-=item CONSTANTS
+=item $path = _fetch( module => $modobj, [fetchdir => '/path/to/save/to',
+fetch_from => 'scheme://path/to/fetch/from', verbose => BOOL, force =>
+BOOL, prefer_bin => BOOL] )
 
-=item SEE ALSO
+=back
 
-=item AUTHOR
+=over 4
 
-=item MODIFICATION HISTORY
+=item _add_fail_host( host => $host_hashref )
 
-=item COPYRIGHT AND LICENSE
+=item _host_ok( host => $host_hashref )
 
 =back
 
-=head2 Compress::Raw::Zlib::Compress::Raw::Zlib, Compress::Raw::Zlib -
-Low-Level Interface to zlib compression library
+=head2 CPANPLUS::Internals::Report
 
 =over 4
 
@@ -15073,203 +15710,221 @@ Low-Level Interface to zlib compression library
 
 =item DESCRIPTION
 
-=item Compress::Raw::Zlib::Deflate
+=item METHODS
 
 =over 4
 
-=item B<($d, $status) = new Compress::Raw::Zlib::Deflate( [OPT] ) >
+=item $bool = $cb->_have_query_report_modules
 
-B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
-B<-Dictionary>, B<-Bufsize>, B<-AppendOutput>, B<-CRC32>, B<-ADLER32>
+=item $bool = $cb->_have_send_report_modules
 
-=item B<$status = $d-E<gt>deflate($input, $output)>
+=back
 
-=item B<$status = $d-E<gt>flush($output [, $flush_type]) >
+=back
 
-=item B<$status = $d-E<gt>deflateParams([OPT])>
+=over 4
 
-B<-Level>, B<-Strategy>, B<-BufSize>
+=item @list = $cb->_query_report( module => $modobj, [all_versions => BOOL,
+verbose => BOOL] )
 
-=item B<$status = $d-E<gt>deflateTune($good_length, $max_lazy,
-$nice_length, $max_chain)>
+=back
 
-=item B<$d-E<gt>dict_adler()>
+=over 4
 
-=item B<$d-E<gt>crc32()>
+=item $bool = $cb->_send_report( module => $modobj, buffer => $make_output,
+failed => BOOL, [save => BOOL, address => $email_to, dontcc => BOOL,
+verbose => BOOL, force => BOOL]);
 
-=item B<$d-E<gt>adler32()>
+module, buffer, failed, save, address, dontcc, verbose, force
 
-=item B<$d-E<gt>msg()>
+=back
 
-=item B<$d-E<gt>total_in()>
+=head2 CPANPLUS::Internals::Search
 
-=item B<$d-E<gt>total_out()>
+=over 4
 
-=item B<$d-E<gt>get_Strategy()>
+=item SYNOPSIS
 
-=item B<$d-E<gt>get_Level()>
+=item DESCRIPTION
 
-=item B<$d-E<gt>get_BufSize()>
+=item METHODS
 
-=item Example
+=over 4
+
+=item _search_module_tree( type => TYPE, allow => \@regexex, [data =>
+\@previous_results ] )
+
+type, allow, data
 
 =back
 
-=item Compress::Raw::Zlib::Inflate
+=back
 
 =over 4
 
-=item B< ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) >
-
-B<-WindowBits>, B<-Bufsize>, B<-Dictionary>, B<-AppendOutput>, B<-CRC32>,
-B<-ADLER32>, B<-ConsumeInput>
+=item _search_author_tree( type => TYPE, allow => \@regexex, [data =>
+\@previous_results ] )
 
-=item B< $status = $i-E<gt>inflate($input, $output [,$eof]) >
+type, allow, data
 
-=item B<$status = $i-E<gt>inflateSync($input)>
+=back
 
-=item B<$i-E<gt>dict_adler()>
+=over 4
 
-=item B<$i-E<gt>crc32()>
+=item _all_installed()
 
-=item B<$i-E<gt>adler32()>
+=back
 
-=item B<$i-E<gt>msg()>
+=head2 CPANPLUS::Internals::Source
 
-=item B<$i-E<gt>total_in()>
+=over 4
 
-=item B<$i-E<gt>total_out()>
+=item SYNOPSIS
 
-=item B<$d-E<gt>get_BufSize()>
+=item DESCRIPTION
 
-=item Example
+=item METHODS
 
 =back
 
-=item CHECKSUM FUNCTIONS
+=over 4
 
-=item ACCESSING ZIP FILES
+=item $cb->_check_trees( [update_source => BOOL, path => PATH, verbose =>
+BOOL] )
 
-=item CONSTANTS
+update_source, path, verbose
 
-=item SEE ALSO
+=back
 
-=item AUTHOR
+=over 4
 
-=item MODIFICATION HISTORY
+=item $cb->__check_uptodate( file => $file, name => $name, [update_source
+=> BOOL, verbose => BOOL] )
 
-=item COPYRIGHT AND LICENSE
+file, name, update_source, verbose
 
 =back
 
-=head2 Compress::Zlib - Interface to zlib compression library
-
 =over 4
 
-=item SYNOPSIS
+=item $cb->_update_source( name => $name, [path => $path, verbose => BOOL]
+)
 
-=item DESCRIPTION
+name, path, verbose
+
+=back
 
 =over 4
 
-=item Notes for users of Compress::Zlib version 1
+=item $cb->_build_trees( uptodate => BOOL, [use_stored => BOOL, path =>
+$path, verbose => BOOL] )
+
+uptodate, path, verbose, use_stored
 
 =back
 
-=item GZIP INTERFACE
+=over 4
 
-B<$gz = gzopen($filename, $mode)>, B<$gz = gzopen($filehandle, $mode)>,
-B<$bytesread = $gz-E<gt>gzread($buffer [, $size]) ;>, B<$bytesread =
-$gz-E<gt>gzreadline($line) ;>, B<$byteswritten = $gz-E<gt>gzwrite($buffer)
-;>, B<$status = $gz-E<gt>gzflush($flush_type) ;>, B<$offset =
-$gz-E<gt>gztell() ;>, B<$status = $gz-E<gt>gzseek($offset, $whence) ;>,
-B<$gz-E<gt>gzclose>, B<$gz-E<gt>gzsetparams($level, $strategy>, B<$level>,
-B<$strategy>, B<$gz-E<gt>gzerror>, B<$gzerrno>
+=item $cb->__retrieve_source(name => $name, [path => $path, uptodate =>
+BOOL, verbose => BOOL])
 
-=over 4
+name, uptodate, path, verbose
 
-=item Examples
+=back
 
-=item Compress::Zlib::memGzip
+=over 4
 
-=item Compress::Zlib::memGunzip
+=item $cb->_save_source([verbose => BOOL, path => $path])
+
+path, verbose
 
 =back
 
-=item COMPRESS/UNCOMPRESS
+=over 4
 
-B<$dest = compress($source [, $level] ) ;>, B<$dest = uncompress($source)
-;>
+=item $cb->__create_author_tree([path => $path, uptodate => BOOL, verbose
+=> BOOL])
 
-=item Deflate Interface
+uptodate, path, verbose
+
+=back
 
 =over 4
 
-=item B<($d, $status) = deflateInit( [OPT] )>
+=item $cb->_create_mod_tree([path => $path, uptodate => BOOL, verbose =>
+BOOL])
 
-B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
-B<-Dictionary>, B<-Bufsize>
+uptodate, path, verbose
 
-=item B<($out, $status) = $d-E<gt>deflate($buffer)>
+=back
 
-=item B<($out, $status) = $d-E<gt>flush([flush_type])>
+=over 4
 
-=item B<$status = $d-E<gt>deflateParams([OPT])>
+=item $cb->__create_dslip_tree([path => $path, uptodate => BOOL, verbose =>
+BOOL])
 
-B<-Level>, B<-Strategy>
+uptodate, path, verbose
 
-=item B<$d-E<gt>dict_adler()>
+=back
 
-=item B<$d-E<gt>msg()>
+=over 4
 
-=item B<$d-E<gt>total_in()>
+=item $cb->_dslip_defs ()
 
-=item B<$d-E<gt>total_out()>
+=back
 
-=item Example
+=over 4
 
-=back
+=item $file = $cb->_add_custom_module_source( uri => URI, [verbose => BOOL]
+); 
 
-=item Inflate Interface
+=back
 
 =over 4
 
-=item B<($i, $status) = inflateInit()>
+=item $index = $cb->__custom_module_source_index_file( uri => $uri );
 
-B<-WindowBits>, B<-Bufsize>, B<-Dictionary>
+=back
 
-=item B<($out, $status) = $i-E<gt>inflate($buffer)>
+=over 4
 
-=item B<$status = $i-E<gt>inflateSync($buffer)>
+=item $file = $cb->_remove_custom_module_source( uri => URI, [verbose =>
+BOOL] ); 
 
-=item B<$i-E<gt>dict_adler()>
+=back
 
-=item B<$i-E<gt>msg()>
+=over 4
 
-=item B<$i-E<gt>total_in()>
+=item %files = $cb->__list_custom_module_sources
 
-=item B<$i-E<gt>total_out()>
+=back
 
-=item Example
+=over 4
+
+=item $bool = $cb->__update_custom_module_sources( [verbose => BOOL] );
 
 =back
 
-=item CHECKSUM FUNCTIONS
+=over 4
 
-=item CONSTANTS
+=item $ok = $cb->__update_custom_module_source 
 
-=item SEE ALSO
+=back
 
-=item AUTHOR
+=over 4
 
-=item MODIFICATION HISTORY
+=item $bool = $cb->__write_custom_module_index( path => /path/to/packages,
+[to => /path/to/index/file, verbose => BOOL] )
 
-=item COPYRIGHT AND LICENSE
+=back
+
+=over 4
+
+=item $bool = $cb->__create_custom_module_entries( [verbose => BOOL] ) 
 
 =back
 
-=head2 Compress::Zlib::Compress::Zlib, Compress::Zlib - Interface to zlib
-compression library
+=head2 CPANPLUS::Internals::Utils
 
 =over 4
 
@@ -15277,105 +15932,91 @@ compression library
 
 =item DESCRIPTION
 
+=item METHODS
+
 =over 4
 
-=item Notes for users of Compress::Zlib version 1
+=item $cb->_mkdir( dir => '/some/dir' )
 
 =back
 
-=item GZIP INTERFACE
-
-B<$gz = gzopen($filename, $mode)>, B<$gz = gzopen($filehandle, $mode)>,
-B<$bytesread = $gz-E<gt>gzread($buffer [, $size]) ;>, B<$bytesread =
-$gz-E<gt>gzreadline($line) ;>, B<$byteswritten = $gz-E<gt>gzwrite($buffer)
-;>, B<$status = $gz-E<gt>gzflush($flush_type) ;>, B<$offset =
-$gz-E<gt>gztell() ;>, B<$status = $gz-E<gt>gzseek($offset, $whence) ;>,
-B<$gz-E<gt>gzclose>, B<$gz-E<gt>gzsetparams($level, $strategy>, B<$level>,
-B<$strategy>, B<$gz-E<gt>gzerror>, B<$gzerrno>
+=back
 
 =over 4
 
-=item Examples
+=item $cb->_chdir( dir => '/some/dir' )
 
-=item Compress::Zlib::memGzip
+=back
 
-=item Compress::Zlib::memGunzip
+=over 4
+
+=item $cb->_rmdir( dir => '/some/dir' );
 
 =back
 
-=item COMPRESS/UNCOMPRESS
+=over 4
 
-B<$dest = compress($source [, $level] ) ;>, B<$dest = uncompress($source)
-;>
+=item $cb->_perl_version ( perl => 'some/perl/binary' );
 
-=item Deflate Interface
+=back
 
 =over 4
 
-=item B<($d, $status) = deflateInit( [OPT] )>
-
-B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
-B<-Dictionary>, B<-Bufsize>
+=item $cb->_version_to_number( version => $version );
 
-=item B<($out, $status) = $d-E<gt>deflate($buffer)>
+=back
 
-=item B<($out, $status) = $d-E<gt>flush([flush_type])>
+=over 4
 
-=item B<$status = $d-E<gt>deflateParams([OPT])>
+=item $cb->_whoami
 
-B<-Level>, B<-Strategy>
+=back
 
-=item B<$d-E<gt>dict_adler()>
+=over 4
 
-=item B<$d-E<gt>msg()>
+=item _get_file_contents( file => $file );
 
-=item B<$d-E<gt>total_in()>
+=back
 
-=item B<$d-E<gt>total_out()>
+=over 4
 
-=item Example
+=item $cb->_mode_plus_w( file => '/path/to/file' );
 
 =back
 
-=item Inflate Interface
-
 =over 4
 
-=item B<($i, $status) = inflateInit()>
+=item $uri = $cb->_host_to_uri( scheme => SCHEME, host => HOST, path =>
+PATH );
 
-B<-WindowBits>, B<-Bufsize>, B<-Dictionary>
+=back
 
-=item B<($out, $status) = $i-E<gt>inflate($buffer)>
-
-=item B<$status = $i-E<gt>inflateSync($buffer)>
-
-=item B<$i-E<gt>dict_adler()>
+=over 4
 
-=item B<$i-E<gt>msg()>
+=item $cb->_vcmp( VERSION, VERSION );
 
-=item B<$i-E<gt>total_in()>
+=back
 
-=item B<$i-E<gt>total_out()>
+=over 4
 
-=item Example
+=item $cb->_home_dir
 
 =back
 
-=item CHECKSUM FUNCTIONS
-
-=item CONSTANTS
+=over 4
 
-=item SEE ALSO
+=item $path = $cb->_safe_path( path => $path );
 
-=item AUTHOR
+=back
 
-=item MODIFICATION HISTORY
+=over 4
 
-=item COPYRIGHT AND LICENSE
+=item ($pkg, $version, $ext) = $cb->_split_package_string( package =>
+PACKAGE_STRING );
 
 =back
 
-=head2 Config - access Perl configuration information
+=head2 CPANPLUS::Module
 
 =over 4
 
@@ -15383,423 +16024,218 @@ B<-WindowBits>, B<-Bufsize>, B<-Dictionary>
 
 =item DESCRIPTION
 
-myconfig(), config_sh(), config_re($regex), config_vars(@names)
-
-=item EXAMPLE
+=back
 
-=item WARNING
+=over 4
 
-=item GLOSSARY
+=item CLASS METHODS
 
 =over 4
 
-=item _
-
-C<_a>, C<_exe>, C<_o>
+=item accessors ()
 
-=item a
+=back
 
-C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
-C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
-C<ar>, C<archlib>, C<archlibexp>, C<archname>, C<archname64>, C<archobjs>,
-C<asctime_r_proto>, C<awk>
+=back
 
-=item b
+=over 4
 
-C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
+=item ACCESSORS
 
-=item c
+name, module, version, path, comment, package, description, dslip
 
-C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
-C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
-C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
-C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
-C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
-C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
-C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
+=back
 
-=item d
+status, author, parent
 
-C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
-C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>,
-C<d_attribute_format>, C<d_attribute_malloc>, C<d_attribute_nonnull>,
-C<d_attribute_noreturn>, C<d_attribute_pure>, C<d_attribute_unused>,
-C<d_attribute_warn_unused_result>, C<d_bcmp>, C<d_bcopy>, C<d_bsd>,
-C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_builtin_choose_expr>,
-C<d_builtin_expect>, C<d_bzero>, C<d_c99_variadic_macros>, C<d_casti32>,
-C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>, C<d_chsize>,
-C<d_class>, C<d_clearenv>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>,
-C<d_cplusplus>, C<d_copysignl>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
-C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
-C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>,
-C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>,
-C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>,
-C<d_endhostent_r>, C<d_endnent>, C<d_endnetent_r>, C<d_endpent>,
-C<d_endprotoent_r>, C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>,
-C<d_endservent_r>, C<d_eofnblk>, C<d_eunice>, C<d_faststdio>, C<d_fchdir>,
-C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
-C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>,
-C<d_flexfnam>, C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>,
-C<d_fpathconf>, C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>,
-C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>,
-C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>,
-C<d_futimes>, C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>,
-C<d_getgrent>, C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>,
-C<d_getgrps>, C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>,
-C<d_gethname>, C<d_gethostbyaddr_r>, C<d_gethostbyname_r>,
-C<d_gethostent_r>, C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>,
-C<d_getlogin_r>, C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>,
-C<d_getnbyname>, C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>,
-C<d_getnetent_r>, C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>,
-C<d_getpbynumber>, C<d_getpent>, C<d_getpgid>, C<d_getpgrp>, C<d_getpgrp2>,
-C<d_getppid>, C<d_getprior>, C<d_getprotobyname_r>,
-C<d_getprotobynumber_r>, C<d_getprotoent_r>, C<d_getprotoprotos>,
-C<d_getprpwnam>, C<d_getpwent>, C<d_getpwent_r>, C<d_getpwnam_r>,
-C<d_getpwuid_r>, C<d_getsbyname>, C<d_getsbyport>, C<d_getsent>,
-C<d_getservbyname_r>, C<d_getservbyport_r>, C<d_getservent_r>,
-C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>, C<d_gettimeod>,
-C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>, C<d_htonl>,
-C<d_ilogbl>, C<d_inc_version_list>, C<d_index>, C<d_inetaton>,
-C<d_int64_t>, C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>,
-C<d_isnanl>, C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>,
-C<d_libm_lib_version>, C<d_link>, C<d_localtime_r>, C<d_locconv>,
-C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>, C<d_lstat>,
-C<d_madvise>, C<d_malloc_good_size>, C<d_malloc_size>, C<d_mblen>,
-C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>, C<d_memcpy>,
-C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>,
-C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>, C<d_modfl>,
-C<d_modfl_pow32_bug>, C<d_modflproto>, C<d_mprotect>, C<d_msg>,
-C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>,
-C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>,
-C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>,
-C<d_nl_langinfo>, C<d_nv_preserves_uv>, C<d_nv_zero_is_allbits_zero>,
-C<d_off64_t>, C<d_old_pthread_create_joinable>, C<d_oldpthreads>,
-C<d_oldsock>, C<d_open3>, C<d_pathconf>, C<d_pause>,
-C<d_perl_otherlibdirs>, C<d_phostname>, C<d_pipe>, C<d_poll>,
-C<d_portable>, C<d_PRId64>, C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>,
-C<d_PRIFUldbl>, C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>,
-C<d_PRIu64>, C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>,
-C<d_pthread_atfork>, C<d_pthread_attr_setscope>, C<d_pthread_yield>,
-C<d_pwage>, C<d_pwchange>, C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>,
-C<d_pwgecos>, C<d_pwpasswd>, C<d_pwquota>, C<d_qgcvt>, C<d_quad>,
-C<d_random_r>, C<d_readdir>, C<d_readdir64_r>, C<d_readdir_r>,
-C<d_readlink>, C<d_readv>, C<d_recvmsg>, C<d_rename>, C<d_rewinddir>,
-C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>, C<d_sanemcmp>, C<d_sbrkproto>,
-C<d_scalbnl>, C<d_sched_yield>, C<d_scm_rights>, C<d_SCNfldbl>,
-C<d_seekdir>, C<d_select>, C<d_sem>, C<d_semctl>, C<d_semctl_semid_ds>,
-C<d_semctl_semun>, C<d_semget>, C<d_semop>, C<d_sendmsg>, C<d_setegid>,
-C<d_seteuid>, C<d_setgrent>, C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>,
-C<d_sethostent_r>, C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>,
-C<d_setlocale_r>, C<d_setnent>, C<d_setnetent_r>, C<d_setpent>,
-C<d_setpgid>, C<d_setpgrp>, C<d_setpgrp2>, C<d_setprior>,
-C<d_setproctitle>, C<d_setprotoent_r>, C<d_setpwent>, C<d_setpwent_r>,
-C<d_setregid>, C<d_setresgid>, C<d_setresuid>, C<d_setreuid>, C<d_setrgid>,
-C<d_setruid>, C<d_setsent>, C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>,
-C<d_sfio>, C<d_shm>, C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>,
-C<d_shmdt>, C<d_shmget>, C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>,
-C<d_sitearch>, C<d_snprintf>, C<d_sockatmark>, C<d_sockatmarkproto>,
-C<d_socket>, C<d_socklen_t>, C<d_sockpair>, C<d_socks5_init>,
-C<d_sprintf_returns_strlen>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
-C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
-C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
-C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
-C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
-C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
-C<d_strftime>, C<d_strlcat>, C<d_strlcpy>, C<d_strtod>, C<d_strtol>,
-C<d_strtold>, C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>,
-C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>,
-C<d_syscallproto>, C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>,
-C<d_system>, C<d_tcgetpgrp>, C<d_tcsetpgrp>, C<d_telldir>,
-C<d_telldirproto>, C<d_time>, C<d_times>, C<d_tm_tm_gmtoff>,
-C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>, C<d_ttyname_r>, C<d_tzname>,
-C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
-C<d_unordered>, C<d_unsetenv>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>,
-C<d_vendorarch>, C<d_vendorbin>, C<d_vendorlib>, C<d_vendorscript>,
-C<d_vfork>, C<d_void_closedir>, C<d_voidsig>, C<d_voidtty>, C<d_volatile>,
-C<d_vprintf>, C<d_vsnprintf>, C<d_wait4>, C<d_waitpid>, C<d_wcstombs>,
-C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>, C<db_hashtype>,
-C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
-C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
-C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
+=over 4
 
-=item e
+=item STATUS ACCESSORS
 
-C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
-C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
-C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
-C<expr>, C<extensions>, C<extras>
+installer_type, dist_cpan, dist, prereqs, signature, extract, fetch,
+readme, uninstall, created, installed, checksums, checksum_ok,
+checksum_value
 
-=item f
+=item METHODS
 
-C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
-C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
-C<full_sed>
+=over 4
 
-=item g
+=item $self = CPANPLUS::Module::new( OPTIONS )
 
-C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
-C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
-C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
-C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
-C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
-C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
-C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
-C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
-C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
-C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
+=back
 
-=item h
+=back
 
-C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
-C<html3dir>, C<html3direxp>
+=over 4
 
-=item i
+=item $mod->package_name
 
-C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
-C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
-C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
-C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
-C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
-C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
-C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
-C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
-C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
-C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
-C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
-C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
-C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
-C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
-C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
-C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
-C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
-C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
-C<incpath>, C<inews>, C<initialinstalllocation>, C<installarchlib>,
-C<installbin>, C<installhtml1dir>, C<installhtml3dir>, C<installman1dir>,
-C<installman3dir>, C<installprefix>, C<installprefixexp>,
-C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
-C<installsitehtml1dir>, C<installsitehtml3dir>, C<installsitelib>,
-C<installsiteman1dir>, C<installsiteman3dir>, C<installsitescript>,
-C<installstyle>, C<installusrbinperl>, C<installvendorarch>,
-C<installvendorbin>, C<installvendorhtml1dir>, C<installvendorhtml3dir>,
-C<installvendorlib>, C<installvendorman1dir>, C<installvendorman3dir>,
-C<installvendorscript>, C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>,
-C<ivtype>
+=item $mod->package_version
 
-=item k
+=item $mod->package_extension
 
-C<known_extensions>, C<ksh>
+=item $mod->package_is_perl_core
 
-=item l
+=item $mod->module_is_supplied_with_perl_core( [version => $]] )
 
-C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
-C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
-C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
-C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
-C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
-C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
-C<lseektype>
+=item $mod->is_bundle
 
-=item m
+=item $mod->is_third_party
 
-C<mad>, C<madlyh>, C<madlyobj>, C<madlysrc>, C<mail>, C<mailx>, C<make>,
-C<make_set_make>, C<mallocobj>, C<mallocsrc>, C<malloctype>, C<man1dir>,
-C<man1direxp>, C<man1ext>, C<man3dir>, C<man3direxp>, C<man3ext>
+=item $mod->third_party_information
 
-=item M
+=back
 
-C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
-C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
-C<myuname>
+=over 4
 
-=item n
+=item $clone = $self->clone
 
-C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
-C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
-C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
-C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
-C<nvsize>, C<nvtype>
+=back
 
-=item o
+=over 4
 
-C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
-C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
+=item $where = $self->fetch
 
-=item p
+=back
 
-C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl>,
-C<perl5>
+=over 4
 
-=item P
+=item $path = $self->extract
 
-C<PERL_API_REVISION>, C<PERL_API_SUBVERSION>, C<PERL_API_VERSION>,
-C<PERL_CONFIG_SH>, C<PERL_PATCHLEVEL>, C<perl_patchlevel>,
-C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
-C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
-C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>, C<privlibexp>,
-C<procselfexe>, C<prototype>, C<ptrsize>
+=back
 
-=item q
+=over 4
 
-C<quadkind>, C<quadtype>
+=item $type = $self->get_installer_type([prefer_makefile => BOOL])
 
-=item r
+=back
 
-C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
-C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
-C<rmail>, C<run>, C<runnm>
+=over 4
 
-=item s
+=item $dist = $self->dist([target => 'prepare|create', format =>
+DISTRIBUTION_TYPE, args => {key => val}]);
 
-C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
-C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
-C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
-C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
-C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
-C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
-C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
-C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
-C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
-C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
-C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
-C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
-C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
-C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
-C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
-C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
-C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
-C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
-C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
-C<submit>, C<subversion>, C<sysman>
+=back
 
-=item t
+=over 4
 
-C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
-C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
-C<ttyname_r_proto>
+=item $bool = $mod->prepare( )
 
-=item u
+Convenience method around C<install()> that prepares a module 
+without actually building it. This is equivalent to invoking C<install>
+with C<target> set to C<prepare>
 
-C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
-C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
-C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
-C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
-C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemallocwrap>,
-C<usemorebits>, C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>,
-C<useperlio>, C<useposix>, C<usereentrant>, C<userelocatableinc>,
-C<usesfio>, C<useshrplib>, C<usesitecustomize>, C<usesocks>, C<usethreads>,
-C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
-C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
+=back
 
-=item v
+=over 4
 
-C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
-C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
-C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
-C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
-C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
-C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
-C<versiononly>, C<vi>, C<voidflags>
+=item $bool = $mod->create( )
 
-=item x
+=back
 
-C<xlibpth>
+=over 4
 
-=item y
+=item $bool = $mod->test( )
 
-C<yacc>, C<yaccflags>
+=back
 
-=item z
+=over 4
 
-C<zcat>, C<zip>
+=item $bool = $self->install([ target => 'prepare|create|install', format
+=> FORMAT_TYPE, extractdir => DIRECTORY, fetchdir => DIRECTORY, prefer_bin
+=> BOOL, force => BOOL, verbose => BOOL, ..... ]);
 
 =back
 
-=item NOTE
+=over 4
+
+=item $text = $self->readme
 
 =back
 
 =over 4
 
-=item SYNOPSIS
+=item $version = $self->installed_version()
 
-=item DESCRIPTION
-
-dynamic, nonxs, static
+=item $where = $self->installed_file()
 
-=item AUTHOR
+=item $bool = $self->is_uptodate([version => VERSION_NUMBER])
 
 =back
 
-=head2 Cwd - get pathname of current working directory
-
 =over 4
 
-=item SYNOPSIS
+=item $href = $self->details()
 
-=item DESCRIPTION
+=back
 
 =over 4
 
-=item getcwd and friends
-
-getcwd, cwd, fastcwd, fastgetcwd, getdcwd
+=item @list = $self->contains()
 
-=item abs_path and friends
+=back
 
-abs_path, realpath, fast_abs_path
+=over 4
 
-=item $ENV{PWD}
+=item @list_of_hrefs = $self->fetch_report()
 
 =back
 
-=item NOTES
+=over 4
 
-=item AUTHOR
+=item $bool = $self->uninstall([type => [all|man|prog])
 
-=item COPYRIGHT
+=back
 
-=item SEE ALSO
+=over 4
+
+=item @modobj = $self->distributions()
 
 =back
 
-=head2 DB - programmatic interface to the Perl debugging API (draft,
-subject to
-change)
+=over 4
+
+=item @list = $self->files ()
+
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item @list = $self->directory_tree ()
 
-=item DESCRIPTION
+=back
 
 =over 4
 
-=item Global Variables
+=item @list = $self->packlist ()
 
- $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace, @DB::args, 
-@DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
-$DB::lineno
+=back
 
-=item API Methods
+=over 4
 
-CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
-CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
+=item @list = $self->validate ()
 
-=item Client Callback Methods
+=back
 
-CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
-CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
-CLIENT->output(LIST)
+=over 4
+
+=item $bool = $self->add_to_includepath;
+
+=item $path = $self->best_path_to_module_build();
 
 =back
 
-=item BUGS
+=over 4
+
+=item BUG REPORTS
 
 =item AUTHOR
 
+=item COPYRIGHT
+
 =back
 
-=head2 DBM_Filter -- Filter DBM keys/values 
+=head2 CPANPLUS::Module::Author
 
 =over 4
 
@@ -15807,67 +16243,50 @@ CLIENT->output(LIST)
 
 =item DESCRIPTION
 
-=item What is a DBM Filter?
-
-=over 4
+=item ACCESSORS
 
-=item So what's new?
+author, cpanid, email, parent
 
 =back
 
+=over 4
+
 =item METHODS
 
 =over 4
 
-=item $db->Filter_Push()
-
-=item $db->Filter_Key_Push()
+=item $auth = CPANPLUS::Module::Author->new( author => AUTHOR_NAME, cpanid
+=> CPAN_ID, _id => INTERNALS_ID [, email => AUTHOR_EMAIL] )
 
-=item $db->Filter_Value_Push()
+=back
 
-Filter_Push, Filter_Key_Push, Filter_Value_Push
+=back
 
-=item $db->Filter_Pop()
+=over 4
 
-=item $db->Filtered()
+=item @mod_objs = $auth->modules()
 
 =back
 
-=item Writing a Filter
-
 =over 4
 
-=item Immediate Filters
-
-=item Canned Filters
-
-"name", params
+=item @dists = $auth->distributions()
 
 =back
 
-=item Filters Included
-
-utf8, encode, compress, int32, null
+=over 4
 
-=item NOTES
+=item CLASS METHODS
 
 =over 4
 
-=item Maintain Round Trip Integrity
-
-=item Don't mix filtered & non-filtered data in the same database file. 
+=item accessors ()
 
 =back
 
-=item EXAMPLE
-
-=item SEE ALSO
-
-=item AUTHOR
-
 =back
 
-=head2 DBM_Filter::compress - filter for DBM_Filter
+=head2 CPANPLUS::Module::Author::Fake
 
 =over 4
 
@@ -15875,13 +16294,17 @@ utf8, encode, compress, int32, null
 
 =item DESCRIPTION
 
-=item SEE ALSO
+=item METHODS
 
-=item AUTHOR
+=over 4
+
+=item new( _id => DIGIT )
 
 =back
 
-=head2 DBM_Filter::encode - filter for DBM_Filter
+=back
+
+=head2 CPANPLUS::Module::Checksums
 
 =over 4
 
@@ -15889,13 +16312,17 @@ utf8, encode, compress, int32, null
 
 =item DESCRIPTION
 
-=item SEE ALSO
+=item METHODS
 
-=item AUTHOR
+=over 4
+
+=item $mod->checksums
 
 =back
 
-=head2 DBM_Filter::int32 - filter for DBM_Filter
+=back
+
+=head2 CPANPLUS::Module::Fake
 
 =over 4
 
@@ -15903,27 +16330,25 @@ utf8, encode, compress, int32, null
 
 =item DESCRIPTION
 
-=item SEE ALSO
+=item METHODS
 
-=item AUTHOR
+=over 4
+
+=item new( module => $mod, path => $path, package => $pkg, [_id => DIGIT] )
 
 =back
 
-=head2 DBM_Filter::null - filter for DBM_Filter
+=back
 
-=over 4
+=head2 CPANPLUS::inc
 
-=item SYNOPSIS
+=over 4
 
 =item DESCRIPTION
 
-=item SEE ALSO
-
-=item AUTHOR
-
 =back
 
-=head2 DBM_Filter::utf8 - filter for DBM_Filter
+=head2 CPANPLUS::inc - runtime inclusion of privately bundled modules
 
 =over 4
 
@@ -15931,150 +16356,151 @@ utf8, encode, compress, int32, null
 
 =item DESCRIPTION
 
-=item SEE ALSO
+Put a coderef at the beginning of C<@INC>, Add the full path to the
+C<CPANPLUS/inc> directory to C<$ENV{PERL5LIB>
 
-=item AUTHOR
+=item METHODS
 
-=back
+=over 4
 
-=head2 DB_File - Perl5 access to Berkeley DB version 1.x
+=item CPANPLUS::inc->inc_path()
 
-=over 4
+=item CPANPLUS::inc->my_path()
 
-=item SYNOPSIS
+=item CPANPLUS::inc->installer_path()
 
-=item DESCRIPTION
+=back
 
-B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
+=back
 
 =over 4
 
-=item Using DB_File with Berkeley DB version 2 or greater
-
-=item Interface to Berkeley DB
+=item CPANPLUS::inc->original_perl5lib
 
-=item Opening a Berkeley DB Database File
+=item CPANPLUS::inc->original_perl5opt
 
-=item Default Parameters
+=item CPANPLUS::inc->original_inc
 
-=item In Memory Databases
+=item CPANPLUS::inc->limited_perl5opt(@modules);
 
 =back
 
-=item DB_HASH
-
 =over 4
 
-=item A Simple Example
+=item CPANPLUS::inc->interesting_modules()
 
 =back
 
-=item DB_BTREE
-
 =over 4
 
-=item Changing the BTREE sort order
+=item INTERESTING MODULES
 
-=item Handling Duplicate Keys 
+Loop over your @INC, Check the version on every suitable module found in
+@INC
 
-=item The get_dup() Method
+=back
 
-=item The find_dup() Method
+=over 4
 
-=item The del_dup() Method
+=item DEBUG
 
-=item Matching Partial Keys 
+=item CAVEATS
+
+On multiple C<use lib> calls, our coderef may not be the first in @INC,
+Non-directories in @INC
 
 =back
 
-=item DB_RECNO
+=head2 CPANPLUSelfupdate, CPANPLUS::Selfupdate
 
 =over 4
 
-=item The 'bval' Option
+=item SYNOPSIS
 
-=item A Simple Example
+=back
 
-=item Extra RECNO Methods
+=over 4
 
-B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
-B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
-length, elements);>
+=item METHODS
 
-=item Another Example
+=over 4
+
+=item $self = CPANPLUS::Selfupdate->new( $backend_object );
 
 =back
 
-=item THE API INTERFACE
+=back
 
-B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
-$X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
-$flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
-$value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
+=over 4
 
-=item DBM FILTERS
+=item %list = $self->list_modules_to_update( update =>
+"core|dependencies|enabled_features|features|all", [latest => BOOL] )
 
-B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
-B<filter_fetch_value>
+List which modules C<selfupdate> would upgrade. You can update either 
+the core (CPANPLUS itself), the core dependencies, all features you have
+currently turned on, or all features available, or everything.
+
+=back
 
 =over 4
 
-=item The Filter
+=item @features = $self->list_features
 
-=item An Example -- the NULL termination problem.
+=back
 
-=item Another Example -- Key is a C int.
+=over 4
 
-=back
+=item @features = $self->list_enabled_features
 
-=item HINTS AND TIPS 
+=back
 
 =over 4
 
-=item Locking: The Trouble with fd
-
-=item Safe ways to lock a database
+=item @mods = $self->modules_for_feature( FEATURE [,AS_HASH] )
 
-B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
+=back
 
-=item Sharing Databases With C Applications
+=over 4
 
-=item The untie() Gotcha
+=item @mods = $self->list_core_dependencies( [AS_HASH] )
 
 =back
 
-=item COMMON QUESTIONS
-
 =over 4
 
-=item Why is there Perl source in my database?
+=item @mods = $self->list_core_modules( [AS_HASH] )
 
-=item How do I store complex data structures with DB_File?
+=back
 
-=item What does "Invalid Argument" mean?
+=over 4
 
-=item What does "Bareword 'DB_File' not allowed" mean? 
+=item CPANPLUS::Selfupdate::Module
 
 =back
 
-=item REFERENCES
+=over 4
 
-=item HISTORY
+=item $version = $mod->version_required
 
-=item BUGS
+=back
 
-=item AVAILABILITY
+=over 4
 
-=item COPYRIGHT
+=item $bool = $mod->is_installed_version_sufficient
 
-=item SEE ALSO
+=back
+
+=over 4
+
+=item BUG REPORTS
 
 =item AUTHOR
 
+=item COPYRIGHT
+
 =back
 
-=head2 Data::Dumper - stringified perl data structures, suitable for both
-printing and C<eval>
+=head2 CPANPLUShell, CPANPLUS::Shell
 
 =over 4
 
@@ -16082,108 +16508,109 @@ printing and C<eval>
 
 =item DESCRIPTION
 
-=over 4
-
-=item Methods
-
-I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
-I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
-I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
-I<$OBJ>->Reset
+=back
 
-=item Functions
+=over 4
 
-Dumper(I<LIST>)
+=item BUG REPORTS
 
-=item Configuration Variables or Methods
+=item AUTHOR
 
-=item Exports
+=item COPYRIGHT
 
-Dumper
+=item SEE ALSO
 
 =back
 
-=item EXAMPLES
-
-=item BUGS
+=head2 CPANPLUShell::Classic, CPANPLUS::Shell::Classic - CPAN.pm emulation
+for CPANPLUS
 
 =over 4
 
-=item NOTE
+=item DESCRIPTION
 
-=back
+=item BUG REPORTS
 
 =item AUTHOR
 
-=item VERSION
+=item COPYRIGHT
 
 =item SEE ALSO
 
 =back
 
-=head2 Devel::DProf - a Perl code profiler
-
 =over 4
 
-=item SYNOPSIS
+=item SEE ALSO
+
+=back
+
+=head2 CPANPLUShell::Default, CPANPLUS::Shell::Default
+
+=over 4
+
+=item SYNOPSIS
 
 =item DESCRIPTION
 
-=item PROFILE FORMAT
+=back
 
-=item AUTOLOAD
+=over 4
 
-=item ENVIRONMENT
+=item BUG REPORTS
 
-=item BUGS
+=item AUTHOR
+
+=item COPYRIGHT
 
 =item SEE ALSO
 
 =back
 
-=head2 Devel::PPPort - Perl/Pollution/Portability
+=head2 CPANPLUShell::Default::Plugins::CustomSource,
+CPANPLUS::Shell::Default::Plugins::CustomSource 
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
-
-=over 4
-
-=item Why use ppport.h?
-
-=item How to use ppport.h
+    ### elaborate help text
+    CPAN Terminal> /? cs
 
-=item Running ppport.h
+=item DESCRIPTION
 
 =back
 
-=item FUNCTIONS
+=head2 CPANPLUShell::Default::Plugins::HOWTO,
+CPANPLUS::Shell::Default::Plugins::HOWTO -- documentation on how to write
+your own plugins
 
 =over 4
 
-=item WriteFile
-
-=back
+=item SYNOPSIS
 
-=item COMPATIBILITY
+=item HOWTO
 
 =over 4
 
-=item Provided Perl compatibility API
+=item Registering Plugin Modules
 
-=item Perl API not supported by ppport.h
+=item Registering Plugin Commands
+
+=item Registering Plugin Help
+
+=item Arguments to Plugin Commands
 
-perl 5.9.4, perl 5.9.3, perl 5.9.2, perl 5.9.1, perl 5.9.0, perl 5.8.3,
-perl 5.8.1, perl 5.8.0, perl 5.7.3, perl 5.7.2, perl 5.7.1, perl 5.6.1,
-perl 5.6.0, perl 5.005_03, perl 5.005, perl 5.004_05, perl 5.004
+Classname -- The name of your plugin class, Shell     -- The
+CPANPLUS::Shell::Default object, Backend   -- The CPANPLUS::Backend object,
+Command   -- The command issued by the user, Input     -- The input string
+from the user, Options  -- A hashref of options provided by the user
 
 =back
 
-=item BUGS
+=item BUG REPORTS
 
-=item AUTHORS
+=item AUTHOR
 
 =item COPYRIGHT
 
@@ -16191,7 +16618,8 @@ perl 5.6.0, perl 5.005_03, perl 5.005, perl 5.004_05, perl 5.004
 
 =back
 
-=head2 Devel::Peek - A data debugging tool for the XS programmer
+=head2 CPANPLUShell::Default::Plugins::Remote,
+CPANPLUS::Shell::Default::Plugins::Remote
 
 =over 4
 
@@ -16199,49 +16627,45 @@ perl 5.6.0, perl 5.005_03, perl 5.005, perl 5.004_05, perl 5.004
 
 =item DESCRIPTION
 
-=over 4
-
-=item Runtime debugging
-
-=item Memory footprint debugging
-
 =back
 
-=item EXAMPLES
-
 =over 4
 
-=item A simple scalar string
+=item BUG REPORTS
 
-=item A simple scalar number
+=item AUTHOR
 
-=item A simple scalar with an extra reference
+=item COPYRIGHT
 
-=item A reference to a simple scalar
+=item SEE ALSO
 
-=item A reference to an array
+=back
 
-=item A reference to a hash
+=head2 CPANPLUShell::Default::Plugins::Source,
+CPANPLUS::Shell::Default::Plugins::Source 
 
-=item Dumping a large array or hash
+=over 4
 
-=item A reference to an SV which holds a C pointer
+=item SYNOPSIS
 
-=item A reference to a subroutine
+=item DESCRIPTION
 
 =back
 
-=item EXPORTS
+=over 4
 
-=item BUGS
+=item BUG REPORTS
 
 =item AUTHOR
 
+=item COPYRIGHT
+
 =item SEE ALSO
 
 =back
 
-=head2 Devel::SelfStubber - generate stubs for a SelfLoading module
+=head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
+module
 
 =over 4
 
@@ -16249,9 +16673,13 @@ perl 5.6.0, perl 5.005_03, perl 5.005, perl 5.004_05, perl 5.004
 
 =item DESCRIPTION
 
+=item LICENSE
+
+=item  SEE ALSO
+
 =back
 
-=head2 Digest - Modules that calculate message digests
+=head2 Carp, carp    - warn of errors (from perspective of caller)
 
 =over 4
 
@@ -16259,101 +16687,61 @@ perl 5.6.0, perl 5.005_03, perl 5.005, perl 5.004_05, perl 5.004
 
 =item DESCRIPTION
 
-I<binary>, I<hex>, I<base64>
-
-=item OO INTERFACE
-
-$ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
-Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
-$ctx->add( $data ), $ctx->add( $chunk1, $chunk2, ... ), $ctx->addfile(
-$io_handle ), $ctx->add_bits( $data, $nbits ), $ctx->add_bits( $bitstring
-), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
-
-=item Digest speed
-
-=item SEE ALSO
+=over 4
 
-=item AUTHOR
+=item Forcing a Stack Trace
 
 =back
 
-=head2 Digest::MD5 - Perl interface to the MD5 Algorithm
+=item GLOBAL VARIABLES
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item $Carp::MaxEvalLen
 
-=item FUNCTIONS
+=item $Carp::MaxArgLen
 
-md5($data,...), md5_hex($data,...), md5_base64($data,...)
+=item $Carp::MaxArgNums
 
-=item METHODS
+=item $Carp::Verbose
 
-$md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
-$md5->addfile($io_handle), $md5->add_bits($data, $nbits),
-$md5->add_bits($bitstring), $md5->digest, $md5->hexdigest, $md5->b64digest
+=item %Carp::Internal
 
-=item EXAMPLES
+=item %Carp::CarpInternal
 
-=item SEE ALSO
+=item $Carp::CarpLevel
 
-=item COPYRIGHT
+=back
 
-=item AUTHORS
+=item BUGS
 
 =back
 
-=head2 Digest::SHA - Perl extension for SHA-1/224/256/384/512
-
-=over 4
+=head2 Carp::Heavy - heavy machinery, no user serviceable parts inside
 
-=item SYNOPSIS (SHA)
+=head2 Class::ISA -- report the search path for a class's ISA tree
 
-=item SYNOPSIS (HMAC-SHA)
+=over 4
 
-=item ABSTRACT
+=item SYNOPSIS
 
 =item DESCRIPTION
 
-=item NIST STATEMENT ON SHA-1
-
-=item BASE64 DIGESTS
-
-=item EXPORT
+=item FUNCTIONS
 
-=item EXPORTABLE FUNCTIONS
+the function Class::ISA::super_path($CLASS), the function
+Class::ISA::self_and_super_path($CLASS), the function
+Class::ISA::self_and_super_versions($CLASS)
 
-B<sha1($data, ...)>, B<sha224($data, ...)>, B<sha256($data, ...)>,
-B<sha384($data, ...)>, B<sha512($data, ...)>, B<sha1_hex($data, ...)>,
-B<sha224_hex($data, ...)>, B<sha256_hex($data, ...)>, B<sha384_hex($data,
-...)>, B<sha512_hex($data, ...)>, B<sha1_base64($data, ...)>,
-B<sha224_base64($data, ...)>, B<sha256_base64($data, ...)>,
-B<sha384_base64($data, ...)>, B<sha512_base64($data, ...)>, B<new($alg)>,
-B<reset($alg)>, B<hashsize>, B<algorithm>, B<clone>, B<add($data, ...)>,
-B<add_bits($data, $nbits)>, B<add_bits($bits)>, B<addfile(*FILE)>,
-B<addfile($filename [, $mode])>, B<dump($filename)>, B<load($filename)>,
-B<digest>, B<hexdigest>, B<b64digest>, B<hmac_sha1($data, $key)>,
-B<hmac_sha224($data, $key)>, B<hmac_sha256($data, $key)>,
-B<hmac_sha384($data, $key)>, B<hmac_sha512($data, $key)>,
-B<hmac_sha1_hex($data, $key)>, B<hmac_sha224_hex($data, $key)>,
-B<hmac_sha256_hex($data, $key)>, B<hmac_sha384_hex($data, $key)>,
-B<hmac_sha512_hex($data, $key)>, B<hmac_sha1_base64($data, $key)>,
-B<hmac_sha224_base64($data, $key)>, B<hmac_sha256_base64($data, $key)>,
-B<hmac_sha384_base64($data, $key)>, B<hmac_sha512_base64($data, $key)>
+=item CAUTIONARY NOTES
 
-=item SEE ALSO
+=item COPYRIGHT
 
 =item AUTHOR
 
-=item ACKNOWLEDGMENTS
-
-=item COPYRIGHT AND LICENSE
-
 =back
 
-=head2 Digest::base - Digest base class
+=head2 Class::Struct - declare struct-like datatypes as Perl classes
 
 =over 4
 
@@ -16361,27 +16749,31 @@ B<hmac_sha384_base64($data, $key)>, B<hmac_sha512_base64($data, $key)>
 
 =item DESCRIPTION
 
-=item SEE ALSO
+=over 4
 
-=back
+=item The C<struct()> function
 
-=head2 Digest::file - Calculate digests of files
+=item Class Creation at Compile Time
 
-=over 4
+=item Element Types and Accessor Methods
 
-=item SYNOPSIS
+Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
+C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
 
-=item DESCRIPTION
+=item Initializing with C<new>
 
-digest_file( $file, $algorithm, [$arg,...] ), digest_file_hex( $file,
-$algorithm, [$arg,...] ), digest_file_base64( $file, $algorithm, [$arg,...]
-)
+=back
 
-=item SEE ALSO
+=item EXAMPLES
+
+Example 1, Example 2, Example 3
+
+=item Author and Modification History
 
 =back
 
-=head2 DirHandle - supply object methods for directory handles
+=head2 Compress::Raw::Zlib - Low-Level Interface to zlib compression
+library
 
 =over 4
 
@@ -16389,212 +16781,194 @@ $algorithm, [$arg,...] ), digest_file_base64( $file, $algorithm, [$arg,...]
 
 =item DESCRIPTION
 
-=item NOTES
+=item Compress::Raw::Zlib::Deflate
 
-=back
+=over 4
 
-=head2 Dumpvalue - provides screen dump of Perl data.
+=item B<($d, $status) = new Compress::Raw::Zlib::Deflate( [OPT] ) >
 
-=over 4
+B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
+B<-Dictionary>, B<-Bufsize>, B<-AppendOutput>, B<-CRC32>, B<-ADLER32>
 
-=item SYNOPSIS
+=item B<$status = $d-E<gt>deflate($input, $output)>
 
-=item DESCRIPTION
+=item B<$status = $d-E<gt>flush($output [, $flush_type]) >
 
-=over 4
+=item B<$status = $d-E<gt>deflateParams([OPT])>
 
-=item Creation
+B<-Level>, B<-Strategy>, B<-BufSize>
 
-C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
-C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
-C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
-stopDbSignal
+=item B<$status = $d-E<gt>deflateTune($good_length, $max_lazy,
+$nice_length, $max_chain)>
 
-=item Methods
+=item B<$d-E<gt>dict_adler()>
 
-dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
-compactDump, veryCompact, set, get
+=item B<$d-E<gt>crc32()>
 
-=back
+=item B<$d-E<gt>adler32()>
 
-=back
+=item B<$d-E<gt>msg()>
 
-=head2 DynaLoader - Dynamically load C libraries into Perl code
+=item B<$d-E<gt>total_in()>
 
-=over 4
+=item B<$d-E<gt>total_out()>
 
-=item SYNOPSIS
+=item B<$d-E<gt>get_Strategy()>
 
-=item DESCRIPTION
+=item B<$d-E<gt>get_Level()>
 
-@dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
-@dl_modules, @dl_shared_objects, dl_error(), $dl_debug, dl_findfile(),
-dl_expandspec(), dl_load_file(), dl_unload_file(), dl_load_flags(),
-dl_find_symbol(), dl_find_symbol_anywhere(), dl_undef_symbols(),
-dl_install_xsub(), bootstrap()
+=item B<$d-E<gt>get_BufSize()>
 
-=item AUTHOR
+=item Example
 
 =back
 
-=head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
-Perl code
+=item Compress::Raw::Zlib::Inflate
 
 =over 4
 
-=item VERSION
+=item B< ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) >
 
-=item SYNOPSIS
+B<-WindowBits>, B<-Bufsize>, B<-Dictionary>, B<-AppendOutput>, B<-CRC32>,
+B<-ADLER32>, B<-ConsumeInput>
 
-=item DESCRIPTION
+=item B< $status = $i-E<gt>inflate($input, $output [,$eof]) >
 
-=over 4
+=item B<$status = $i-E<gt>inflateSync($input)>
 
-=item Migration from C<DynaLoader>
+=item B<$i-E<gt>dict_adler()>
 
-=item Backward compatible boilerplate
+=item B<$i-E<gt>crc32()>
 
-=back
+=item B<$i-E<gt>adler32()>
 
-=item Order of initialization: early load()
+=item B<$i-E<gt>msg()>
 
-=over 4
+=item B<$i-E<gt>total_in()>
 
-=item The most hairy case
+=item B<$i-E<gt>total_out()>
 
-=back
+=item B<$d-E<gt>get_BufSize()>
 
-=item DIAGNOSTICS
+=item Example
 
-Can't find '%s' symbol in %s, Can't load '%s' for module %s: %s, Undefined
-symbols present after loading %s: %s, XSLoader::load('Your::Module',
-$Your::Module::VERSION)
+=back
 
-=item LIMITATIONS
+=item CHECKSUM FUNCTIONS
 
-=item BUGS
+=item ACCESSING ZIP FILES
+
+=item CONSTANTS
 
 =item SEE ALSO
 
-=item AUTHORS
+=item AUTHOR
 
-=item COPYRIGHT
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 Encode - character encodings
+=head2 Compress::Raw::Zlib::Compress::Raw::Zlib, Compress::Raw::Zlib -
+Low-Level Interface to zlib compression library
 
 =over 4
 
 =item SYNOPSIS
 
-=over 4
-
-=item Table of Contents
-
-=back
-
 =item DESCRIPTION
 
-=over 4
-
-=item TERMINOLOGY
-
-=back
+=item Compress::Raw::Zlib::Deflate
 
-=item PERL ENCODING API
+=over 4
 
-$octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
-$octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
-CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
-CHECK]);
+=item B<($d, $status) = new Compress::Raw::Zlib::Deflate( [OPT] ) >
 
-=over 4
+B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
+B<-Dictionary>, B<-Bufsize>, B<-AppendOutput>, B<-CRC32>, B<-ADLER32>
 
-=item Listing available encodings
+=item B<$status = $d-E<gt>deflate($input, $output)>
 
-=item Defining Aliases
+=item B<$status = $d-E<gt>flush($output [, $flush_type]) >
 
-=back
+=item B<$status = $d-E<gt>deflateParams([OPT])>
 
-=item Encoding via PerlIO
+B<-Level>, B<-Strategy>, B<-BufSize>
 
-=item Handling Malformed Data
+=item B<$status = $d-E<gt>deflateTune($good_length, $max_lazy,
+$nice_length, $max_chain)>
 
-B<NOTE:> Not all encoding support this feature, I<CHECK> =
-Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1), I<CHECK> =
-Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode (I<CHECK> =
-Encode::FB_PERLQQ), HTML charref mode (I<CHECK> = Encode::FB_HTMLCREF), XML
-charref mode (I<CHECK> = Encode::FB_XMLCREF), The bitmask
+=item B<$d-E<gt>dict_adler()>
 
-=over 4
+=item B<$d-E<gt>crc32()>
 
-=item coderef for CHECK
+=item B<$d-E<gt>adler32()>
 
-=back
+=item B<$d-E<gt>msg()>
 
-=item Defining Encodings
+=item B<$d-E<gt>total_in()>
 
-=item The UTF-8 flag
+=item B<$d-E<gt>total_out()>
 
-Goal #1:, Goal #2:, Goal #3:, Goal #4:
+=item B<$d-E<gt>get_Strategy()>
 
-=over 4
+=item B<$d-E<gt>get_Level()>
 
-=item Messing with Perl's Internals
+=item B<$d-E<gt>get_BufSize()>
 
-is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
+=item Example
 
 =back
 
-=item UTF-8 vs. utf8
+=item Compress::Raw::Zlib::Inflate
 
-=item SEE ALSO
+=over 4
 
-=item MAINTAINER
+=item B< ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) >
 
-=item COPYRIGHT
+B<-WindowBits>, B<-Bufsize>, B<-Dictionary>, B<-AppendOutput>, B<-CRC32>,
+B<-ADLER32>, B<-ConsumeInput>
 
-=back
+=item B< $status = $i-E<gt>inflate($input, $output [,$eof]) >
 
-=head2 Encode::Alias - alias definitions to encodings
+=item B<$status = $i-E<gt>inflateSync($input)>
 
-=over 4
+=item B<$i-E<gt>dict_adler()>
 
-=item SYNOPSIS
+=item B<$i-E<gt>crc32()>
 
-=item DESCRIPTION
+=item B<$i-E<gt>adler32()>
 
-As a simple string, As a qr// compiled regular expression, e.g.:, As a code
-reference, e.g.:
+=item B<$i-E<gt>msg()>
 
-=over 4
+=item B<$i-E<gt>total_in()>
 
-=item Alias overloading
+=item B<$i-E<gt>total_out()>
 
-=back
+=item B<$d-E<gt>get_BufSize()>
 
-=item SEE ALSO
+=item Example
 
 =back
 
-=head2 Encode::Byte - Single Byte Encodings
+=item CHECKSUM FUNCTIONS
 
-=over 4
+=item ACCESSING ZIP FILES
 
-=item SYNOPSIS
+=item CONSTANTS
 
-=item ABSTRACT
+=item SEE ALSO
 
-=item DESCRIPTION
+=item AUTHOR
 
-=item SEE ALSO
+=item MODIFICATION HISTORY
 
-=back
+=item COPYRIGHT AND LICENSE
 
-=head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
+=back
 
-=head2 Encode::CN - China-based Chinese Encodings
+=head2 Compress::Zlib - Interface to zlib compression library
 
 =over 4
 
@@ -16602,115 +16976,106 @@ reference, e.g.:
 
 =item DESCRIPTION
 
-=item NOTES
-
-=item BUGS
+=over 4
 
-=item SEE ALSO
+=item Notes for users of Compress::Zlib version 1
 
 =back
 
-=head2 Encode::CN::HZ -- internally used by Encode::CN
-
-=head2 Encode::Config -- internally used by Encode
+=item GZIP INTERFACE
 
-=head2 Encode::EBCDIC - EBCDIC Encodings
+B<$gz = gzopen($filename, $mode)>, B<$gz = gzopen($filehandle, $mode)>,
+B<$bytesread = $gz-E<gt>gzread($buffer [, $size]) ;>, B<$bytesread =
+$gz-E<gt>gzreadline($line) ;>, B<$byteswritten = $gz-E<gt>gzwrite($buffer)
+;>, B<$status = $gz-E<gt>gzflush($flush_type) ;>, B<$offset =
+$gz-E<gt>gztell() ;>, B<$status = $gz-E<gt>gzseek($offset, $whence) ;>,
+B<$gz-E<gt>gzclose>, B<$gz-E<gt>gzsetparams($level, $strategy>, B<$level>,
+B<$strategy>, B<$gz-E<gt>gzerror>, B<$gzerrno>
 
 =over 4
 
-=item SYNOPSIS
-
-=item ABSTRACT
+=item Examples
 
-=item DESCRIPTION
+=item Compress::Zlib::memGzip
 
-=item SEE ALSO
+=item Compress::Zlib::memGunzip
 
 =back
 
-=head2 Encode::Encoding - Encode Implementation Base Class
-
-=over 4
+=item COMPRESS/UNCOMPRESS
 
-=item SYNOPSIS
+B<$dest = compress($source [, $level] ) ;>, B<$dest = uncompress($source)
+;>
 
-=item DESCRIPTION
+=item Deflate Interface
 
 =over 4
 
-=item Methods you should implement
-
--E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
--E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
+=item B<($d, $status) = deflateInit( [OPT] )>
 
-=item Other methods defined in Encode::Encodings
+B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
+B<-Dictionary>, B<-Bufsize>
 
--E<gt>name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
--E<gt>needs_lines()
+=item B<($out, $status) = $d-E<gt>deflate($buffer)>
 
-=item Example: Encode::ROT13
+=item B<($out, $status) = $d-E<gt>flush([flush_type])>
 
-=back
+=item B<$status = $d-E<gt>deflateParams([OPT])>
 
-=item Why the heck Encode API is different?
+B<-Level>, B<-Strategy>
 
-=over 4
+=item B<$d-E<gt>dict_adler()>
 
-=item Compiled Encodings
+=item B<$d-E<gt>msg()>
 
-=back
+=item B<$d-E<gt>total_in()>
 
-=item SEE ALSO
+=item B<$d-E<gt>total_out()>
 
-Scheme 1, Scheme 2, Other Schemes
+=item Example
 
 =back
 
-=head2 Encode::Guess -- Guesses encoding from data
+=item Inflate Interface
 
 =over 4
 
-=item SYNOPSIS
+=item B<($i, $status) = inflateInit()>
 
-=item ABSTRACT
+B<-WindowBits>, B<-Bufsize>, B<-Dictionary>
 
-=item DESCRIPTION
+=item B<($out, $status) = $i-E<gt>inflate($buffer)>
 
-Encode::Guess->set_suspects, Encode::Guess->add_suspects,
-Encode::decode("Guess" ...), Encode::Guess->guess($data),
-guess_encoding($data, [, I<list of suspects>])
+=item B<$status = $i-E<gt>inflateSync($buffer)>
 
-=item CAVEATS
+=item B<$i-E<gt>dict_adler()>
 
-=item TO DO
+=item B<$i-E<gt>msg()>
 
-=item SEE ALSO
+=item B<$i-E<gt>total_in()>
 
-=back
+=item B<$i-E<gt>total_out()>
 
-=head2 Encode::JP - Japanese Encodings
+=item Example
 
-=over 4
+=back
 
-=item SYNOPSIS
+=item CHECKSUM FUNCTIONS
 
-=item ABSTRACT
+=item CONSTANTS
 
-=item DESCRIPTION
+=item SEE ALSO
 
-=item Note on ISO-2022-JP(-1)?
+=item AUTHOR
 
-=item BUGS
+=item MODIFICATION HISTORY
 
-=item SEE ALSO
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
-
-=head2 Encode::JP::JIS7 -- internally used by Encode::JP
-
-=head2 Encode::KR - Korean Encodings
+=head2 Compress::Zlib::Compress::Zlib, Compress::Zlib - Interface to zlib
+compression library
 
 =over 4
 
@@ -16718,617 +17083,804 @@ guess_encoding($data, [, I<list of suspects>])
 
 =item DESCRIPTION
 
-=item BUGS
+=over 4
 
-=item SEE ALSO
+=item Notes for users of Compress::Zlib version 1
 
 =back
 
-=head2 Encode::KR::2022_KR -- internally used by Encode::KR
+=item GZIP INTERFACE
 
-=head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
+B<$gz = gzopen($filename, $mode)>, B<$gz = gzopen($filehandle, $mode)>,
+B<$bytesread = $gz-E<gt>gzread($buffer [, $size]) ;>, B<$bytesread =
+$gz-E<gt>gzreadline($line) ;>, B<$byteswritten = $gz-E<gt>gzwrite($buffer)
+;>, B<$status = $gz-E<gt>gzflush($flush_type) ;>, B<$offset =
+$gz-E<gt>gztell() ;>, B<$status = $gz-E<gt>gzseek($offset, $whence) ;>,
+B<$gz-E<gt>gzclose>, B<$gz-E<gt>gzsetparams($level, $strategy>, B<$level>,
+B<$strategy>, B<$gz-E<gt>gzerror>, B<$gzerrno>
 
 =over 4
 
-=item SYNOPSIS
+=item Examples
 
-=item ABSTRACT
+=item Compress::Zlib::memGzip
 
-=item DESCRIPTION
+=item Compress::Zlib::memGunzip
 
-=item BUGS
+=back
 
-=item SEE ALSO
+=item COMPRESS/UNCOMPRESS
 
-=back
+B<$dest = compress($source [, $level] ) ;>, B<$dest = uncompress($source)
+;>
 
-=head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
+=item Deflate Interface
 
 =over 4
 
-=item Overview
+=item B<($d, $status) = deflateInit( [OPT] )>
 
-=item How does it work?
-
-=item Line Buffering
-
-=over 4
+B<-Level>, B<-Method>, B<-WindowBits>, B<-MemLevel>, B<-Strategy>,
+B<-Dictionary>, B<-Bufsize>
 
-=item How can I tell whether my encoding fully supports PerlIO ?
+=item B<($out, $status) = $d-E<gt>deflate($buffer)>
 
-=back
+=item B<($out, $status) = $d-E<gt>flush([flush_type])>
 
-=item SEE ALSO
+=item B<$status = $d-E<gt>deflateParams([OPT])>
 
-=back
+B<-Level>, B<-Strategy>
 
-=head2 Encode::Supported -- Encodings supported by Encode
+=item B<$d-E<gt>dict_adler()>
 
-=over 4
+=item B<$d-E<gt>msg()>
 
-=item DESCRIPTION
+=item B<$d-E<gt>total_in()>
 
-=over 4
+=item B<$d-E<gt>total_out()>
 
-=item Encoding Names
+=item Example
 
 =back
 
-=item Supported Encodings
+=item Inflate Interface
 
 =over 4
 
-=item Built-in Encodings
+=item B<($i, $status) = inflateInit()>
 
-=item Encode::Unicode -- other Unicode encodings
+B<-WindowBits>, B<-Bufsize>, B<-Dictionary>
 
-=item Encode::Byte -- Extended ASCII
+=item B<($out, $status) = $i-E<gt>inflate($buffer)>
 
-ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
-the Cyrillic world, gsm0338 - Hentai Latin 1
+=item B<$status = $i-E<gt>inflateSync($buffer)>
 
-=item CJK: Chinese, Japanese, Korean (Multibyte)
+=item B<$i-E<gt>dict_adler()>
 
-Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
-Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
-Encode::JIS2K -- JIS X 0213 encodings via CPAN
+=item B<$i-E<gt>msg()>
 
-=item Miscellaneous encodings
+=item B<$i-E<gt>total_in()>
 
-Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
+=item B<$i-E<gt>total_out()>
 
-=back
+=item Example
 
-=item Unsupported encodings
+=back
 
-  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
-Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
-System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
-Various Mac encodings, (Mac) Indic encodings
+=item CHECKSUM FUNCTIONS
 
-=item Encoding vs. Charset -- terminology
+=item CONSTANTS
 
-=item Encoding Classification (by Anton Tagunov and Dan Kogai)
+=item SEE ALSO
 
-=over 4
+=item AUTHOR
 
-=item Microsoft-related naming mess
+=item MODIFICATION HISTORY
 
-KS_C_5601-1987, GB2312, Big5, Shift_JIS
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=item Glossary
-
-character repertoire, coded character set (CCS), character encoding scheme
-(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
-UTF-16
-
-=item See Also
-
-=item References
-
-ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
-RFC, UC, Unicode Glossary
+=head2 Config - access Perl configuration information
 
 =over 4
 
-=item Other Notable Sites
-
-czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
-"Introduction to i18n"
+=item SYNOPSIS
 
-=item Offline sources
+=item DESCRIPTION
 
-C<CJKV Information Processing> by Ken Lunde
+myconfig(), config_sh(), config_re($regex), config_vars(@names)
 
-=back
+=item EXAMPLE
 
-=back
+=item WARNING
 
-=head2 Encode::Symbol - Symbol Encodings
+=item GLOSSARY
 
 =over 4
 
-=item SYNOPSIS
+=item _
 
-=item ABSTRACT
+C<_a>, C<_exe>, C<_o>
 
-=item DESCRIPTION
+=item a
 
-=item SEE ALSO
+C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
+C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
+C<ar>, C<archlib>, C<archlibexp>, C<archname>, C<archname64>, C<archobjs>,
+C<asctime_r_proto>, C<awk>
 
-=back
+=item b
 
-=head2 Encode::TW - Taiwan-based Chinese Encodings
+C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
 
-=over 4
+=item c
 
-=item SYNOPSIS
+C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
+C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
+C<cf_email>, C<cf_time>, C<chgrp>, C<chmod>, C<chown>, C<clocktype>,
+C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>, C<cpp_stuff>,
+C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>, C<cpprun>,
+C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>, C<csh>,
+C<ctermid_r_proto>, C<ctime_r_proto>
 
-=item DESCRIPTION
+=item d
 
-=item NOTES
+C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
+C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>,
+C<d_attribute_format>, C<d_attribute_malloc>, C<d_attribute_nonnull>,
+C<d_attribute_noreturn>, C<d_attribute_pure>, C<d_attribute_unused>,
+C<d_attribute_warn_unused_result>, C<d_bcmp>, C<d_bcopy>, C<d_bsd>,
+C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_builtin_choose_expr>,
+C<d_builtin_expect>, C<d_bzero>, C<d_c99_variadic_macros>, C<d_casti32>,
+C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>, C<d_chsize>,
+C<d_class>, C<d_clearenv>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>,
+C<d_copysignl>, C<d_cplusplus>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
+C<d_ctermid>, C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
+C<d_dbminitproto>, C<d_difftime>, C<d_dir_dd_fd>, C<d_dirfd>,
+C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>,
+C<d_drand48_r>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>, C<d_endgrent>,
+C<d_endgrent_r>, C<d_endhent>, C<d_endhostent_r>, C<d_endnent>,
+C<d_endnetent_r>, C<d_endpent>, C<d_endprotoent_r>, C<d_endpwent>,
+C<d_endpwent_r>, C<d_endsent>, C<d_endservent_r>, C<d_eofnblk>,
+C<d_eunice>, C<d_faststdio>, C<d_fchdir>, C<d_fchmod>, C<d_fchown>,
+C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>,
+C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>,
+C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>,
+C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>,
+C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>,
+C<d_fsync>, C<d_ftello>, C<d_ftime>, C<d_futimes>, C<d_Gconvert>,
+C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
+C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
+C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
+C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
+C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
+C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
+C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
+C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
+C<d_getpent>, C<d_getpgid>, C<d_getpgrp>, C<d_getpgrp2>, C<d_getppid>,
+C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
+C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
+C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
+C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
+C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
+C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
+C<d_htonl>, C<d_ilogbl>, C<d_inc_version_list>, C<d_index>, C<d_inetaton>,
+C<d_int64_t>, C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>,
+C<d_isnanl>, C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>,
+C<d_libm_lib_version>, C<d_link>, C<d_localtime_r>,
+C<d_localtime_r_needs_tzset>, C<d_locconv>, C<d_lockf>, C<d_longdbl>,
+C<d_longlong>, C<d_lseekproto>, C<d_lstat>, C<d_madvise>,
+C<d_malloc_good_size>, C<d_malloc_size>, C<d_mblen>, C<d_mbstowcs>,
+C<d_mbtowc>, C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>,
+C<d_memset>, C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>,
+C<d_mkstemps>, C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>,
+C<d_modflproto>, C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>,
+C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>, C<d_msg_proxy>,
+C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>, C<d_msgsnd>,
+C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>, C<d_nl_langinfo>,
+C<d_nv_preserves_uv>, C<d_nv_zero_is_allbits_zero>, C<d_off64_t>,
+C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
+C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
+C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
+C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
+C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_printf_format_null>,
+C<d_PRIo64>, C<d_PRIu64>, C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>,
+C<d_pseudofork>, C<d_pthread_atfork>, C<d_pthread_attr_setscope>,
+C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>, C<d_pwclass>,
+C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>, C<d_pwquota>,
+C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir>, C<d_readdir64_r>,
+C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>, C<d_rename>,
+C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>, C<d_sanemcmp>,
+C<d_sbrkproto>, C<d_scalbnl>, C<d_sched_yield>, C<d_scm_rights>,
+C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>, C<d_semctl>,
+C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>, C<d_semop>,
+C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>, C<d_setgrent_r>,
+C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>, C<d_setitimer>,
+C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>, C<d_setnent>,
+C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp>, C<d_setpgrp2>,
+C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>, C<d_setpwent>,
+C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>, C<d_setresuid>,
+C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>, C<d_setservent_r>,
+C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>, C<d_shmat>,
+C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>, C<d_sigaction>,
+C<d_signbit>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sitearch>,
+C<d_snprintf>, C<d_sockatmark>, C<d_sockatmarkproto>, C<d_socket>,
+C<d_socklen_t>, C<d_sockpair>, C<d_socks5_init>,
+C<d_sprintf_returns_strlen>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
+C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
+C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
+C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
+C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
+C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
+C<d_strftime>, C<d_strlcat>, C<d_strlcpy>, C<d_strtod>, C<d_strtol>,
+C<d_strtold>, C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>,
+C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>,
+C<d_syscallproto>, C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>,
+C<d_system>, C<d_tcgetpgrp>, C<d_tcsetpgrp>, C<d_telldir>,
+C<d_telldirproto>, C<d_time>, C<d_times>, C<d_tm_tm_gmtoff>,
+C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>, C<d_ttyname_r>, C<d_tzname>,
+C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
+C<d_unordered>, C<d_unsetenv>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>,
+C<d_vendorarch>, C<d_vendorbin>, C<d_vendorlib>, C<d_vendorscript>,
+C<d_vfork>, C<d_void_closedir>, C<d_voidsig>, C<d_voidtty>, C<d_volatile>,
+C<d_vprintf>, C<d_vsnprintf>, C<d_wait4>, C<d_waitpid>, C<d_wcstombs>,
+C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>, C<db_hashtype>,
+C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
+C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
+C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
 
-=item BUGS
+=item e
 
-=item SEE ALSO
+C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
+C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
+C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
+C<expr>, C<extensions>, C<extras>
 
-=back
+=item f
 
-=head2 Encode::Unicode -- Various Unicode Transformation Formats
+C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
+C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
+C<full_sed>
 
-=over 4
+=item g
 
-=item SYNOPSIS
+C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
+C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
+C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
+C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
+C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
+C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
+C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
+C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
+C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
+C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
 
-=item ABSTRACT
+=item h
 
-L<http://www.unicode.org/glossary/> says:, Quick Reference
+C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
+C<html3dir>, C<html3direxp>
 
-=item Size, Endianness, and BOM
+=item i
 
-=over 4
+C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
+C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
+C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
+C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
+C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
+C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
+C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
+C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
+C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
+C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
+C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
+C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
+C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
+C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
+C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
+C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
+C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
+C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
+C<incpath>, C<inews>, C<initialinstalllocation>, C<installarchlib>,
+C<installbin>, C<installhtml1dir>, C<installhtml3dir>, C<installman1dir>,
+C<installman3dir>, C<installprefix>, C<installprefixexp>,
+C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
+C<installsitehtml1dir>, C<installsitehtml3dir>, C<installsitelib>,
+C<installsiteman1dir>, C<installsiteman3dir>, C<installsitescript>,
+C<installstyle>, C<installusrbinperl>, C<installvendorarch>,
+C<installvendorbin>, C<installvendorhtml1dir>, C<installvendorhtml3dir>,
+C<installvendorlib>, C<installvendorman1dir>, C<installvendorman3dir>,
+C<installvendorscript>, C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>,
+C<ivtype>
 
-=item by size
+=item k
 
-=item by endianness
+C<known_extensions>, C<ksh>
 
-BOM as integer when fetched in network byte order
+=item l
 
-=back
+C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
+C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
+C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
+C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
+C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
+C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
+C<lseektype>
 
-=item Surrogate Pairs
+=item m
 
-=item Error Checking
+C<mad>, C<madlyh>, C<madlyobj>, C<madlysrc>, C<mail>, C<mailx>, C<make>,
+C<make_set_make>, C<mallocobj>, C<mallocsrc>, C<malloctype>, C<man1dir>,
+C<man1direxp>, C<man1ext>, C<man3dir>, C<man3direxp>, C<man3ext>
 
-=item SEE ALSO
+=item M
 
-=back
+C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
+C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
+C<myuname>
 
-=head2 Encode::Unicode::UTF7 -- UTF-7 encoding
+=item n
 
-=over 4
+C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
+C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
+C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
+C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
+C<nvsize>, C<nvtype>
 
-=item SYNOPSIS
+=item o
 
-=item ABSTRACT
+C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
+C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
 
-=item In Practice
+=item p
 
-=item SEE ALSO
+C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl>,
+C<perl5>
 
-=back
+=item P
 
-=head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
-encodings
-
-=over 4
-
-=item SYNOPSIS
+C<PERL_API_REVISION>, C<PERL_API_SUBVERSION>, C<PERL_API_VERSION>,
+C<PERL_CONFIG_SH>, C<PERL_PATCHLEVEL>, C<perl_patchlevel>,
+C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
+C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
+C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>, C<privlibexp>,
+C<procselfexe>, C<prototype>, C<ptrsize>
 
-=item DESCRIPTION
+=item q
 
-As a simple string, As a qr// compiled regular expression, e.g.:, As a code
-reference, e.g.:
+C<quadkind>, C<quadtype>
 
-=over 4
+=item r
 
-=item Alias overloading
+C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
+C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
+C<rm_try>, C<rmail>, C<run>, C<runnm>
 
-=back
+=item s
 
-=item SEE ALSO
+C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
+C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
+C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
+C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
+C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
+C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
+C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
+C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
+C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
+C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
+C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
+C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
+C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
+C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
+C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
+C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
+C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
+C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
+C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
+C<submit>, C<subversion>, C<sysman>
 
-=back
+=item t
 
-=head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
-Internally used by Encode::??::ISO_2022_*
+C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
+C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
+C<ttyname_r_proto>
 
-=head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
-Encode::CN
+=item u
 
-=head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
-Encode
+C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
+C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
+C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
+C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
+C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemallocwrap>,
+C<usemorebits>, C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>,
+C<useperlio>, C<useposix>, C<usereentrant>, C<userelocatableinc>,
+C<usesfio>, C<useshrplib>, C<usesitecustomize>, C<usesocks>, C<usethreads>,
+C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
+C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
 
-=head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
-Implementation Base Class
+=item v
 
-=over 4
+C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
+C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
+C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
+C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
+C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
+C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
+C<versiononly>, C<vi>, C<voidflags>
 
-=item SYNOPSIS
+=item x
 
-=item DESCRIPTION
+C<xlibpth>
 
-=over 4
+=item y
 
-=item Methods you should implement
+C<yacc>, C<yaccflags>
 
--E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
--E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
+=item z
 
-=item Other methods defined in Encode::Encodings
+C<zcat>, C<zip>
 
--E<gt>name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
--E<gt>needs_lines()
+=back
 
-=item Example: Encode::ROT13
+=item NOTE
 
 =back
 
-=item Why the heck Encode API is different?
-
 =over 4
 
-=item Compiled Encodings
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item SEE ALSO
+dynamic, nonxs, static
 
-Scheme 1, Scheme 2, Other Schemes
+=item AUTHOR
 
 =back
 
-=head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
-data
+=head2 Cwd - get pathname of current working directory
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
-
 =item DESCRIPTION
 
-Encode::Guess->set_suspects, Encode::Guess->add_suspects,
-Encode::decode("Guess" ...), Encode::Guess->guess($data),
-guess_encoding($data, [, I<list of suspects>])
-
-=item CAVEATS
+=over 4
 
-=item TO DO
+=item getcwd and friends
 
-=item SEE ALSO
+getcwd, cwd, fastcwd, fastgetcwd, getdcwd
 
-=back
+=item abs_path and friends
 
-=head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
-Encode::JP::2022_JP*
+abs_path, realpath, fast_abs_path
 
-=head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
-by Encode::JP
+=item $ENV{PWD}
 
-=head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
-used by Encode::KR
+=back
 
-=head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
-and 'Q' header encoding
+=item NOTES
 
-=over 4
+=item AUTHOR
 
-=item SYNOPSIS
+=item COPYRIGHT
 
-=item ABSTRACT
+=item SEE ALSO
 
-=item DESCRIPTION
+=back
 
-=item BUGS
+=head2 DB - programmatic interface to the Perl debugging API
 
-=item SEE ALSO
+=over 4
 
-=back
+=item SYNOPSIS
 
-=head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
-on Encode and PerlIO
+=item DESCRIPTION
 
 =over 4
 
-=item Overview
+=item Global Variables
 
-=item How does it work?
+ $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace, @DB::args, 
+@DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
+$DB::lineno
 
-=item Line Buffering
+=item API Methods
 
-=over 4
+CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
+CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
 
-=item How can I tell whether my encoding fully supports PerlIO ?
+=item Client Callback Methods
+
+CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
+CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
+CLIENT->output(LIST)
 
 =back
 
-=item SEE ALSO
+=item BUGS
+
+=item AUTHOR
 
 =back
 
-=head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
-supported by Encode
+=head2 DBM_Filter -- Filter DBM keys/values 
 
 =over 4
 
+=item SYNOPSIS
+
 =item DESCRIPTION
 
+=item What is a DBM Filter?
+
 =over 4
 
-=item Encoding Names
+=item So what's new?
 
 =back
 
-=item Supported Encodings
+=item METHODS
 
 =over 4
 
-=item Built-in Encodings
-
-=item Encode::Unicode -- other Unicode encodings
-
-=item Encode::Byte -- Extended ASCII
+=item $db->Filter_Push()
 
-ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
-the Cyrillic world, gsm0338 - Hentai Latin 1
+=item $db->Filter_Key_Push()
 
-=item CJK: Chinese, Japanese, Korean (Multibyte)
+=item $db->Filter_Value_Push()
 
-Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
-Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
-Encode::JIS2K -- JIS X 0213 encodings via CPAN
+Filter_Push, Filter_Key_Push, Filter_Value_Push
 
-=item Miscellaneous encodings
+=item $db->Filter_Pop()
 
-Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
+=item $db->Filtered()
 
 =back
 
-=item Unsupported encodings
-
-  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
-Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
-System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
-Various Mac encodings, (Mac) Indic encodings
-
-=item Encoding vs. Charset -- terminology
-
-=item Encoding Classification (by Anton Tagunov and Dan Kogai)
+=item Writing a Filter
 
 =over 4
 
-=item Microsoft-related naming mess
-
-KS_C_5601-1987, GB2312, Big5, Shift_JIS
+=item Immediate Filters
 
-=back
+=item Canned Filters
 
-=item Glossary
+"name", params
 
-character repertoire, coded character set (CCS), character encoding scheme
-(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
-UTF-16
+=back
 
-=item See Also
+=item Filters Included
 
-=item References
+utf8, encode, compress, int32, null
 
-ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
-RFC, UC, Unicode Glossary
+=item NOTES
 
 =over 4
 
-=item Other Notable Sites
+=item Maintain Round Trip Integrity
 
-czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
-"Introduction to i18n"
+=item Don't mix filtered & non-filtered data in the same database file. 
 
-=item Offline sources
+=back
 
-C<CJKV Information Processing> by Ken Lunde
+=item EXAMPLE
 
-=back
+=item SEE ALSO
+
+=item AUTHOR
 
 =back
 
-=head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
-encoding
+=head2 DBM_Filter::compress - filter for DBM_Filter
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
-
-=item In Practice
+=item DESCRIPTION
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
+=head2 DBM_Filter::encode - filter for DBM_Filter
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
+=item DESCRIPTION
 
-=item Description
+=item SEE ALSO
 
-=over 4
+=item AUTHOR
 
-=item Predefined Methods
+=back
 
-$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
-$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
-$e-E<gt>bytes([$encoding])
+=head2 DBM_Filter::int32 - filter for DBM_Filter
 
-=item Example: base64 transcoder
+=over 4
 
-=item Operator Overloading
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 Encodencoding, encoding - allows you to write your script in
-non-ascii or non-utf8
+=head2 DBM_Filter::null - filter for DBM_Filter
 
 =over 4
 
 =item SYNOPSIS
 
-=item ABSTRACT
+=item DESCRIPTION
 
-=over 4
+=item SEE ALSO
 
-=item Literal Conversions
+=item AUTHOR
 
-=item PerlIO layers for C<STD(IN|OUT)>
+=back
 
-=item Implicit upgrading for byte strings
+=head2 DBM_Filter::utf8 - filter for DBM_Filter
 
-=back
+=over 4
 
-=item FEATURES THAT REQUIRE 5.8.1
+=item SYNOPSIS
 
-"NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
+=item DESCRIPTION
 
-=item USAGE
+=item SEE ALSO
 
-use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
-I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
+=item AUTHOR
 
-=item The Filter Option
+=back
+
+=head2 DB_File - Perl5 access to Berkeley DB version 1.x
 
 =over 4
 
-=item Filter-related changes at Encode version 1.87
+=item SYNOPSIS
 
-=back
+=item DESCRIPTION
 
-=item CAVEATS
+B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
 
 =over 4
 
-=item NOT SCOPED
-
-=item DO NOT MIX MULTIPLE ENCODINGS
+=item Using DB_File with Berkeley DB version 2 or greater
 
-=item tr/// with ranges
+=item Interface to Berkeley DB
 
-Legend of characters above
+=item Opening a Berkeley DB Database File
 
-=back
+=item Default Parameters
 
-=item EXAMPLE - Greekperl
+=item In Memory Databases
 
-=item KNOWN PROBLEMS
+=back
 
-literals in regex that are longer than 127 bytes, EBCDIC, format
+=item DB_HASH
 
 =over 4
 
-=item The Logic of :locale
+=item A Simple Example
 
 =back
 
-=item HISTORY
+=item DB_BTREE
 
-=item SEE ALSO
+=over 4
 
-=back
+=item Changing the BTREE sort order
 
-=head2 Encoder, Encode::Encoder -- Object Oriented Encoder
+=item Handling Duplicate Keys 
 
-=over 4
+=item The get_dup() Method
 
-=item SYNOPSIS
+=item The find_dup() Method
 
-=item ABSTRACT
+=item The del_dup() Method
 
-=item Description
+=item Matching Partial Keys 
+
+=back
+
+=item DB_RECNO
 
 =over 4
 
-=item Predefined Methods
+=item The 'bval' Option
 
-$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
-$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
-$e-E<gt>bytes([$encoding])
+=item A Simple Example
 
-=item Example: base64 transcoder
+=item Extra RECNO Methods
 
-=item Operator Overloading
+B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
+B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
+length, elements);>
+
+=item Another Example
 
 =back
 
-=item SEE ALSO
+=item THE API INTERFACE
 
-=back
+B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
+$X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
+$flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
+$value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
 
-=head2 English - use nice English (or awk) names for ugly punctuation
-variables
+=item DBM FILTERS
+
+B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
+B<filter_fetch_value>
 
 =over 4
 
-=item SYNOPSIS
+=item The Filter
 
-=item DESCRIPTION
+=item An Example -- the NULL termination problem.
 
-=item PERFORMANCE
+=item Another Example -- Key is a C int.
 
 =back
 
-=head2 Env - perl module that imports environment variables as scalars or
-arrays
+=item HINTS AND TIPS 
 
 =over 4
 
-=item SYNOPSIS
+=item Locking: The Trouble with fd
 
-=item DESCRIPTION
+=item Safe ways to lock a database
 
-=item LIMITATIONS
+B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
 
-=item AUTHOR
+=item Sharing Databases With C Applications
+
+=item The untie() Gotcha
 
 =back
 
-=head2 Errno - System errno constants
+=item COMMON QUESTIONS
 
 =over 4
 
-=item SYNOPSIS
+=item Why is there Perl source in my database?
 
-=item DESCRIPTION
+=item How do I store complex data structures with DB_File?
 
-=item CAVEATS
+=item What does "Invalid Argument" mean?
 
-=item AUTHOR
+=item What does "Bareword 'DB_File' not allowed" mean? 
+
+=back
+
+=item REFERENCES
+
+=item HISTORY
+
+=item BUGS
+
+=item AVAILABILITY
 
 =item COPYRIGHT
 
+=item SEE ALSO
+
+=item AUTHOR
+
 =back
 
-=head2 Exporter - Implements default import method for modules
+=head2 Data::Dumper - stringified perl data structures, suitable for both
+printing and C<eval>
 
 =over 4
 
@@ -17338,41 +17890,45 @@ arrays
 
 =over 4
 
-=item How to Export
+=item Methods
 
-=item Selecting What To Export
+I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
+I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
+I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
+I<$OBJ>->Reset
 
-=item How to Import
+=item Functions
 
-C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
+Dumper(I<LIST>)
 
-=back
+=item Configuration Variables or Methods
 
-=item Advanced features
+=item Exports
 
-=over 4
+Dumper
 
-=item Specialised Import Lists
+=back
 
-=item Exporting without using Exporter's import method
+=item EXAMPLES
 
-=item Exporting without inheriting from Exporter
+=item BUGS
 
-=item Module Version Checking
+=over 4
 
-=item Managing Unknown Symbols
+=item NOTE
 
-=item Tag Handling Utility Functions
+=back
 
-=item Generating combined tags
+=item AUTHOR
 
-=item C<AUTOLOAD>ed Constants
+=item VERSION
 
-=back
+=item SEE ALSO
 
 =back
 
-=head2 Exporter::Heavy - Exporter guts
+=head2 Devel::Arena - Perl extension for inspecting the core's arena
+structures
 
 =over 4
 
@@ -17380,50 +17936,44 @@ C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
 
 =item DESCRIPTION
 
-=back
-
-=head2 ExtUtils::CBuilder - Compile and link C code for Perl modules
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item METHODS
+=item EXPORT
 
-new, have_compiler, compile, C<object_file>, C<include_dirs>,
-C<extra_compiler_flags>, link, lib_file, module_name, extra_linker_flags,
-link_executable, exe_file, object_file, lib_file, exe_file, prelink,
-need_prelink, extra_link_args_after_prelink
+sv_stats [DONT_SHARE], shared_string_table, sizes, HEK_size STRING,
+shared_string_table_effectiveness, write_stats_at_END
 
-=item TO DO
+=back
 
-=item HISTORY
+=item SEE ALSO
 
 =item AUTHOR
 
-=item COPYRIGHT
-
-=item SEE ALSO
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 ExtUtils::CBuilder::Platform::Windows - Builder class for Windows
-platforms
+=head2 Devel::DProf - a Perl code profiler
 
 =over 4
 
+=item SYNOPSIS
+
 =item DESCRIPTION
 
-=item AUTHOR
+=item PROFILE FORMAT
+
+=item AUTOLOAD
+
+=item ENVIRONMENT
+
+=item BUGS
 
 =item SEE ALSO
 
 =back
 
-=head2 ExtUtils::Command - utilities to replace common UNIX commands in
-Makefiles etc.
+=head2 Devel::InnerPackage - find all the inner packages of a package
 
 =over 4
 
@@ -17431,133 +17981,139 @@ Makefiles etc.
 
 =item DESCRIPTION
 
-=back
+=item METHODS
 
-cat
+=over 4
 
-eqtime
+=item list_packages <package name>
 
-rm_rf
+=back
 
-rm_f
+=back
 
-touch
+=over 4
 
-mv
+=item AUTHOR
 
-cp
+=item COPYING
 
-chmod
+=item BUGS
 
-mkpath
+=back
 
-test_f
-
-dos2unix
+=head2 Devel::PPPort - Perl/Pollution/Portability
 
 =over 4
 
-=item SEE ALSO 
-
-=item AUTHOR
-
-=back
+=item SYNOPSIS
 
-=head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
+=item DESCRIPTION
 
 =over 4
 
-=item SYNOPSIS
+=item Why use ppport.h?
 
-=item DESCRIPTION
+=item How to use ppport.h
 
-B<test_harness>
+=item Running ppport.h
 
 =back
 
-B<pod2man>
+=item FUNCTIONS
 
-B<warn_if_old_packlist>
+=over 4
 
-B<perllocal_install>
+=item WriteFile
 
-B<uninstall>
+=back
 
-=head2 ExtUtils::Constant - generate XS code to import C header constants
+=item COMPATIBILITY
 
 =over 4
 
-=item SYNOPSIS
+=item Provided Perl compatibility API
 
-=item DESCRIPTION
+=item Perl API not supported by ppport.h
 
-=item USAGE
+perl 5.9.5, perl 5.9.4, perl 5.9.3, perl 5.9.2, perl 5.9.1, perl 5.9.0,
+perl 5.8.3, perl 5.8.1, perl 5.8.0, perl 5.7.3, perl 5.7.2, perl 5.7.1,
+perl 5.6.1, perl 5.6.0, perl 5.005_03, perl 5.005, perl 5.004_05, perl
+5.004
 
-IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
+=back
 
-=item FUNCTIONS
+=item BUGS
 
-=back
+=item AUTHORS
 
-constant_types
+=item COPYRIGHT
 
-XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
+=item SEE ALSO
 
-autoload PACKAGE, VERSION, AUTOLOADER
+=back
 
-WriteMakefileSnippet
+=head2 Devel::Peek - A data debugging tool for the XS programmer
 
-WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
-BREAKOUT_AT, NAMES, C_FH, C_FILE, XS_FH, XS_FILE, SUBNAME, C_SUBNAME
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =over 4
 
-=item AUTHOR
+=item Runtime debugging
+
+=item Memory footprint debugging
 
 =back
 
-=head2 ExtUtils::Constant::Base - base class for ExtUtils::Constant objects
+=item EXAMPLES
 
 =over 4
 
-=item SYNOPSIS
+=item A simple scalar string
 
-=item DESCRIPTION
+=item A simple scalar number
 
-=item USAGE
+=item A simple scalar with an extra reference
 
-=back
+=item A reference to a simple scalar
 
-header
+=item A reference to an array
 
-memEQ_clause args_hashref
+=item A reference to a hash
 
-dump_names arg_hashref, ITEM..
+=item Dumping a large array or hash
 
-assign arg_hashref, VALUE..
+=item A reference to an SV which holds a C pointer
 
-return_clause arg_hashref, ITEM
+=item A reference to a subroutine
 
-switch_clause arg_hashref, NAMELEN, ITEMHASH, ITEM..
+=back
 
-params WHAT
+=item EXPORTS
 
-dogfood arg_hashref, ITEM..
+=item BUGS
 
-normalise_items args, default_type, seen_types, seen_items, ITEM..
+=item AUTHOR
 
-C_constant arg_hashref, ITEM.., name, type, value, macro, default, pre,
-post, def_pre, def_post, utf8, weight
+=item SEE ALSO
+
+=back
+
+=head2 Devel::SelfStubber - generate stubs for a SelfLoading module
 
 =over 4
 
-=item BUGS
+=item SYNOPSIS
 
-=item AUTHOR
+=item DESCRIPTION
 
 =back
 
-=head2 ExtUtils::Constant::Utils - helper functions for ExtUtils::Constant
+=head2 Devel::Size - Perl extension for finding the memory usage of Perl
+variables
 
 =over 4
 
@@ -17565,36 +18121,51 @@ post, def_pre, def_post, utf8, weight
 
 =item DESCRIPTION
 
-=item USAGE
+=item FUNCTIONS
 
-C_stringify NAME
+=over 4
+
+=item size($ref)
+
+=item total_size($ref)
 
 =back
 
-perl_stringify NAME
+=item EXPORT
+
+=item UNDERSTANDING MEMORY ALLOCATION
 
 =over 4
 
-=item AUTHOR
+=item The C library
+
+=item Perl
 
 =back
 
-=head2 ExtUtils::Constant::XS, ExtUtils::Constant::Base - base class for
-ExtUtils::Constant objects
+=item DANGERS
+
+=item Messages: texts originating from this module.
 
 =over 4
 
-=item SYNOPSIS
+=item Errors
 
-=item DESCRIPTION
+=item warnings
+
+=back
 
 =item BUGS
 
 =item AUTHOR
 
+=item COPYRIGHT
+
+=item SEE ALSO
+
 =back
 
-=head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
+=head2 Digest - Modules that calculate message digests
 
 =over 4
 
@@ -17602,14 +18173,17 @@ ExtUtils::Constant objects
 
 =item DESCRIPTION
 
-=item @EXPORT
+I<binary>, I<hex>, I<base64>
 
-=item FUNCTIONS
+=item OO INTERFACE
 
-xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
-ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
+$ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
+Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
+$ctx->add( $data ), $ctx->add( $chunk1, $chunk2, ... ), $ctx->addfile(
+$io_handle ), $ctx->add_bits( $data, $nbits ), $ctx->add_bits( $bitstring
+), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
 
-=item EXAMPLES
+=item Digest speed
 
 =item SEE ALSO
 
@@ -17617,7 +18191,7 @@ ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
 
 =back
 
-=head2 ExtUtils::Install - install files from here to there
+=head2 Digest::MD5 - Perl interface to the MD5 Algorithm
 
 =over 4
 
@@ -17625,70 +18199,87 @@ ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
 
 =item DESCRIPTION
 
-_chmod($$;$), _warnonce(@), _choke(@)
+=item FUNCTIONS
 
-=back
+md5($data,...), md5_hex($data,...), md5_base64($data,...)
 
-_move_file_at_boot( $file, $target, $moan  )
+=item METHODS
 
-_unlink_or_rename( $file, $tryhard, $installing )
+$md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
+$md5->addfile($io_handle), $md5->add_bits($data, $nbits),
+$md5->add_bits($bitstring), $md5->digest, $md5->hexdigest, $md5->b64digest
 
-=over 4
+=item EXAMPLES
 
-=item Functions
+=item SEE ALSO
 
-B<install>
+=item COPYRIGHT
+
+=item AUTHORS
 
 =back
 
-_get_install_skip
+=head2 Digest::SHA - Perl extension for SHA-1/224/256/384/512
 
-_have_write_access
+=over 4
 
-_can_write_dir(C<$dir>)
+=item SYNOPSIS
 
-_mkpath($dir,$show,$mode,$verbose,$fake)
+=item SYNOPSIS (HMAC-SHA)
 
-_copy($from,$to,$verbose,$fake)
+=item ABSTRACT
 
-_chdir($from)
+=item DESCRIPTION
 
-_do_cleanup
+=item NIST STATEMENT ON SHA-1
 
-install_rooted_file( $file ), install_rooted_dir( $dir )
+=item PADDING OF BASE64 DIGESTS
 
-forceunlink( $file, $tryhard )
+=item EXPORT
 
-directory_not_empty( $dir )
+=item EXPORTABLE FUNCTIONS
 
-B<install_default> I<DISCOURAGED>
+B<sha1($data, ...)>, B<sha224($data, ...)>, B<sha256($data, ...)>,
+B<sha384($data, ...)>, B<sha512($data, ...)>, B<sha1_hex($data, ...)>,
+B<sha224_hex($data, ...)>, B<sha256_hex($data, ...)>, B<sha384_hex($data,
+...)>, B<sha512_hex($data, ...)>, B<sha1_base64($data, ...)>,
+B<sha224_base64($data, ...)>, B<sha256_base64($data, ...)>,
+B<sha384_base64($data, ...)>, B<sha512_base64($data, ...)>, B<new($alg)>,
+B<reset($alg)>, B<hashsize>, B<algorithm>, B<clone>, B<add($data, ...)>,
+B<add_bits($data, $nbits)>, B<add_bits($bits)>, B<addfile(*FILE)>,
+B<addfile($filename [, $mode])>, B<dump($filename)>, B<load($filename)>,
+B<digest>, B<hexdigest>, B<b64digest>, B<hmac_sha1($data, $key)>,
+B<hmac_sha224($data, $key)>, B<hmac_sha256($data, $key)>,
+B<hmac_sha384($data, $key)>, B<hmac_sha512($data, $key)>,
+B<hmac_sha1_hex($data, $key)>, B<hmac_sha224_hex($data, $key)>,
+B<hmac_sha256_hex($data, $key)>, B<hmac_sha384_hex($data, $key)>,
+B<hmac_sha512_hex($data, $key)>, B<hmac_sha1_base64($data, $key)>,
+B<hmac_sha224_base64($data, $key)>, B<hmac_sha256_base64($data, $key)>,
+B<hmac_sha384_base64($data, $key)>, B<hmac_sha512_base64($data, $key)>
 
-B<uninstall>
+=item SEE ALSO
 
-inc_uninstall($filepath,$libdir,$verbose,$nonono,$ignore)
+=item AUTHOR
 
-run_filter($cmd,$src,$dest)
+=item ACKNOWLEDGMENTS
 
-B<pm_to_blib>
+=item COPYRIGHT AND LICENSE
 
-_autosplit
+=back
 
-_invokant
+=head2 Digest::base - Digest base class
 
 =over 4
 
-=item ENVIRONMENT
-
-B<PERL_INSTALL_ROOT>, B<EU_INSTALL_IGNORE_SKIP>,
-B<EU_INSTALL_SITE_SKIPFILE>
+=item SYNOPSIS
 
-=item AUTHOR
+=item DESCRIPTION
 
-=item LICENSE
+=item SEE ALSO
 
 =back
 
-=head2 ExtUtils::Installed - Inventory management of installed modules
+=head2 Digest::file - Calculate digests of files
 
 =over 4
 
@@ -17696,20 +18287,15 @@ B<EU_INSTALL_SITE_SKIPFILE>
 
 =item DESCRIPTION
 
-=item USAGE
-
-=item FUNCTIONS
-
-new(), modules(), files(), directories(), directory_tree(), validate(),
-packlist(), version()
-
-=item EXAMPLE
+digest_file( $file, $algorithm, [$arg,...] ), digest_file_hex( $file,
+$algorithm, [$arg,...] ), digest_file_base64( $file, $algorithm, [$arg,...]
+)
 
-=item AUTHOR
+=item SEE ALSO
 
 =back
 
-=head2 ExtUtils::Liblist - determine libraries to use and how to use them
+=head2 DirHandle - supply object methods for directory handles
 
 =over 4
 
@@ -17717,34 +18303,37 @@ packlist(), version()
 
 =item DESCRIPTION
 
-For static extensions, For dynamic extensions at build/link time, For
-dynamic extensions at load time
-
-=over 4
+=item NOTES
 
-=item EXTRALIBS
+=back
 
-=item LDLOADLIBS and LD_RUN_PATH
+=head2 Dumpvalue - provides screen dump of Perl data.
 
-=item BSLOADLIBS
+=over 4
 
-=back
+=item SYNOPSIS
 
-=item PORTABILITY
+=item DESCRIPTION
 
 =over 4
 
-=item VMS implementation
+=item Creation
 
-=item Win32 implementation
+C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
+C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
+C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
+stopDbSignal
 
-=back
+=item Methods
 
-=item SEE ALSO
+dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
+compactDump, veryCompact, set, get
 
 =back
 
-=head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
+=back
+
+=head2 DynaLoader - Dynamically load C libraries into Perl code
 
 =over 4
 
@@ -17752,88 +18341,134 @@ dynamic extensions at load time
 
 =item DESCRIPTION
 
+@dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
+@dl_modules, @dl_shared_objects, dl_error(), $dl_debug, dl_findfile(),
+dl_expandspec(), dl_load_file(), dl_unload_file(), dl_load_flags(),
+dl_find_symbol(), dl_find_symbol_anywhere(), dl_undef_symbols(),
+dl_install_xsub(), bootstrap()
+
+=item AUTHOR
+
 =back
 
-=head2 ExtUtils::MM_AIX - AIX specific subclass of ExtUtils::MM_Unix
+=head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
+Perl code
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
 =over 4
 
-=item Overridden methods
+=item Migration from C<DynaLoader>
 
-=back
+=item Backward compatible boilerplate
 
 =back
 
+=item Order of initialization: early load()
+
 =over 4
 
-=item AUTHOR
+=item The most hairy case
+
+=back
+
+=item DIAGNOSTICS
+
+C<Can't find '%s' symbol in %s>, C<Can't load '%s' for module %s: %s>,
+C<Undefined symbols present after loading %s: %s>,
+C<XSLoader::load('Your::Module', $Your::Module::VERSION)>
+
+=item LIMITATIONS
+
+=item BUGS
 
 =item SEE ALSO
 
+=item AUTHORS
+
+=item COPYRIGHT
+
 =back
 
-=head2 ExtUtils::MM_Any - Platform-agnostic MM methods
+=head2 Encode - character encodings
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
-
-=item METHODS
-
 =over 4
 
-=item Cross-platform helper methods
+=item Table of Contents
 
 =back
 
-=back
+=item DESCRIPTION
 
 =over 4
 
-=item Targets
+=item TERMINOLOGY
 
 =back
 
+=item PERL ENCODING API
+
+$octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
+$octets [, CHECK]), [$obj =] find_encoding(ENCODING), [$length =]
+from_to($octets, FROM_ENC, TO_ENC [, CHECK]), $octets =
+encode_utf8($string);, $string = decode_utf8($octets [, CHECK]);
+
 =over 4
 
-=item Init methods
+=item Listing available encodings
+
+=item Defining Aliases
+
+=item Finding IANA Character Set Registry names
 
 =back
 
-=over 4
+=item Encoding via PerlIO
 
-=item Tools
+=item Handling Malformed Data
 
-=back
+B<NOTE:> Not all encoding support this feature, I<CHECK> =
+Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1), I<CHECK> =
+Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode (I<CHECK> =
+Encode::FB_PERLQQ), HTML charref mode (I<CHECK> = Encode::FB_HTMLCREF), XML
+charref mode (I<CHECK> = Encode::FB_XMLCREF), The bitmask,
+Encode::LEAVE_SRC
 
-=over 4
+=item Defining Encodings
 
-=item File::Spec wrappers
+=item The UTF8 flag
 
-=back
+Goal #1:, Goal #2:, Goal #3:, Goal #4:
 
 =over 4
 
-=item Misc
+=item Messing with Perl's Internals
+
+is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
 
 =back
 
-=over 4
+=item UTF-8 vs. utf8 vs. UTF8
 
-=item AUTHOR
+=item SEE ALSO
+
+=item MAINTAINER
+
+=item COPYRIGHT
 
 =back
 
-=head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 Encode::Alias - alias definitions to encodings
 
 =over 4
 
@@ -17841,32 +18476,36 @@ ExtUtils::MakeMaker
 
 =item DESCRIPTION
 
+As a simple string, As a qr// compiled regular expression, e.g.:, As a code
+reference, e.g.:
+
+=over 4
+
+=item Alias overloading
+
 =back
 
-os_flavor
+=item SEE ALSO
 
-init_linker
+=back
 
-=head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 Encode::Byte - Single Byte Encodings
 
 =over 4
 
 =item SYNOPSIS
 
+=item ABSTRACT
+
 =item DESCRIPTION
 
-os_flavor
+=item SEE ALSO
 
 =back
 
-cflags
-
-replace_manpage_separator
-
-init_linker
+=head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
 
-=head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
+=head2 Encode::CN - China-based Chinese Encodings
 
 =over 4
 
@@ -17874,27 +18513,33 @@ init_linker
 
 =item DESCRIPTION
 
-=over 4
+=item NOTES
 
-=item Overridden methods
+=item BUGS
 
-os_flavor
+=item SEE ALSO
 
 =back
 
-=back
+=head2 Encode::CN::HZ -- internally used by Encode::CN
 
-B<replace_manpage_separator>
+=head2 Encode::Config -- internally used by Encode
+
+=head2 Encode::EBCDIC - EBCDIC Encodings
 
 =over 4
 
-=item AUTHOR
+=item SYNOPSIS
+
+=item ABSTRACT
+
+=item DESCRIPTION
 
 =item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MM_MacOS - once produced Makefiles for MacOS Classic
+=head2 Encode::Encoding - Encode Implementation Base Class
 
 =over 4
 
@@ -17902,31 +18547,37 @@ B<replace_manpage_separator>
 
 =item DESCRIPTION
 
-=back
+=over 4
 
-=head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=item Methods you should implement
 
-=over 4
+-E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
+-E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
 
-=item SYNOPSIS
+=item Other methods defined in Encode::Encodings
 
-=item DESCRIPTION
+-E<gt>name, -E<gt>mime_name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
+-E<gt>needs_lines()
+
+=item Example: Encode::ROT13
 
 =back
 
-os_flavor
+=item Why the heck Encode API is different?
 
-init_platform, platform_constants
+=over 4
 
-const_cccmd
+=item Compiled Encodings
 
-static_lib
+=back
 
-dynamic_lib
+=item SEE ALSO
 
-=head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+Scheme 1, Scheme 2, Other Schemes
+
+=back
+
+=head2 Encode::GSM0338 -- ESTI GSM 03.38 Encoding
 
 =over 4
 
@@ -17934,278 +18585,313 @@ ExtUtils::MakeMaker
 
 =item DESCRIPTION
 
-=item METHODS
-
-init_dist
+=item NOTES
 
-=back
+=item BUGS
 
-init_linker
+=item SEE ALSO
 
-os_flavor
+=back
 
-=head2 ExtUtils::MM_QNX - QNX specific subclass of ExtUtils::MM_Unix
+=head2 Encode::Guess -- Guesses encoding from data
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
-
-=over 4
-
-=item Overridden methods
+=item ABSTRACT
 
-=back
+=item DESCRIPTION
 
-=back
+Encode::Guess->set_suspects, Encode::Guess->add_suspects,
+Encode::decode("Guess" ...), Encode::Guess->guess($data),
+guess_encoding($data, [, I<list of suspects>])
 
-=over 4
+=item CAVEATS
 
-=item AUTHOR
+=item TO DO
 
 =item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
+=head2 Encode::JP - Japanese Encodings
 
 =over 4
 
 =item SYNOPSIS
 
+=item ABSTRACT
+
 =item DESCRIPTION
 
-=over 4
+=item Note on ISO-2022-JP(-1)?
 
-=item Overridden methods
+=item BUGS
 
-os_flavor
+=item SEE ALSO
 
 =back
 
-=back
+=head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
 
-B<replace_manpage_separator>
+=head2 Encode::JP::JIS7 -- internally used by Encode::JP
+
+=head2 Encode::KR - Korean Encodings
 
 =over 4
 
-=item AUTHOR
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item BUGS
 
 =item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
+=head2 Encode::KR::2022_KR -- internally used by Encode::KR
+
+=head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
 
 =over 4
 
 =item SYNOPSIS
 
+=item ABSTRACT
+
 =item DESCRIPTION
 
-=item METHODS
+=item BUGS
+
+=item SEE ALSO
 
 =back
 
-=over 4
+=head2 Encode::MIME::Name, Encode::MIME::NAME -- internally used by Encode
 
-=item Methods
+=over 4
 
-os_flavor
+=item SEE ALSO
 
 =back
 
-c_o (o)
+=head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
 
-cflags (o)
+=over 4
 
-const_cccmd (o)
+=item Overview
 
-const_config (o)
+=item How does it work?
 
-const_loadlibs (o)
+=item Line Buffering
 
-constants (o)
+=over 4
 
-depend (o)
+=item How can I tell whether my encoding fully supports PerlIO ?
 
-init_DEST
+=back
 
-init_dist
+=item SEE ALSO
 
-dist (o)
+=back
 
-dist_basics (o)
+=head2 Encode::Supported -- Encodings supported by Encode
 
-dist_ci (o)
+=over 4
 
-dist_core (o)
+=item DESCRIPTION
 
-B<dist_target>
+=over 4
 
-B<tardist_target>
+=item Encoding Names
 
-B<zipdist_target>
+=back
 
-B<tarfile_target>
+=item Supported Encodings
 
-zipfile_target
+=over 4
 
-uutardist_target
+=item Built-in Encodings
 
-shdist_target
+=item Encode::Unicode -- other Unicode encodings
 
-dlsyms (o)
+=item Encode::Byte -- Extended ASCII
 
-dynamic_bs (o)
+ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
+the Cyrillic world
 
-dynamic_lib (o)
+=item gsm0338 - Hentai Latin 1
 
-exescan
+gsm0338 support before 2.19
 
-extliblist
+=item CJK: Chinese, Japanese, Korean (Multibyte)
 
-find_perl
+Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
+Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
+Encode::JIS2K -- JIS X 0213 encodings via CPAN
 
-fixin
+=item Miscellaneous encodings
 
-force (o)
+Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
 
-guess_name
+=back
 
-has_link_code
+=item Unsupported encodings
 
-init_dirscan
+  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
+Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
+System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
+Various Mac encodings, (Mac) Indic encodings
 
-init_MANPODS
+=item Encoding vs. Charset -- terminology
 
-init_MAN1PODS
+=item Encoding Classification (by Anton Tagunov and Dan Kogai)
 
-init_MAN3PODS
+=over 4
 
-init_PM
+=item Microsoft-related naming mess
 
-init_DIRFILESEP
+KS_C_5601-1987, GB2312, Big5, Shift_JIS
 
-init_main
+=back
 
-init_others
+=item Glossary
 
-init_linker
+character repertoire, coded character set (CCS), character encoding scheme
+(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
+UTF-16
 
-init_lib2arch
+=item See Also
 
-init_PERL
+=item References
 
-init_platform, platform_constants
+ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
+RFC, UC, Unicode Glossary
 
-init_PERM
+=over 4
 
-init_xs
+=item Other Notable Sites
 
-install (o)
+czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
+"Introduction to i18n"
 
-installbin (o)
+=item Offline sources
 
-linkext (o)
+C<CJKV Information Processing> by Ken Lunde
 
-lsdir
+=back
 
-macro (o)
+=back
 
-makeaperl (o)
+=head2 Encode::Symbol - Symbol Encodings
 
-makefile (o)
+=over 4
 
-maybe_command
+=item SYNOPSIS
 
-needs_linking (o)
+=item ABSTRACT
 
-nicetext
+=item DESCRIPTION
 
-parse_abstract
+=item SEE ALSO
 
-parse_version
+=back
 
-pasthru (o)
+=head2 Encode::TW - Taiwan-based Chinese Encodings
 
-perl_script
+=over 4
 
-perldepend (o)
+=item SYNOPSIS
 
-perm_rw (o)
+=item DESCRIPTION
 
-perm_rwx (o)
+=item NOTES
 
-pm_to_blib
+=item BUGS
 
-post_constants (o)
+=item SEE ALSO
 
-post_initialize (o)
+=back
 
-postamble (o)
+=head2 Encode::Unicode -- Various Unicode Transformation Formats
 
-ppd
+=over 4
 
-prefixify
+=item SYNOPSIS
 
-processPL (o)
+=item ABSTRACT
 
-quote_paren
+L<http://www.unicode.org/glossary/> says:, Quick Reference
 
-replace_manpage_separator
+=item Size, Endianness, and BOM
 
-cd
+=over 4
 
-oneliner
+=item by size
 
-quote_literal
+=item by endianness
 
-escape_newlines
+BOM as integer when fetched in network byte order
 
-max_exec_len
+=back
 
-static (o)
+=item Surrogate Pairs
 
-static_lib (o)
+=item Error Checking
 
-staticmake (o)
+=item SEE ALSO
 
-subdir_x (o)
+=back
 
-subdirs (o)
+=head2 Encode::Unicode::UTF7 -- UTF-7 encoding
 
-test (o)
+=over 4
 
-test_via_harness (override)
+=item SYNOPSIS
 
-test_via_script (override)
+=item ABSTRACT
 
-tools_other (o)
+=item In Practice
 
-tool_xsubpp (o)
+=item SEE ALSO
 
-all_target
+=back
 
-top_targets (o)
+=head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
+encodings
 
-writedoc
+=over 4
 
-xs_c (o)
+=item SYNOPSIS
 
-xs_cpp (o)
+=item DESCRIPTION
 
-xs_o (o)
+As a simple string, As a qr// compiled regular expression, e.g.:, As a code
+reference, e.g.:
 
 =over 4
 
+=item Alias overloading
+
+=back
+
 =item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
+Internally used by Encode::??::ISO_2022_*
+
+=head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
+Encode::CN
+
+=head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
+Encode
+
+=head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
+Implementation Base Class
 
 =over 4
 
@@ -18215,376 +18901,380 @@ ExtUtils::MakeMaker
 
 =over 4
 
-=item Methods always loaded
+=item Methods you should implement
 
-wraplist
+-E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
+-E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
 
-=back
+=item Other methods defined in Encode::Encodings
+
+-E<gt>name, -E<gt>mime_name, -E<gt>renew, -E<gt>renewed, -E<gt>perlio_ok(),
+-E<gt>needs_lines()
+
+=item Example: Encode::ROT13
 
 =back
 
-=over 4
+=item Why the heck Encode API is different?
 
-=item Methods
+=over 4
 
-guess_name (override)
+=item Compiled Encodings
 
 =back
 
-find_perl (override)
+=item SEE ALSO
 
-maybe_command (override)
+Scheme 1, Scheme 2, Other Schemes
 
-pasthru (override)
+=back
 
-pm_to_blib (override)
+=head2 Encode::lib::Encode::GSM0338, Encode::GSM0338 -- ESTI GSM 03.38
+Encoding
 
-perl_script (override)
+=over 4
 
-replace_manpage_separator
+=item SYNOPSIS
 
-init_DEST
+=item DESCRIPTION
 
-init_DIRFILESEP
+=item NOTES
 
-init_main (override)
+=item BUGS
 
-init_others (override)
+=item SEE ALSO
 
-init_platform (override)
+=back
 
-platform_constants
+=head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
+data
 
-init_VERSION (override)
+=over 4
 
-constants (override)
+=item SYNOPSIS
 
-special_targets
+=item ABSTRACT
 
-cflags (override)
+=item DESCRIPTION
 
-const_cccmd (override)
+Encode::Guess->set_suspects, Encode::Guess->add_suspects,
+Encode::decode("Guess" ...), Encode::Guess->guess($data),
+guess_encoding($data, [, I<list of suspects>])
 
-tools_other (override)
+=item CAVEATS
 
-init_dist (override)
+=item TO DO
 
-c_o (override)
+=item SEE ALSO
 
-xs_c (override)
+=back
 
-xs_o (override)
+=head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
+Encode::JP::2022_JP*
 
-dlsyms (override)
+=head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
+by Encode::JP
 
-dynamic_lib (override)
+=head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
+used by Encode::KR
 
-static_lib (override)
+=head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
+and 'Q' header encoding
 
-extra_clean_files
+=over 4
 
-zipfile_target, tarfile_target, shdist_target
+=item SYNOPSIS
 
-install (override)
-
-perldepend (override)
+=item ABSTRACT
 
-makeaperl (override)
+=item DESCRIPTION
 
-nicetext (override)
+=item BUGS
 
-prefixify (override)
+=item SEE ALSO
 
-cd
+=back
 
-oneliner
+=head2 Encode::lib::Encode::MIME::Name, Encode::MIME::NAME -- internally
+used by Encode
 
-B<echo>
+=over 4
 
-quote_literal
+=item SEE ALSO
 
-escape_newlines
+=back
 
-max_exec_len
+=head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
+on Encode and PerlIO
 
-init_linker
+=over 4
 
-eliminate_macros
+=item Overview
 
-fixpath
+=item How does it work?
 
-os_flavor
+=item Line Buffering
 
 =over 4
 
-=item AUTHOR
+=item How can I tell whether my encoding fully supports PerlIO ?
 
 =back
 
-=head2 ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix
+=item SEE ALSO
 
-=over 4
+=back
 
-=item SYNOPSIS
+=head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
+supported by Encode
+
+=over 4
 
 =item DESCRIPTION
 
 =over 4
 
-=item Overridden methods
+=item Encoding Names
 
 =back
 
-=back
+=item Supported Encodings
 
 =over 4
 
-=item AUTHOR
-
-=item SEE ALSO
+=item Built-in Encodings
 
-=back
+=item Encode::Unicode -- other Unicode encodings
 
-=head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
-ExtUtils::MakeMaker
+=item Encode::Byte -- Extended ASCII
 
-=over 4
+ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
+the Cyrillic world
 
-=item SYNOPSIS
+=item gsm0338 - Hentai Latin 1
 
-=item DESCRIPTION
+gsm0338 support before 2.19
 
-=back
+=item CJK: Chinese, Japanese, Korean (Multibyte)
 
-=over 4
+Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
+Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
+Encode::JIS2K -- JIS X 0213 encodings via CPAN
 
-=item Overridden methods
+=item Miscellaneous encodings
 
-B<dlsyms>
+Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
 
 =back
 
-replace_manpage_separator
+=item Unsupported encodings
 
-B<maybe_command>
+  ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
+Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
+System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
+Various Mac encodings, (Mac) Indic encodings
 
-B<init_DIRFILESEP>
+=item Encoding vs. Charset -- terminology
 
-B<init_others>
+=item Encoding Classification (by Anton Tagunov and Dan Kogai)
 
-init_platform, platform_constants
+=over 4
 
-special_targets
+=item Microsoft-related naming mess
 
-static_lib
+KS_C_5601-1987, GB2312, Big5, Shift_JIS
 
-dynamic_lib
+=back
 
-extra_clean_files
+=item Glossary
 
-init_linker
+character repertoire, coded character set (CCS), character encoding scheme
+(CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
+UTF-16
 
-perl_script
+=item See Also
 
-xs_o
+=item References
 
-pasthru
+ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
+RFC, UC, Unicode Glossary
 
-oneliner
+=over 4
 
-cd
+=item Other Notable Sites
 
-max_exec_len
+czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
+"Introduction to i18n"
 
-os_flavor
+=item Offline sources
 
-=head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
+C<CJKV Information Processing> by Ken Lunde
 
-=over 4
+=back
 
-=item SYNOPSIS
+=back
 
-=item DESCRIPTION
+=head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
+encoding
 
 =over 4
 
-=item Overridden methods
+=item SYNOPSIS
 
-xs_c
+=item ABSTRACT
 
-=back
+=item In Practice
+
+=item SEE ALSO
 
 =back
 
-xs_cpp
+=head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
 
-xs_o
+=over 4
 
-max_exec_len
+=item SYNOPSIS
 
-os_flavor
+=item ABSTRACT
+
+=item Description
 
 =over 4
 
-=item AUTHOR
+=item Predefined Methods
 
-=back
+$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
+$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
+$e-E<gt>bytes([$encoding])
 
-=head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
+=item Example: base64 transcoder
 
-=over 4
+=item Operator Overloading
 
-=item SYNOPSIS
+=back
 
-=item DESCRIPTION
+=item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MakeMaker - Create a module Makefile
+=head2 Encodencoding, encoding - allows you to write your script in
+non-ascii or non-utf8
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
+=item ABSTRACT
 
 =over 4
 
-=item How To Write A Makefile.PL
+=item Literal Conversions
 
-=item Default Makefile Behaviour
+=item PerlIO layers for C<STD(IN|OUT)>
 
-=item make test
+=item Implicit upgrading for byte strings
 
-=item make testdb
+=item Side effects
 
-=item make install
+=item Side effects
 
-=item PREFIX and LIB attribute
+=item Side effects
 
-=item AFS users
+=back
 
-=item Static Linking of a new Perl Binary
+=item FEATURES THAT REQUIRE 5.8.1
 
-=item Determination of Perl Library and Installation Locations
+"NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
 
-=item Which architecture dependent directory?
+=item USAGE
 
-=item Using Attributes and Parameters
+use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
+I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
 
-ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
-CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
-EXCLUDE_EXT, EXE_FILES, EXTRA_META, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
-FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
-INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
-INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
-INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLSITESCRIPT,
-INSTALLVENDORARCH, INSTALLVENDORBIN, INSTALLVENDORLIB,
-INSTALLVENDORMAN1DIR, INSTALLVENDORMAN3DIR, INSTALLVENDORSCRIPT,
-INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR, INST_MAN3DIR, INST_SCRIPT,
-LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS, LICENSE, LINKTYPE, MAKE,
-MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
-NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT, OPTIMIZE, PERL,
-PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERLPREFIX,
-PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW, PERM_RWX, PL_FILES, PM, PMLIBDIRS,
-PM_FILTER, POLLUTE, PPM_INSTALL_EXEC, PPM_INSTALL_SCRIPT, PREFIX,
-PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT, PRINT_PREREQ, SITEPREFIX, SIGN,
-SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION, VERSION_FROM, VERSION_SYM,
-XS, XSOPT, XSPROTOARG, XS_VERSION
+=item The Filter Option
 
-=item Additional lowercase attributes
+=over 4
 
-clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
-test, tool_autosplit
+=item Filter-related changes at Encode version 1.87
 
-=item Overriding MakeMaker Methods
+=back
 
-=item The End Of Cargo Cult Programming
+=item CAVEATS
 
-C<< MAN3PODS => ' ' >>
+=over 4
 
-=item Hintsfile support
+=item NOT SCOPED
 
-=item Distribution Support
+=item DO NOT MIX MULTIPLE ENCODINGS
 
-   make distcheck,    make skipcheck,   make distclean,    make manifest, 
-  make distdir,   make disttest,    make tardist,    make dist,    make
-uutardist,    make shdist,    make zipdist,    make ci
+=item tr/// with ranges
 
-=item Module Meta-Data
+Legend of characters above
 
-=item Disabling an extension
+=back
 
-=item Other Handy Functions
+=item EXAMPLE - Greekperl
 
-prompt
+=item KNOWN PROBLEMS
 
-=back
+literals in regex that are longer than 127 bytes, EBCDIC, format, Thread
+safety
 
-=item ENVIRONMENT
+=over 4
 
-PERL_MM_OPT, PERL_MM_USE_DEFAULT, PERL_CORE
+=item The Logic of :locale
 
-=item SEE ALSO
+=back
 
-=item AUTHORS
+=item HISTORY
 
-=item LICENSE
+=item SEE ALSO
 
 =back
 
-=head2 ExtUtils::MakeMaker::Config - Wrapper around Config.pm
+=head2 Encoder, Encode::Encoder -- Object Oriented Encoder
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
-
-=back
+=item ABSTRACT
 
-=head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
-MakeMaker
+=item Description
 
 =over 4
 
-=item DESCRIPTION
+=item Predefined Methods
 
-=over 4
+$e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
+$e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
+$e-E<gt>bytes([$encoding])
 
-=item Module Installation
+=item Example: base64 transcoder
 
-How do I keep from installing man pages?, How do I use a module without
-installing it?
+=item Operator Overloading
 
-=item Philosophy and History
+=back
 
-Why not just use <insert other build config tool here>?, What is
-Module::Build and how does it relate to MakeMaker?, pure perl. no make, no
-shell commands, easier to customize, cleaner internals, less cruft
+=item SEE ALSO
 
-=item Module Writing
-
-How do I keep my $VERSION up to date without resetting it manually?, What's
-this F<META.yml> thing and how did it get in my F<MANIFEST>?!
-
-=item XS
+=back
 
-How to I prevent "object version X.XX does not match bootstrap parameter
-Y.YY" errors?, How do I make two or more XS files coexist in the same
-directory?
+=head2 English - use nice English (or awk) names for ugly punctuation
+variables
 
-=back
+=over 4
 
-=item PATCHING
+=item SYNOPSIS
 
-=item AUTHOR
+=item DESCRIPTION
 
-=item SEE ALSO
+=item PERFORMANCE
 
 =back
 
-=head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
+=head2 Env - perl module that imports environment variables as scalars or
+arrays
 
 =over 4
 
@@ -18592,22 +19282,13 @@ directory?
 
 =item DESCRIPTION
 
-=over 4
-
-=item The Mantra
-
-=item The Layout
-
-Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
-bin/
-
-=back
+=item LIMITATIONS
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 ExtUtils::MakeMaker::bytes - Version-agnostic bytes.pm
+=head2 Errno - System errno constants
 
 =over 4
 
@@ -18615,19 +19296,15 @@ bin/
 
 =item DESCRIPTION
 
-=back
-
-=head2 ExtUtils::MakeMaker::vmsish - Platform-agnostic vmsish.pm
-
-=over 4
+=item CAVEATS
 
-=item SYNOPSIS
+=item AUTHOR
 
-=item DESCRIPTION
+=item COPYRIGHT
 
 =back
 
-=head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
+=head2 Exporter - Implements default import method for modules
 
 =over 4
 
@@ -18637,60 +19314,57 @@ bin/
 
 =over 4
 
-=item Functions
-
-mkmanifest
-
-=back
+=item How to Export
 
-=back
+=item Selecting What To Export
 
-manifind
+=item How to Import
 
-manicheck
+C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
 
-filecheck
+=back
 
-fullcheck
+=item Advanced features
 
-skipcheck
+=over 4
 
-maniread
+=item Specialised Import Lists
 
-manicopy
+=item Exporting without using Exporter's import method
 
-maniadd
+=item Exporting without inheriting from Exporter
 
-=over 4
+=item Module Version Checking
 
-=item MANIFEST
+=item Managing Unknown Symbols
 
-=item MANIFEST.SKIP
+=item Tag Handling Utility Functions
 
-=item EXPORT_OK
+=item Generating combined tags
 
-=item GLOBAL VARIABLES
+=item C<AUTOLOAD>ed Constants
 
 =back
 
+=item Good Practices
+
 =over 4
 
-=item DIAGNOSTICS
+=item Declaring C<@EXPORT_OK> and Friends
 
-C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
-C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
+=item Playing Safe
 
-=item ENVIRONMENT
+=item What not to Export
 
-B<PERL_MM_MANIFEST_DEBUG>
+=back
 
 =item SEE ALSO
 
-=item AUTHOR
+=item LICENSE
 
 =back
 
-=head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
+=head2 Exporter::Heavy - Exporter guts
 
 =over 4
 
@@ -18698,11 +19372,9 @@ B<PERL_MM_MANIFEST_DEBUG>
 
 =item DESCRIPTION
 
-=item SEE ALSO
-
 =back
 
-=head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
+=head2 ExtUtils::CBuilder - Compile and link C code for Perl modules
 
 =over 4
 
@@ -18710,30 +19382,40 @@ B<PERL_MM_MANIFEST_DEBUG>
 
 =item DESCRIPTION
 
+=item METHODS
+
+new, have_compiler, compile, C<object_file>, C<include_dirs>,
+C<extra_compiler_flags>, link, lib_file, module_name, extra_linker_flags,
+link_executable, exe_file, object_file, lib_file, exe_file, prelink,
+need_prelink, extra_link_args_after_prelink
+
+=item TO DO
+
+=item HISTORY
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
 =back
 
-=head2 ExtUtils::Mksymlists - write linker options files for dynamic
-extension
+=head2 ExtUtils::CBuilder::Platform::Windows - Builder class for Windows
+platforms
 
 =over 4
 
-=item SYNOPSIS
-
 =item DESCRIPTION
 
-DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
-
 =item AUTHOR
 
-=item REVISION
-
-mkfh()
+=item SEE ALSO
 
 =back
 
-__find_relocations
-
-=head2 ExtUtils::Packlist - manage .packlist files
+=head2 ExtUtils::Command - utilities to replace common UNIX commands in
+Makefiles etc.
 
 =over 4
 
@@ -18741,41 +19423,47 @@ __find_relocations
 
 =item DESCRIPTION
 
-=item USAGE
+=over 4
 
 =item FUNCTIONS
 
-new(), read(), write(), validate(), packlist_file()
+=back
 
-=item EXAMPLE
+=back
 
-=item AUTHOR
+cat
 
-=back
+eqtime
 
-=head2 ExtUtils::ParseXS - converts Perl XS code into C code
+rm_rf
 
-=over 4
+rm_f
 
-=item SYNOPSIS
+touch
 
-=item EXPORT
+mv
 
-=item FUNCTIONS
+cp
 
-process_xs(), B<C++>, B<hiertype>, B<except>, B<typemap>, B<prototypes>,
-B<versioncheck>, B<linenumbers>, B<optimize>, B<inout>, B<argtypes>, B<s>,
-errors()
+chmod
 
-=item AUTHOR
+mkpath
 
-=item COPYRIGHT
+test_f
+
+test_d
+
+dos2unix
+
+=over 4
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 ExtUtils::testlib - add blib/* directories to @INC
+=head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
 
 =over 4
 
@@ -18783,9 +19471,19 @@ errors()
 
 =item DESCRIPTION
 
+B<test_harness>
+
 =back
 
-=head2 Fatal - replace functions with equivalents which succeed or die
+B<pod2man>
+
+B<warn_if_old_packlist>
+
+B<perllocal_install>
+
+B<uninstall>
+
+=head2 ExtUtils::Constant - generate XS code to import C header constants
 
 =over 4
 
@@ -18793,28 +19491,32 @@ errors()
 
 =item DESCRIPTION
 
-=item BUGS
+=item USAGE
 
-=item AUTHOR
+IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
+
+=item FUNCTIONS
 
 =back
 
-=head2 Fcntl - load the C Fcntl.h defines
+constant_types
 
-=over 4
+XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
 
-=item SYNOPSIS
+autoload PACKAGE, VERSION, AUTOLOADER
 
-=item DESCRIPTION
+WriteMakefileSnippet
 
-=item NOTE
+WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
+BREAKOUT_AT, NAMES, C_FH, C_FILE, XS_FH, XS_FILE, SUBNAME, C_SUBNAME
 
-=item EXPORTED SYMBOLS
+=over 4
+
+=item AUTHOR
 
 =back
 
-=head2 File::Basename - Parse file paths into directory, filename and
-suffix.
+=head2 ExtUtils::Constant::Base - base class for ExtUtils::Constant objects
 
 =over 4
 
@@ -18822,37 +19524,40 @@ suffix.
 
 =item DESCRIPTION
 
+=item USAGE
+
 =back
 
-C<fileparse> X<fileparse>
+header
 
-C<basename> X<basename> X<filename>
+memEQ_clause args_hashref
 
-C<dirname> X<dirname>
+dump_names arg_hashref, ITEM..
 
-C<fileparse_set_fstype> X<filesystem>
+assign arg_hashref, VALUE..
 
-=over 4
+return_clause arg_hashref, ITEM
 
-=item SEE ALSO
+switch_clause arg_hashref, NAMELEN, ITEMHASH, ITEM..
 
-=back
+params WHAT
 
-=head2 File::CheckTree, validate - run many filetest checks on a tree
+dogfood arg_hashref, ITEM..
 
-=over 4
+normalise_items args, default_type, seen_types, seen_items, ITEM..
 
-=item SYNOPSIS
+C_constant arg_hashref, ITEM.., name, type, value, macro, default, pre,
+post, def_pre, def_post, utf8, weight
 
-=item DESCRIPTION
+=over 4
 
-=item AUTHOR
+=item BUGS
 
-=item HISTORY
+=item AUTHOR
 
 =back
 
-=head2 File::Compare - Compare files or filehandles
+=head2 ExtUtils::Constant::Utils - helper functions for ExtUtils::Constant
 
 =over 4
 
@@ -18860,13 +19565,22 @@ C<fileparse_set_fstype> X<filesystem>
 
 =item DESCRIPTION
 
-=item RETURN
+=item USAGE
+
+C_stringify NAME
+
+=back
+
+perl_stringify NAME
+
+=over 4
 
 =item AUTHOR
 
 =back
 
-=head2 File::Copy - Copy files or filehandles
+=head2 ExtUtils::Constant::XS, ExtUtils::Constant::Base - base class for
+ExtUtils::Constant objects
 
 =over 4
 
@@ -18874,18 +19588,13 @@ C<fileparse_set_fstype> X<filesystem>
 
 =item DESCRIPTION
 
-copy X<copy> X<cp>, move X<move> X<mv> X<rename>, syscopy X<syscopy>,
-rmscopy($from,$to[,$date_flag]) X<rmscopy>
-
-=item RETURN
-
-=item NOTES
+=item BUGS
 
 =item AUTHOR
 
 =back
 
-=head2 File::DosGlob - DOS like globbing and then some
+=head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
 
 =over 4
 
@@ -18893,21 +19602,22 @@ rmscopy($from,$to[,$date_flag]) X<rmscopy>
 
 =item DESCRIPTION
 
-=item NOTES
-
-=item EXPORTS (by request only)
+=item @EXPORT
 
-=item BUGS
+=item FUNCTIONS
 
-=item AUTHOR
+xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
+ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
 
-=item HISTORY
+=item EXAMPLES
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 File::Find - Traverse a directory tree.
+=head2 ExtUtils::Install - install files from here to there
 
 =over 4
 
@@ -18915,71 +19625,70 @@ rmscopy($from,$to[,$date_flag]) X<rmscopy>
 
 =item DESCRIPTION
 
-B<find>, B<finddepth>
+_chmod($$;$), _warnonce(@), _choke(@)
 
-=over 4
+=back
 
-=item %options
+_move_file_at_boot( $file, $target, $moan  )
 
-C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
-C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
-C<untaint>, C<untaint_pattern>, C<untaint_skip>
+_unlink_or_rename( $file, $tryhard, $installing )
 
-=item The wanted function
+=over 4
 
-C<$File::Find::dir> is the current directory name,, C<$_> is the current
-filename within that directory, C<$File::Find::name> is the complete
-pathname to the file
+=item Functions
+
+B<install>
 
 =back
 
-=item WARNINGS
+_get_install_skip
 
-=item CAVEAT
+_have_write_access
 
-$dont_use_nlink, symlinks
+_can_write_dir(C<$dir>)
 
-=item NOTES
+_mkpath($dir,$show,$mode,$verbose,$fake)
 
-=item BUGS AND CAVEATS
+_copy($from,$to,$verbose,$fake)
 
-=item HISTORY
+_chdir($from)
 
-=back
+_do_cleanup
 
-=head2 File::Glob - Perl extension for BSD glob routine
+install_rooted_file( $file ), install_rooted_dir( $dir )
 
-=over 4
+forceunlink( $file, $tryhard )
 
-=item SYNOPSIS
+directory_not_empty( $dir )
 
-=item DESCRIPTION
+B<install_default> I<DISCOURAGED>
 
-=over 4
+B<uninstall>
 
-=item META CHARACTERS
+inc_uninstall($filepath,$libdir,$verbose,$nonono,$ignore)
 
-=item POSIX FLAGS
+run_filter($cmd,$src,$dest)
 
-C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
-C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
-C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
+B<pm_to_blib>
 
-=back
+_autosplit
 
-=item DIAGNOSTICS
+_invokant
 
-C<GLOB_NOSPACE>, C<GLOB_ABEND>
+=over 4
 
-=item NOTES
+=item ENVIRONMENT
 
-=item SEE ALSO
+B<PERL_INSTALL_ROOT>, B<EU_INSTALL_IGNORE_SKIP>,
+B<EU_INSTALL_SITE_SKIPFILE>
 
 =item AUTHOR
 
+=item LICENSE
+
 =back
 
-=head2 File::GlobMapper - Extend File Glob to Allow Input and Output Files
+=head2 ExtUtils::Installed - Inventory management of installed modules
 
 =over 4
 
@@ -18987,47 +19696,55 @@ C<GLOB_NOSPACE>, C<GLOB_ABEND>
 
 =item DESCRIPTION
 
-This code is a work in progress, There are known bugs, The interface
-defined here is tentative, There are portability issues, Do not use in
-production code, Consider yourself warned!
+=item USAGE
+
+=item FUNCTIONS
+
+new(), modules(), files(), directories(), directory_tree(), validate(),
+packlist(), version()
+
+=item EXAMPLE
+
+=item AUTHOR
+
+=back
+
+=head2 ExtUtils::Liblist - determine libraries to use and how to use them
 
 =over 4
 
-=item Behind The Scenes
+=item SYNOPSIS
 
-=item Limitations
+=item DESCRIPTION
 
-=item Input File Glob
+For static extensions, For dynamic extensions at build/link time, For
+dynamic extensions at load time
 
-B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
+=over 4
 
-=item Output File Glob
+=item EXTRALIBS
 
-"*", #1
+=item LDLOADLIBS and LD_RUN_PATH
 
-=item Returned Data
+=item BSLOADLIBS
 
 =back
 
-=item EXAMPLES
+=item PORTABILITY
 
 =over 4
 
-=item A Rename script
+=item VMS implementation
 
-=item A few example globmaps
+=item Win32 implementation
 
 =back
 
 =item SEE ALSO
 
-=item AUTHOR
-
-=item COPYRIGHT AND LICENSE
-
 =back
 
-=head2 File::Path - create or remove directory trees
+=head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
 
 =over 4
 
@@ -19035,13 +19752,9 @@ B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
 
 =item DESCRIPTION
 
-=item DIAGNOSTICS
-
-=item AUTHORS
-
 =back
 
-=head2 File::Spec - portably perform operations on file names
+=head2 ExtUtils::MM_AIX - AIX specific subclass of ExtUtils::MM_Unix
 
 =over 4
 
@@ -19049,21 +19762,23 @@ B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
 
 =item DESCRIPTION
 
-=item METHODS
+=over 4
+
+=item Overridden methods
 
-canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
-no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
-splitdir, catpath(), abs2rel, rel2abs()
+=back
 
-=item SEE ALSO
+=back
+
+=over 4
 
 =item AUTHOR
 
-=item COPYRIGHT
+=item SEE ALSO
 
 =back
 
-=head2 File::Spec::Cygwin - methods for Cygwin file specs
+=head2 ExtUtils::MM_Any - Platform-agnostic MM methods
 
 =over 4
 
@@ -19071,63 +19786,69 @@ splitdir, catpath(), abs2rel, rel2abs()
 
 =item DESCRIPTION
 
-=back
+=item METHODS
 
-canonpath
+=over 4
 
-file_name_is_absolute
+=item Cross-platform helper methods
 
-tmpdir (override)
+=back
+
+=back
 
 =over 4
 
-=item COPYRIGHT
+=item Targets
 
 =back
 
-=head2 File::Spec::Epoc - methods for Epoc file specs
-
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
+=item Init methods
 
 =back
 
-canonpath()
-
 =over 4
 
-=item AUTHOR
+=item Tools
 
-=item COPYRIGHT
+=back
 
-=item SEE ALSO
+=over 4
 
-=back
+=item File::Spec wrappers
 
-=head2 File::Spec::Functions - portably perform operations on file names
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item Misc
 
-=item DESCRIPTION
+=back
 
 =over 4
 
-=item Exports
+=item AUTHOR
 
 =back
 
-=item COPYRIGHT
+=head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
-=item SEE ALSO
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =back
 
-=head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
+os_flavor
+
+init_linker
+
+=head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
 =over 4
 
@@ -19135,51 +19856,45 @@ canonpath()
 
 =item DESCRIPTION
 
-=item METHODS
-
-canonpath
+os_flavor
 
 =back
 
-catdir()
-
-catfile
+cflags
 
-curdir
+replace_manpage_separator
 
-devnull
+init_linker
 
-rootdir
+=head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
 
-tmpdir
+=over 4
 
-updir
+=item SYNOPSIS
 
-file_name_is_absolute
+=item DESCRIPTION
 
-path
+=over 4
 
-splitpath
+=item Overridden methods
 
-splitdir
+os_flavor
 
-catpath
+=back
 
-abs2rel
+=back
 
-rel2abs
+B<replace_manpage_separator>
 
 =over 4
 
-=item AUTHORS
-
-=item COPYRIGHT
+=item AUTHOR
 
 =item SEE ALSO
 
 =back
 
-=head2 File::Spec::OS2 - methods for OS/2 file specs
+=head2 ExtUtils::MM_MacOS - once produced Makefiles for MacOS Classic
 
 =over 4
 
@@ -19187,14 +19902,10 @@ rel2abs
 
 =item DESCRIPTION
 
-tmpdir, splitpath
-
-=item COPYRIGHT
-
 =back
 
-=head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
-modules
+=head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
 =over 4
 
@@ -19202,55 +19913,38 @@ modules
 
 =item DESCRIPTION
 
-=item METHODS
-
-canonpath()
-
 =back
 
-catdir()
-
-catfile
+os_flavor
 
-curdir
+init_platform, platform_constants
 
-devnull
+const_cccmd
 
-rootdir
+static_lib
 
-tmpdir
+dynamic_lib
 
-updir
-
-no_upwards
-
-case_tolerant
-
-file_name_is_absolute
-
-path
-
-join
-
-splitpath
+=head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
-splitdir
+=over 4
 
-catpath()
+=item SYNOPSIS
 
-abs2rel
+=item DESCRIPTION
 
-rel2abs()
+=item METHODS
 
-=over 4
+init_dist
 
-=item COPYRIGHT
+=back
 
-=item SEE ALSO
+init_linker
 
-=back
+os_flavor
 
-=head2 File::Spec::VMS - methods for VMS file specs
+=head2 ExtUtils::MM_QNX - QNX specific subclass of ExtUtils::MM_Unix
 
 =over 4
 
@@ -19258,49 +19952,51 @@ rel2abs()
 
 =item DESCRIPTION
 
-canonpath (override)
+=over 4
+
+=item Overridden methods
 
 =back
 
-catdir (override)
+=back
 
-catfile (override)
+=over 4
 
-curdir (override)
+=item AUTHOR
 
-devnull (override)
+=item SEE ALSO
 
-rootdir (override)
+=back
 
-tmpdir (override)
+=head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
 
-updir (override)
+=over 4
 
-case_tolerant (override)
+=item SYNOPSIS
 
-path (override)
+=item DESCRIPTION
 
-file_name_is_absolute (override)
+=over 4
 
-splitpath (override)
+=item Overridden methods
 
-splitdir (override)
+os_flavor
 
-catpath (override)
+=back
 
-abs2rel (override)
+=back
 
-rel2abs (override)
+B<replace_manpage_separator>
 
 =over 4
 
-=item COPYRIGHT
+=item AUTHOR
 
 =item SEE ALSO
 
 =back
 
-=head2 File::Spec::Win32 - methods for Win32 file specs
+=head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
 
 =over 4
 
@@ -19308,199 +20004,206 @@ rel2abs (override)
 
 =item DESCRIPTION
 
-devnull
+=item METHODS
 
 =back
 
-tmpdir
+=over 4
 
-catfile
+=item Methods
 
-canonpath
+os_flavor
 
-splitpath
+=back
 
-splitdir
+c_o (o)
 
-catpath
+cflags (o)
 
-=over 4
+const_cccmd (o)
 
-=item Note For File::Spec::Win32 Maintainers
+const_config (o)
 
-=back
+const_loadlibs (o)
 
-=over 4
+constants (o)
 
-=item COPYRIGHT
+depend (o)
 
-=item SEE ALSO
+init_DEST
 
-=back
+init_dist
 
-=head2 File::Temp - return name and handle of a temporary file safely
+dist (o)
 
-=over 4
+dist_basics (o)
 
-=item PORTABILITY
+dist_ci (o)
 
-=item SYNOPSIS
+dist_core (o)
 
-=item DESCRIPTION
+B<dist_target>
 
-=back
+B<tardist_target>
 
-=over 4
+B<zipdist_target>
 
-=item OBJECT-ORIENTED INTERFACE
+B<tarfile_target>
 
-B<new>
+zipfile_target
 
-=back
+uutardist_target
 
-B<filename>
+shdist_target
 
-B<unlink_on_destroy>
+dlsyms (o)
 
-B<DESTROY>
+dynamic_bs (o)
 
-=over 4
+dynamic_lib (o)
 
-=item FUNCTIONS
+exescan
 
-B<tempfile>
+extliblist
 
-=back
+find_perl
 
-B<tempdir>
+fixin
 
-=over 4
+force (o)
 
-=item MKTEMP FUNCTIONS
+guess_name
 
-B<mkstemp>
+has_link_code
 
-=back
+init_dirscan
 
-B<mkstemps>
+init_MANPODS
 
-B<mkdtemp>
+init_MAN1PODS
 
-B<mktemp>
+init_MAN3PODS
 
-=over 4
+init_PM
 
-=item POSIX FUNCTIONS
+init_DIRFILESEP
 
-B<tmpnam>
+init_main
 
-=back
+init_others
 
-B<tmpfile>
+init_linker
 
-=over 4
+init_lib2arch
 
-=item ADDITIONAL FUNCTIONS
+init_PERL
 
-B<tempnam>
+init_platform, platform_constants
 
-=back
+init_PERM
 
-=over 4
+init_xs
 
-=item UTILITY FUNCTIONS
+install (o)
 
-B<unlink0>
+installbin (o)
 
-=back
+linkext (o)
 
-B<cmpstat>
+lsdir
 
-B<unlink1>
+macro (o)
 
-B<cleanup>
+makeaperl (o)
 
-=over 4
+makefile (o)
 
-=item PACKAGE VARIABLES
+maybe_command
 
-B<safe_level>, STANDARD, MEDIUM, HIGH
+needs_linking (o)
 
-=back
+parse_abstract
 
-TopSystemUID
+parse_version
 
-B<$KEEP_ALL>, B<$DEBUG>
+pasthru (o)
 
-=over 4
+perl_script
 
-=item WARNING
+perldepend (o)
 
-=over 4
+perm_rw (o)
 
-=item Temporary files and NFS
+perm_rwx (o)
 
-=item Forking
+pm_to_blib
 
-=item BINMODE
+post_constants (o)
 
-=back
+post_initialize (o)
 
-=item HISTORY
+postamble (o)
 
-=item SEE ALSO
+ppd
 
-=item AUTHOR
+prefixify
 
-=back
+processPL (o)
 
-=head2 File::stat - by-name interface to Perl's built-in stat() functions
+quote_paren
 
-=over 4
+replace_manpage_separator
 
-=item SYNOPSIS
+cd
 
-=item DESCRIPTION
+oneliner
 
-=item BUGS
+quote_literal
 
-=item NOTE
+escape_newlines
 
-=item AUTHOR
+max_exec_len
 
-=back
+static (o)
 
-=head2 FileCache - keep more files open than the system permits
+static_lib (o)
 
-=over 4
+staticmake (o)
 
-=item SYNOPSIS
+subdir_x (o)
 
-=item DESCRIPTION
+subdirs (o)
 
-cacheout EXPR, cacheout MODE, EXPR
+test (o)
 
-=item CAVEATS
+test_via_harness (override)
 
-=item BUGS
+test_via_script (override)
 
-=back
+tools_other (o)
 
-=head2 FileHandle - supply object methods for filehandles
+tool_xsubpp (o)
 
-=over 4
+all_target
 
-=item SYNOPSIS
+top_targets (o)
 
-=item DESCRIPTION
+writedoc
 
-$fh->print, $fh->printf, $fh->getline, $fh->getlines
+xs_c (o)
+
+xs_cpp (o)
+
+xs_o (o)
+
+=over 4
 
 =item SEE ALSO
 
 =back
 
-=head2 Filter::Simple - Simplified source filtering
+=head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
 =over 4
 
@@ -19510,120 +20213,113 @@ $fh->print, $fh->printf, $fh->getline, $fh->getlines
 
 =over 4
 
-=item The Problem
-
-=item A Solution
+=item Methods always loaded
 
-=item Disabling or changing <no> behaviour
+wraplist
 
-=item All-in-one interface
+=back
 
-=item Filtering only specific components of source code
+=back
 
-C<"code">, C<"code_no_comments">, C<"executable">,
-C<"executable_no_comments">, C<"quotelike">, C<"string">, C<"regex">,
-C<"all">
+=over 4
 
-=item Filtering only the code parts of source code
+=item Methods
 
-Most source code ceases to be grammatically correct when it is broken up
-into the pieces between string literals and regexes. So the C<'code'>
-and C<'code_no_comments'> component filter behave slightly differently
-from the other partial filters described in the previous section.
+guess_name (override)
 
-=item Using Filter::Simple with an explicit C<import> subroutine
+=back
 
-=item Using Filter::Simple and Exporter together
+find_perl (override)
 
-=item How it works
+maybe_command (override)
 
-=back
+pasthru (override)
 
-=item AUTHOR
+pm_to_blib (override)
 
-=item COPYRIGHT
+perl_script (override)
 
-=back
+replace_manpage_separator
 
-=head2 Filter::Util::Call - Perl Source Filter Utility Module
+init_DEST
 
-=over 4
+init_DIRFILESEP
 
-=item SYNOPSIS
+init_main (override)
 
-=item DESCRIPTION
+init_others (override)
 
-=over 4
+init_platform (override)
 
-=item B<use Filter::Util::Call>
+platform_constants
 
-=item B<import()>
+init_VERSION (override)
 
-=item B<filter() and anonymous sub>
+constants (override)
 
-B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
+special_targets
 
-=back
+cflags (override)
 
-=item EXAMPLES
+const_cccmd (override)
 
-=over 4
+tools_other (override)
 
-=item Example 1: A simple filter.
+init_dist (override)
 
-=item Example 2: Using the context
+c_o (override)
 
-=item Example 3: Using the context within the filter
+xs_c (override)
 
-=item Example 4: Using filter_del
+xs_o (override)
 
-=back
+dlsyms (override)
 
-=item Filter::Simple
+dynamic_lib (override)
 
-=item AUTHOR
+static_lib (override)
 
-=item DATE
+extra_clean_files
 
-=back
+zipfile_target, tarfile_target, shdist_target
 
-=head2 FindBin - Locate directory of original perl script
+install (override)
 
-=over 4
+perldepend (override)
 
-=item SYNOPSIS
+makeaperl (override)
 
-=item DESCRIPTION
+maketext_filter (override)
 
-=item EXPORTABLE VARIABLES
+prefixify (override)
 
-=item KNOWN ISSUES
+cd
 
-=item KNOWN BUGS
+oneliner
 
-=item AUTHORS
+B<echo>
 
-=item COPYRIGHT
+quote_literal
 
-=back
+escape_newlines
 
-=head2 GDBM_File - Perl5 access to the gdbm library.
+max_exec_len
 
-=over 4
+init_linker
 
-=item SYNOPSIS
+eliminate_macros
 
-=item DESCRIPTION
+fixpath
 
-=item AVAILABILITY
+os_flavor
 
-=item BUGS
+=over 4
 
-=item SEE ALSO
+=item AUTHOR
 
 =back
 
-=head2 Getopt::Long - Extended processing of command line options
+=head2 ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix
 
 =over 4
 
@@ -19631,107 +20327,110 @@ B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
 
 =item DESCRIPTION
 
-=item Command Line Options, an Introduction
+=over 4
 
-=item Getting Started with Getopt::Long
+=item Overridden methods
+
+=back
+
+=back
 
 =over 4
 
-=item Simple options
+=item AUTHOR
 
-=item A little bit less simple options
+=item SEE ALSO
 
-=item Mixing command line option with other arguments
+=back
 
-=item Options with values
+=head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
+ExtUtils::MakeMaker
 
-=item Options with multiple values
+=over 4
 
-=item Options with hash values
+=item SYNOPSIS
 
-=item User-defined subroutines to handle options
+=item DESCRIPTION
 
-=item Options with multiple names
+=back
 
-=item Case and abbreviations
+=over 4
 
-=item Summary of Option Specifications
+=item Overridden methods
 
-!, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
-+ [ I<desttype> ]
+B<dlsyms>
 
 =back
 
-=item Advanced Possibilities
+replace_manpage_separator
 
-=over 4
+B<maybe_command>
 
-=item Object oriented interface
+B<init_DIRFILESEP>
 
-=item Thread Safety
+B<init_others>
 
-=item Documentation and help texts
+init_platform, platform_constants
 
-=item Storing option values in a hash
+special_targets
 
-=item Bundling
+static_lib
 
-=item The lonesome dash
+dynamic_lib
 
-=item Argument callback
+extra_clean_files
 
-=back
+init_linker
 
-=item Configuring Getopt::Long
+perl_script
 
-default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
-require_order, permute, bundling (default: disabled), bundling_override
-(default: disabled), ignore_case  (default: enabled), ignore_case_always
-(default: disabled), auto_version (default:disabled), auto_help
-(default:disabled), pass_through (default: disabled), prefix,
-prefix_pattern, long_prefix_pattern, debug (default: disabled)
+xs_o
 
-=item Exportable Methods
+pasthru
 
-VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
+oneliner
 
-=item Return values and Errors
+cd
 
-=item Legacy
+max_exec_len
 
-=over 4
+os_flavor
 
-=item Default destinations
+cflags
 
-=item Alternative option starters
+=head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
 
-=item Configuration variables
+=over 4
 
-=back
+=item SYNOPSIS
 
-=item Trouble Shooting
+=item DESCRIPTION
 
 =over 4
 
-=item GetOptions does not return a false result when an option is not
-supplied
-
-=item GetOptions does not split the command line correctly
+=item Overridden methods
 
-=item Undefined subroutine &main::GetOptions called
+xs_c
 
-=item How do I put a "-?" option into a Getopt::Long?
+=back
 
 =back
 
-=item AUTHOR
+xs_cpp
 
-=item COPYRIGHT AND DISCLAIMER
+xs_o
+
+max_exec_len
+
+os_flavor
+
+=over 4
+
+=item AUTHOR
 
 =back
 
-=head2 Getopt::Std, getopt, getopts - Process single-character switches
-with switch clustering
+=head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
 
 =over 4
 
@@ -19739,11 +20438,9 @@ with switch clustering
 
 =item DESCRIPTION
 
-=item C<--help> and C<--version>
-
 =back
 
-=head2 Hash::Util - A selection of general-utility hash subroutines
+=head2 ExtUtils::MakeMaker - Create a module Makefile
 
 =over 4
 
@@ -19753,155 +20450,189 @@ with switch clustering
 
 =over 4
 
-=item Field hashes
-
-=item Restricted hashes
-
-B<lock_keys>, B<unlock_keys>
+=item How To Write A Makefile.PL
 
-=back
+=item Default Makefile Behaviour
 
-=back
+=item make test
 
-B<lock_keys_plus>
+=item make testdb
 
-B<lock_value>, B<unlock_value>
+=item make install
 
-B<lock_hash>, B<unlock_hash>
+=item INSTALL_BASE
 
-B<lock_hash_recurse>, B<unlock_hash_recurse>
+=item PREFIX and LIB attribute
 
-B<hash_unlocked>
+=item AFS users
 
-b<legal_keys>, B<hidden_keys>, B<all_keys>, B<hash_seed>
+=item Static Linking of a new Perl Binary
 
-B<hv_store>
+=item Determination of Perl Library and Installation Locations
 
-=over 4
+=item Which architecture dependent directory?
 
-=item Operating on references to hashes.
+=item Using Attributes and Parameters
 
-lock_ref_keys, unlock_ref_keys, lock_ref_keys_plus, lock_ref_value,
-unlock_ref_value, lock_hashref, unlock_hashref, lock_hashref_recurse,
-unlock_hashref_recurse, hash_ref_unlocked, legal_ref_keys, hidden_ref_keys
+ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
+CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
+EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
+FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
+INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
+INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
+INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLSITESCRIPT,
+INSTALLVENDORARCH, INSTALLVENDORBIN, INSTALLVENDORLIB,
+INSTALLVENDORMAN1DIR, INSTALLVENDORMAN3DIR, INSTALLVENDORSCRIPT,
+INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR, INST_MAN3DIR, INST_SCRIPT,
+LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS, LICENSE, LINKTYPE, MAKE,
+MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
+NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT, OPTIMIZE, PERL,
+PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERLPREFIX,
+PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW, PERM_RWX, PL_FILES, PM, PMLIBDIRS,
+PM_FILTER, POLLUTE, PPM_INSTALL_EXEC, PPM_INSTALL_SCRIPT, PREFIX,
+PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT, PRINT_PREREQ, SITEPREFIX, SIGN,
+SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION, VERSION_FROM, VERSION_SYM,
+XS, XSOPT, XSPROTOARG, XS_VERSION
 
-=back
+=item Additional lowercase attributes
 
-=over 4
+clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
+test, tool_autosplit
 
-=item CAVEATS
+=item Overriding MakeMaker Methods
 
-=item BUGS
+=item The End Of Cargo Cult Programming
 
-=item AUTHOR
+C<< MAN3PODS => ' ' >>
 
-=item SEE ALSO
+=item Hintsfile support
 
-=back
+=item Distribution Support
 
-=head2 Hash::Util::FieldHash - Associate references with data
+   make distcheck,    make skipcheck,   make distclean,    make manifest, 
+  make distdir,   make disttest,    make tardist,    make dist,    make
+uutardist,    make shdist,    make zipdist,    make ci
 
-=over 4
+=item Module Meta-Data
 
-=item SYNOPSIS
+=item Disabling an extension
 
-=item Functions
+=item Other Handy Functions
 
-fieldhash, fieldhashes
+prompt
 
-=item Description
+=back
 
-=over 4
+=item ENVIRONMENT
 
-=item Features
+PERL_MM_OPT, PERL_MM_USE_DEFAULT, PERL_CORE
 
-Key exchange, Thread support, Garbage collection
+=item SEE ALSO
 
-=item Rationale
+=item AUTHORS
 
-Stringification, Thread Dependency, Garbage Collection
+=item LICENSE
 
-=item How to use
+=back
 
-=item Examples
+=head2 ExtUtils::MakeMaker::Config - Wrapper around Config.pm
 
-=item Garbage-Collected Hashes
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =back
 
-=item Guts
+=head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
+MakeMaker
+
+=over 4
+
+=item DESCRIPTION
 
 =over 4
 
-=item The C<PERL_MAGIC_uvar> interface for hashes
+=item Module Installation
 
-=item Weakrefs call uvar magic
+How do I install a module into my home directory?, How do I get MakeMaker
+and Module::Build to install to the same place?, How do I keep from
+installing man pages?, How do I use a module without installing it?, PREFIX
+vs INSTALL_BASE from Module::Build::Cookbook
 
-=item How field hashes work
+=item Philosophy and History
 
-=item Internal function Hash::Util::FieldHash::_fieldhash
+Why not just use <insert other build config tool here>?, What is
+Module::Build and how does it relate to MakeMaker?, pure perl. no make, no
+shell commands, easier to customize, cleaner internals, less cruft
+
+=item Module Writing
+
+How do I keep my $VERSION up to date without resetting it manually?, What's
+this F<META.yml> thing and how did it get in my F<MANIFEST>?!, How do I
+delete everything not in my F<MANIFEST>?
+
+=item XS
+
+How to I prevent "object version X.XX does not match bootstrap parameter
+Y.YY" errors?, How do I make two or more XS files coexist in the same
+directory?
 
 =back
 
+=item PATCHING
+
 =item AUTHOR
 
-=item COPYRIGHT AND LICENSE
+=item SEE ALSO
 
 =back
 
-=head2 Hash::Util::FieldHash::lib::Hash::Util::FieldHash,
-Hash::Util::FieldHash - Associate references with data
+=head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
 
 =over 4
 
 =item SYNOPSIS
 
-=item Functions
-
-fieldhash, fieldhashes
-
-=item Description
+=item DESCRIPTION
 
 =over 4
 
-=item Features
-
-Key exchange, Thread support, Garbage collection
-
-=item Rationale
+=item The Mantra
 
-Stringification, Thread Dependency, Garbage Collection
+=item The Layout
 
-=item How to use
+Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
+bin/
 
-=item Examples
+=back
 
-=item Garbage-Collected Hashes
+=item SEE ALSO
 
 =back
 
-=item Guts
+=head2 ExtUtils::MakeMaker::bytes - Version-agnostic bytes.pm
 
 =over 4
 
-=item The C<PERL_MAGIC_uvar> interface for hashes
+=item SYNOPSIS
 
-=item Weakrefs call uvar magic
+=item DESCRIPTION
 
-=item How field hashes work
+=back
 
-=item Internal function Hash::Util::FieldHash::_fieldhash
+=head2 ExtUtils::MakeMaker::vmsish - Platform-agnostic vmsish.pm
 
-=back
+=over 4
 
-=item AUTHOR
+=item SYNOPSIS
 
-=item COPYRIGHT AND LICENSE
+=item DESCRIPTION
 
 =back
 
-=head2 Hash::Utilib::Hash::Util, Hash::Util - A selection of
-general-utility hash subroutines
+=head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
 
 =over 4
 
@@ -19911,54 +20642,62 @@ general-utility hash subroutines
 
 =over 4
 
-=item Field hashes
-
-=item Restricted hashes
+=item Functions
 
-B<lock_keys>, B<unlock_keys>
+mkmanifest
 
 =back
 
 =back
 
-B<lock_keys_plus>
+manifind
 
-B<lock_value>, B<unlock_value>
+manicheck
 
-B<lock_hash>, B<unlock_hash>
+filecheck
 
-B<lock_hash_recurse>, B<unlock_hash_recurse>
+fullcheck
 
-B<hash_unlocked>
+skipcheck
 
-b<legal_keys>, B<hidden_keys>, B<all_keys>, B<hash_seed>
+maniread
 
-B<hv_store>
+manicopy
+
+maniadd
 
 =over 4
 
-=item Operating on references to hashes.
+=item MANIFEST
 
-lock_ref_keys, unlock_ref_keys, lock_ref_keys_plus, lock_ref_value,
-unlock_ref_value, lock_hashref, unlock_hashref, lock_hashref_recurse,
-unlock_hashref_recurse, hash_ref_unlocked, legal_ref_keys, hidden_ref_keys
+=item MANIFEST.SKIP
+
+#!include_default, #!include /Path/to/another/manifest.skip
+
+=item EXPORT_OK
+
+=item GLOBAL VARIABLES
 
 =back
 
 =over 4
 
-=item CAVEATS
+=item DIAGNOSTICS
 
-=item BUGS
+C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
+C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
 
-=item AUTHOR
+=item ENVIRONMENT
+
+B<PERL_MM_MANIFEST_DEBUG>
 
 =item SEE ALSO
 
+=item AUTHOR
+
 =back
 
-=head2 I18N::Collate - compare 8-bit scalar data according to the current
-locale
+=head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
 
 =over 4
 
@@ -19966,10 +20705,11 @@ locale
 
 =item DESCRIPTION
 
+=item SEE ALSO
+
 =back
 
-=head2 I18N::LangTags - functions for dealing with RFC3066-style language
-tags
+=head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
 
 =over 4
 
@@ -19979,64 +20719,94 @@ tags
 
 =back
 
-the function is_language_tag($lang1)
+=head2 ExtUtils::Mksymlists - write linker options files for dynamic
+extension
 
-the function extract_language_tags($whatever)
+=over 4
 
-the function same_language_tag($lang1, $lang2)
+=item SYNOPSIS
 
-the function similarity_language_tag($lang1, $lang2)
+=item DESCRIPTION
 
-the function is_dialect_of($lang1, $lang2)
+DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
 
-the function super_languages($lang1)
+=item AUTHOR
 
-the function locale2language_tag($locale_identifier)
+=item REVISION
 
-the function encode_language_tag($lang1)
+mkfh()
 
-the function alternate_language_tags($lang1)
+=back
 
-the function @langs = panic_languages(@accept_languages)
+__find_relocations
 
-the function implicate_supers( ...languages... ), the function
-implicate_supers_strictly( ...languages... )
+=head2 ExtUtils::Packlist - manage .packlist files
 
 =over 4
 
-=item ABOUT LOWERCASING
+=item SYNOPSIS
 
-=item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
+=item DESCRIPTION
 
-=item SEE ALSO
+=item USAGE
 
-=item COPYRIGHT
+=item FUNCTIONS
+
+new(), read(), write(), validate(), packlist_file()
+
+=item EXAMPLE
 
 =item AUTHOR
 
 =back
 
-=head2 I18N::LangTags::Detect - detect the user's language preferences
+=head2 ExtUtils::ParseXS - converts Perl XS code into C code
 
 =over 4
 
 =item SYNOPSIS
 
-=item DESCRIPTION
+=item EXPORT
 
 =item FUNCTIONS
 
-=item ENVIRONMENT
+process_xs(), B<C++>, B<hiertype>, B<except>, B<typemap>, B<prototypes>,
+B<versioncheck>, B<linenumbers>, B<optimize>, B<inout>, B<argtypes>, B<s>,
+errors()
 
-=item SEE ALSO
+=item AUTHOR
 
 =item COPYRIGHT
 
+=item SEE ALSO
+
+=back
+
+=head2 ExtUtils::testlib - add blib/* directories to @INC
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=head2 Fatal - replace functions with equivalents which succeed or die
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item BUGS
+
 =item AUTHOR
 
 =back
 
-=head2 I18N::LangTags::List -- tags and names for human languages
+=head2 Fcntl - load the C Fcntl.h defines
 
 =over 4
 
@@ -20044,14 +20814,1430 @@ implicate_supers_strictly( ...languages... )
 
 =item DESCRIPTION
 
-=item ABOUT LANGUAGE TAGS
+=item NOTE
 
-=item LIST OF LANGUAGES
+=item EXPORTED SYMBOLS
 
-{ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
-Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
-Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
-{ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
+=back
+
+=head2 File::Basename - Parse file paths into directory, filename and
+suffix.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+C<fileparse> X<fileparse>
+
+C<basename> X<basename> X<filename>
+
+C<dirname> X<dirname>
+
+C<fileparse_set_fstype> X<filesystem>
+
+=over 4
+
+=item SEE ALSO
+
+=back
+
+=head2 File::CheckTree - run many filetest checks on a tree
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item AUTHOR
+
+=item HISTORY
+
+=back
+
+=head2 File::Compare - Compare files or filehandles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item RETURN
+
+=item AUTHOR
+
+=back
+
+=head2 File::Copy - Copy files or filehandles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+copy X<copy> X<cp>, move X<move> X<mv> X<rename>, syscopy X<syscopy>,
+rmscopy($from,$to[,$date_flag]) X<rmscopy>
+
+=item RETURN
+
+=item NOTES
+
+=item AUTHOR
+
+=back
+
+=head2 File::DosGlob - DOS like globbing and then some
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item NOTES
+
+=item EXPORTS (by request only)
+
+=item BUGS
+
+=item AUTHOR
+
+=item HISTORY
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Fetch - A generic file fetching mechanism
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item ACCESSORS
+
+$ff->uri, $ff->scheme, $ff->host, $ff->vol, $ff->share, $ff->path,
+$ff->file
+
+=back
+
+$ff->output_file
+
+=over 4
+
+=item METHODS
+
+=over 4
+
+=item $ff = File::Fetch->new( uri => 'http://some.where.com/dir/file.txt'
+);
+
+=back
+
+=back
+
+=over 4
+
+=item $ff->fetch( [to => /my/output/dir/] )
+
+=back
+
+=over 4
+
+=item $ff->error([BOOL])
+
+=back
+
+=over 4
+
+=item HOW IT WORKS
+
+=item GLOBAL VARIABLES
+
+=over 4
+
+=item $File::Fetch::FROM_EMAIL
+
+=item $File::Fetch::USER_AGENT
+
+=item $File::Fetch::FTP_PASSIVE
+
+=item $File::Fetch::TIMEOUT
+
+=item $File::Fetch::WARN
+
+=item $File::Fetch::DEBUG
+
+=item $File::Fetch::BLACKLIST
+
+=item $File::Fetch::METHOD_FAIL
+
+=back
+
+=item MAPPING
+
+=item FREQUENTLY ASKED QUESTIONS
+
+=over 4
+
+=item So how do I use a proxy with File::Fetch?
+
+=item I used 'lynx' to fetch a file, but its contents is all wrong!
+
+=item Files I'm trying to fetch have reserved characters or non-ASCII
+characters in them. What do I do?
+
+=back
+
+=item TODO
+
+Implement $PREFER_BIN
+
+=item BUG REPORTS
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 File::Find - Traverse a directory tree.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+B<find>, B<finddepth>
+
+=over 4
+
+=item %options
+
+C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
+C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
+C<untaint>, C<untaint_pattern>, C<untaint_skip>
+
+=item The wanted function
+
+C<$File::Find::dir> is the current directory name,, C<$_> is the current
+filename within that directory, C<$File::Find::name> is the complete
+pathname to the file
+
+=back
+
+=item WARNINGS
+
+=item CAVEAT
+
+$dont_use_nlink, symlinks
+
+=item NOTES
+
+=item BUGS AND CAVEATS
+
+=item HISTORY
+
+=back
+
+=head2 File::Glob - Perl extension for BSD glob routine
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item META CHARACTERS
+
+=item POSIX FLAGS
+
+C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
+C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
+C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
+
+=back
+
+=item DIAGNOSTICS
+
+C<GLOB_NOSPACE>, C<GLOB_ABEND>
+
+=item NOTES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=back
+
+=head2 File::GlobMapper - Extend File Glob to Allow Input and Output Files
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+This code is a work in progress, There are known bugs, The interface
+defined here is tentative, There are portability issues, Do not use in
+production code, Consider yourself warned!
+
+=over 4
+
+=item Behind The Scenes
+
+=item Limitations
+
+=item Input File Glob
+
+B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
+
+=item Output File Glob
+
+"*", #1
+
+=item Returned Data
+
+=back
+
+=item EXAMPLES
+
+=over 4
+
+=item A Rename script
+
+=item A few example globmaps
+
+=back
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 File::Path - Create or remove directory trees
+
+=over 4
+
+=item VERSION
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item FUNCTIONS
+
+mode, verbose, error, verbose, safe, keep_root, result, error
+
+=item TRADITIONAL INTERFACE
+
+=item ERROR HANDLING
+
+=item NOTES
+
+=back
+
+=item DIAGNOSTICS
+
+mkdir [path]: [errmsg] (SEVERE), No root path(s) specified, No such file or
+directory, cannot fetch initial working directory: [errmsg], cannot stat
+initial working directory: [errmsg], cannot chdir to [dir]: [errmsg],
+directory [dir] changed before chdir, expected dev=[n] inode=[n], actual
+dev=[n] ino=[n], aborting. (FATAL), cannot make directory [dir]
+read+writeable: [errmsg], cannot read [dir]: [errmsg], cannot reset chmod
+[dir]: [errmsg], cannot chdir to [parent-dir] from [child-dir]: [errmsg],
+aborting. (FATAL), cannot stat prior working directory [dir]: [errmsg],
+aborting. (FATAL), previous directory [parent-dir] changed before entering
+[child-dir], expected dev=[n] inode=[n], actual dev=[n] ino=[n], aborting.
+(FATAL), cannot make directory [dir] writeable: [errmsg], cannot remove
+directory [dir]: [errmsg], cannot restore permissions of [dir] to [0nnn]:
+[errmsg], cannot make file [file] writeable: [errmsg], cannot unlink file
+[file]: [errmsg], cannot restore permissions of [file] to [0nnn]: [errmsg]
+
+=item SEE ALSO
+
+=item BUGS
+
+=item ACKNOWLEDGEMENTS
+
+=item AUTHORS
+
+=item COPYRIGHT
+
+=item LICENSE
+
+=back
+
+=head2 File::Spec - portably perform operations on file names
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+canonpath X<canonpath>, catdir X<catdir>, catfile X<catfile>, curdir
+X<curdir>, devnull X<devnull>, rootdir X<rootdir>, tmpdir X<tmpdir>, updir
+X<updir>, no_upwards, case_tolerant, file_name_is_absolute, path X<path>,
+join X<join, path>, splitpath X<splitpath> X<split, path>, splitdir
+X<splitdir> X<split, dir>, catpath(), abs2rel X<abs2rel> X<absolute, path>
+X<relative, path>, rel2abs() X<rel2abs> X<absolute, path> X<relative, path>
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 File::Spec::Cygwin - methods for Cygwin file specs
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+canonpath
+
+file_name_is_absolute
+
+tmpdir (override)
+
+case_tolerant
+
+=over 4
+
+=item COPYRIGHT
+
+=back
+
+=head2 File::Spec::Epoc - methods for Epoc file specs
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+canonpath()
+
+=over 4
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Spec::Functions - portably perform operations on file names
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Exports
+
+=back
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+canonpath
+
+=back
+
+catdir()
+
+catfile
+
+curdir
+
+devnull
+
+rootdir
+
+tmpdir
+
+updir
+
+file_name_is_absolute
+
+path
+
+splitpath
+
+splitdir
+
+catpath
+
+abs2rel
+
+rel2abs
+
+=over 4
+
+=item AUTHORS
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Spec::OS2 - methods for OS/2 file specs
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+tmpdir, splitpath
+
+=item COPYRIGHT
+
+=back
+
+=head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
+modules
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+canonpath()
+
+=back
+
+catdir()
+
+catfile
+
+curdir
+
+devnull
+
+rootdir
+
+tmpdir
+
+updir
+
+no_upwards
+
+case_tolerant
+
+file_name_is_absolute
+
+path
+
+join
+
+splitpath
+
+splitdir
+
+catpath()
+
+abs2rel
+
+rel2abs()
+
+=over 4
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Spec::VMS - methods for VMS file specs
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+canonpath (override)
+
+=back
+
+catdir (override)
+
+catfile (override)
+
+curdir (override)
+
+devnull (override)
+
+rootdir (override)
+
+tmpdir (override)
+
+updir (override)
+
+case_tolerant (override)
+
+path (override)
+
+file_name_is_absolute (override)
+
+splitpath (override)
+
+splitdir (override)
+
+catpath (override)
+
+abs2rel (override)
+
+rel2abs (override)
+
+=over 4
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Spec::Win32 - methods for Win32 file specs
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+devnull
+
+=back
+
+tmpdir
+
+case_tolerant
+
+file_name_is_absolute
+
+catfile
+
+canonpath
+
+splitpath
+
+splitdir
+
+catpath
+
+=over 4
+
+=item Note For File::Spec::Win32 Maintainers
+
+=back
+
+=over 4
+
+=item COPYRIGHT
+
+=item SEE ALSO
+
+=back
+
+=head2 File::Temp - return name and handle of a temporary file safely
+
+=over 4
+
+=item PORTABILITY
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=over 4
+
+=item OBJECT-ORIENTED INTERFACE
+
+B<new>
+
+=back
+
+B<filename>
+
+B<unlink_on_destroy>
+
+B<DESTROY>
+
+=over 4
+
+=item FUNCTIONS
+
+B<tempfile>
+
+=back
+
+B<tempdir>
+
+=over 4
+
+=item MKTEMP FUNCTIONS
+
+B<mkstemp>
+
+=back
+
+B<mkstemps>
+
+B<mkdtemp>
+
+B<mktemp>
+
+=over 4
+
+=item POSIX FUNCTIONS
+
+B<tmpnam>
+
+=back
+
+B<tmpfile>
+
+=over 4
+
+=item ADDITIONAL FUNCTIONS
+
+B<tempnam>
+
+=back
+
+=over 4
+
+=item UTILITY FUNCTIONS
+
+B<unlink0>
+
+=back
+
+B<cmpstat>
+
+B<unlink1>
+
+B<cleanup>
+
+=over 4
+
+=item PACKAGE VARIABLES
+
+B<safe_level>, STANDARD, MEDIUM, HIGH
+
+=back
+
+TopSystemUID
+
+B<$KEEP_ALL>, B<$DEBUG>
+
+=over 4
+
+=item WARNING
+
+=over 4
+
+=item Temporary files and NFS
+
+=item Forking
+
+=item BINMODE
+
+=back
+
+=item HISTORY
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=back
+
+=head2 File::stat - by-name interface to Perl's built-in stat() functions
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item BUGS
+
+=item NOTE
+
+=item AUTHOR
+
+=back
+
+=head2 FileCache - keep more files open than the system permits
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+cacheout EXPR, cacheout MODE, EXPR
+
+=item CAVEATS
+
+=item BUGS
+
+=back
+
+=head2 FileHandle - supply object methods for filehandles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+$fh->print, $fh->printf, $fh->getline, $fh->getlines
+
+=item SEE ALSO
+
+=back
+
+=head2 Filter::Simple - Simplified source filtering
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item The Problem
+
+=item A Solution
+
+=item Disabling or changing <no> behaviour
+
+=item All-in-one interface
+
+=item Filtering only specific components of source code
+
+C<"code">, C<"code_no_comments">, C<"executable">,
+C<"executable_no_comments">, C<"quotelike">, C<"string">, C<"regex">,
+C<"all">
+
+=item Filtering only the code parts of source code
+
+Most source code ceases to be grammatically correct when it is broken up
+into the pieces between string literals and regexes. So the C<'code'>
+and C<'code_no_comments'> component filter behave slightly differently
+from the other partial filters described in the previous section.
+
+=item Using Filter::Simple with an explicit C<import> subroutine
+
+=item Using Filter::Simple and Exporter together
+
+=item How it works
+
+=back
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 Filter::Util::Call - Perl Source Filter Utility Module
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item B<use Filter::Util::Call>
+
+=item B<import()>
+
+=item B<filter() and anonymous sub>
+
+B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
+
+=back
+
+=item EXAMPLES
+
+=over 4
+
+=item Example 1: A simple filter.
+
+=item Example 2: Using the context
+
+=item Example 3: Using the context within the filter
+
+=item Example 4: Using filter_del
+
+=back
+
+=item Filter::Simple
+
+=item AUTHOR
+
+=item DATE
+
+=back
+
+=head2 FindBin - Locate directory of original perl script
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item EXPORTABLE VARIABLES
+
+=item KNOWN ISSUES
+
+=item KNOWN BUGS
+
+=item AUTHORS
+
+=item COPYRIGHT
+
+=back
+
+=head2 GDBM_File - Perl5 access to the gdbm library.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item AVAILABILITY
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
+=head2 Getopt::Long - Extended processing of command line options
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Command Line Options, an Introduction
+
+=item Getting Started with Getopt::Long
+
+=over 4
+
+=item Simple options
+
+=item A little bit less simple options
+
+=item Mixing command line option with other arguments
+
+=item Options with values
+
+=item Options with multiple values
+
+=item Options with hash values
+
+=item User-defined subroutines to handle options
+
+=item Options with multiple names
+
+=item Case and abbreviations
+
+=item Summary of Option Specifications
+
+!, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
++ [ I<desttype> ]
+
+=back
+
+=item Advanced Possibilities
+
+=over 4
+
+=item Object oriented interface
+
+=item Thread Safety
+
+=item Documentation and help texts
+
+=item Parsing options from an arbitrary array
+
+=item Parsing options from an arbitrary string
+
+=item Storing options values in a hash
+
+=item Bundling
+
+=item The lonesome dash
+
+=item Argument callback
+
+=back
+
+=item Configuring Getopt::Long
+
+default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
+require_order, permute, bundling (default: disabled), bundling_override
+(default: disabled), ignore_case  (default: enabled), ignore_case_always
+(default: disabled), auto_version (default:disabled), auto_help
+(default:disabled), pass_through (default: disabled), prefix,
+prefix_pattern, long_prefix_pattern, debug (default: disabled)
+
+=item Exportable Methods
+
+VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
+
+=item Return values and Errors
+
+=item Legacy
+
+=over 4
+
+=item Default destinations
+
+=item Alternative option starters
+
+=item Configuration variables
+
+=back
+
+=item Tips and Techniques
+
+=over 4
+
+=item Pushing multiple values in a hash option
+
+=back
+
+=item Trouble Shooting
+
+=over 4
+
+=item GetOptions does not return a false result when an option is not
+supplied
+
+=item GetOptions does not split the command line correctly
+
+=item Undefined subroutine &main::GetOptions called
+
+=item How do I put a "-?" option into a Getopt::Long?
+
+=back
+
+=item AUTHOR
+
+=item COPYRIGHT AND DISCLAIMER
+
+=back
+
+=head2 Getopt::Std, getopt, getopts - Process single-character switches
+with switch clustering
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item C<--help> and C<--version>
+
+=back
+
+=head2 Hash::Util - A selection of general-utility hash subroutines
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Restricted hashes
+
+B<lock_keys>, B<unlock_keys>
+
+=back
+
+=back
+
+B<lock_keys_plus>
+
+B<lock_value>, B<unlock_value>
+
+B<lock_hash>, B<unlock_hash>
+
+B<lock_hash_recurse>, B<unlock_hash_recurse>
+
+B<hash_unlocked>
+
+B<legal_keys>, B<hidden_keys>, B<all_keys>, B<hash_seed>
+
+B<hv_store>
+
+=over 4
+
+=item Operating on references to hashes.
+
+lock_ref_keys, unlock_ref_keys, lock_ref_keys_plus, lock_ref_value,
+unlock_ref_value, lock_hashref, unlock_hashref, lock_hashref_recurse,
+unlock_hashref_recurse, hash_ref_unlocked, legal_ref_keys, hidden_ref_keys
+
+=back
+
+=over 4
+
+=item CAVEATS
+
+=item BUGS
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=back
+
+=head2 Hash::Util::FieldHash - Support for Inside-Out Classes
+
+=over 4
+
+=item SYNOPSIS
+
+=item FUNCTIONS
+
+id, id_2obj, register, idhash, idhashes, fieldhash, fieldhashes
+
+=item DESCRIPTION
+
+=over 4
+
+=item The Inside-out Technique
+
+=item Problems of Inside-out
+
+=item Solutions
+
+=item More Problems
+
+=item The Generic Object
+
+=item How to use Field Hashes
+
+=item Garbage-Collected Hashes
+
+=back
+
+=item EXAMPLES
+
+C<init()>, C<first()>, C<last()>, C<name()>, C<Name_hash>, C<Name_id>,
+C<Name_idhash>, C<Name_id_reg>, C<Name_idhash_reg>, C<Name_fieldhash>
+
+=over 4
+
+=item Example 1
+
+=item Example 2
+
+=back
+
+=item GUTS
+
+=over 4
+
+=item The C<PERL_MAGIC_uvar> interface for hashes
+
+=item Weakrefs call uvar magic
+
+=item How field hashes work
+
+=item Internal function Hash::Util::FieldHash::_fieldhash
+
+=back
+
+=item AUTHOR
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Hash::Util::FieldHash::lib::Hash::Util::FieldHash,
+Hash::Util::FieldHash - Support for Inside-Out Classes
+
+=over 4
+
+=item SYNOPSIS
+
+=item FUNCTIONS
+
+id, id_2obj, register, idhash, idhashes, fieldhash, fieldhashes
+
+=item DESCRIPTION
+
+=over 4
+
+=item The Inside-out Technique
+
+=item Problems of Inside-out
+
+=item Solutions
+
+=item More Problems
+
+=item The Generic Object
+
+=item How to use Field Hashes
+
+=item Garbage-Collected Hashes
+
+=back
+
+=item EXAMPLES
+
+C<init()>, C<first()>, C<last()>, C<name()>, C<Name_hash>, C<Name_id>,
+C<Name_idhash>, C<Name_id_reg>, C<Name_idhash_reg>, C<Name_fieldhash>
+
+=over 4
+
+=item Example 1
+
+=item Example 2
+
+=back
+
+=item GUTS
+
+=over 4
+
+=item The C<PERL_MAGIC_uvar> interface for hashes
+
+=item Weakrefs call uvar magic
+
+=item How field hashes work
+
+=item Internal function Hash::Util::FieldHash::_fieldhash
+
+=back
+
+=item AUTHOR
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 Hash::Utilib::Hash::Util, Hash::Util - A selection of
+general-utility hash subroutines
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Restricted hashes
+
+B<lock_keys>, B<unlock_keys>
+
+=back
+
+=back
+
+B<lock_keys_plus>
+
+B<lock_value>, B<unlock_value>
+
+B<lock_hash>, B<unlock_hash>
+
+B<lock_hash_recurse>, B<unlock_hash_recurse>
+
+B<hash_unlocked>
+
+B<legal_keys>, B<hidden_keys>, B<all_keys>, B<hash_seed>
+
+B<hv_store>
+
+=over 4
+
+=item Operating on references to hashes.
+
+lock_ref_keys, unlock_ref_keys, lock_ref_keys_plus, lock_ref_value,
+unlock_ref_value, lock_hashref, unlock_hashref, lock_hashref_recurse,
+unlock_hashref_recurse, hash_ref_unlocked, legal_ref_keys, hidden_ref_keys
+
+=back
+
+=over 4
+
+=item CAVEATS
+
+=item BUGS
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=back
+
+=head2 I18N::Collate - compare 8-bit scalar data according to the current
+locale
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+=head2 I18N::LangTags - functions for dealing with RFC3066-style language
+tags
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=back
+
+the function is_language_tag($lang1)
+
+the function extract_language_tags($whatever)
+
+the function same_language_tag($lang1, $lang2)
+
+the function similarity_language_tag($lang1, $lang2)
+
+the function is_dialect_of($lang1, $lang2)
+
+the function super_languages($lang1)
+
+the function locale2language_tag($locale_identifier)
+
+the function encode_language_tag($lang1)
+
+the function alternate_language_tags($lang1)
+
+the function @langs = panic_languages(@accept_languages)
+
+the function implicate_supers( ...languages... ), the function
+implicate_supers_strictly( ...languages... )
+
+=over 4
+
+=item ABOUT LOWERCASING
+
+=item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
+
+=item SEE ALSO
+
+=item COPYRIGHT
+
+=item AUTHOR
+
+=back
+
+=head2 I18N::LangTags::Detect - detect the user's language preferences
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item FUNCTIONS
+
+=item ENVIRONMENT
+
+=item SEE ALSO
+
+=item COPYRIGHT
+
+=item AUTHOR
+
+=back
+
+=head2 I18N::LangTags::List -- tags and names for human languages
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item ABOUT LANGUAGE TAGS
+
+=item LIST OF LANGUAGES
+
+{ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
+Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
+Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
+{ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
 {am} : Amharic, {i-ami} : Ami, [{apa} : Apache languages], {ar} : Arabic,
 {arc} : Aramaic, {arp} : Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy}
 : Armenian, {an} : Aragonese, [{art} : Artificial (Other)], {ast} :
@@ -20176,15 +22362,1439 @@ Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
 : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} : Zhuang, {zu} : Zulu,
 {zun} : Zuni
 
-=item SEE ALSO
+=item SEE ALSO
+
+=item COPYRIGHT AND DISCLAIMER
+
+=item AUTHOR
+
+=back
+
+=head2 I18N::Langinfo - query locale information
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item EXPORT
+
+=back
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO - load various IO modules
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item DEPRECATED
+
+=back
+
+=head2 IO::Compress::Base - Base Class for IO::Compress modules 
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Compress::Deflate - Write RFC 1950 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item deflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
+Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item print
+
+=item printf
+
+=item syswrite
+
+=item write
+
+=item flush
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item newStream([OPTS])
+
+=item deflateParams
+
+=back
+
+=item Importing 
+
+:all, :constants, :flush, :level, :strategy
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Compress::Gzip - Write RFC 1952 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item gzip $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
+Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Minimal => 0|1 >>,
+C<< Comment => $comment >>, C<< Name => $string >>, C<< Time => $number >>,
+C<< TextFlag => 0|1 >>, C<< HeaderCRC => 0|1 >>, C<< OS_Code => $value >>,
+C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
+>>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item print
+
+=item printf
+
+=item syswrite
+
+=item write
+
+=item flush
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item newStream([OPTS])
+
+=item deflateParams
+
+=back
+
+=item Importing 
+
+:all, :constants, :flush, :level, :strategy
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Compress::RawDeflate - Write RFC 1951 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item rawdeflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
+Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item print
+
+=item printf
+
+=item syswrite
+
+=item write
+
+=item flush
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item newStream([OPTS])
+
+=item deflateParams
+
+=back
+
+=item Importing 
+
+:all, :constants, :flush, :level, :strategy
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Compress::Zip - Write zip files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item zip $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
+Filehandle, C<< Name => $string >>, C<< Time => $number >>, C<< ExtAttr =>
+$attr >>, C<< exTime => [$atime, $mtime, $ctime] >>, C<< Comment =>
+$comment >>, C<< ZipComment => $comment >>, C<< Method => $method >>, C<<
+Stream => 0|1 >>, C<< Zip64 => 0|1 >>, C<< TextFlag => 0|1 >>, C<<
+ExtraFieldLocal => $data >> =item C<< ExtraFieldCentral => $data >>, C<<
+Minimal => 1|0 >>, C<< BlockSize100K => number >>, C<< WorkFactor => number
+>>, -Level, -Strategy, C<< Strict => 0|1 >>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item print
+
+=item printf
+
+=item syswrite
+
+=item write
+
+=item flush
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item newStream([OPTS])
+
+=item deflateParams
+
+=back
+
+=item Importing 
+
+:all, :constants, :flush, :level, :strategy, :zip_method
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Dir - supply object methods for directory handles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
+rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IO::File - supply object methods for filehandles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
+
+=item METHODS
+
+open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS ), binmode(
+[LAYER] )
+
+=item NOTE
+
+=item SEE ALSO
+
+=item HISTORY
+
+=back
+
+=head2 IO::Handle - supply object methods for I/O handles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new (), new_from_fd ( FD, MODE )
+
+=item METHODS
+
+$io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
+$io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
+$io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
+$io->blocking ( [ BOOL ] ), $io->untaint
+
+=item NOTE
+
+=item SEE ALSO
+
+=item BUGS
+
+=item HISTORY
+
+=back
+
+=head2 IO::Pipe - supply object methods for pipes
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [READER, WRITER] )
+
+=item METHODS
+
+reader ([ARGS]), writer ([ARGS]), handles ()
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IO::Poll - Object interface to system poll call
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
+IO ), handles( [ EVENT_MASK ] )
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IO::Seekable - supply seek based methods for I/O objects
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+$io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
+WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
+$io->tell
+
+=item SEE ALSO
+
+=item HISTORY
+
+=back
+
+=head2 IO::Select - OO interface to the select system call
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [ HANDLES ] )
+
+=item METHODS
+
+add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
+[ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
+count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
+
+=item EXAMPLE
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IO::Socket - Object interface to socket communications
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [ARGS] )
+
+=item METHODS
+
+accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
+protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IO::Socket::INET - Object interface for AF_INET domain sockets
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [ARGS] )
+
+=over 4
+
+=item METHODS
+
+sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
+()
+
+=back
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [ARGS] )
+
+=item METHODS
+
+hostpath(), peerpath()
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IO::Uncompress::AnyInflate - Uncompress zlib-based (zip, gzip)
+file/buffer
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+RFC 1950, RFC 1951 (optionally), gzip (RFC 1952), zip
+
+=item Functional Interface
+
+=over 4
+
+=item anyinflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
+>>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< RawInflate => 0|1
+>>, C<< ParseExtra => 0|1 >> If the gzip FEXTRA header field is present and
+this option is set, it will force the module to check that it conforms to
+the sub-field structure as defined in RFC 1952
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item nextStream
+
+=item trailingData
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Uncompress::AnyUncompress - Uncompress gzip, zip, bzip2 or lzop
+file/buffer
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+RFC 1950, RFC 1951 (optionally), gzip (RFC 1952), zip, bzip2, lzop, lzf
+
+=item Functional Interface
+
+=over 4
+
+=item anyuncompress $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
+>>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< RawInflate => 0|1
+>>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item nextStream
+
+=item trailingData
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Uncompress::Base - Base Class for IO::Uncompress modules 
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Uncompress::Gunzip - Read RFC 1952 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item gunzip $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
+>>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
+>> If the gzip FEXTRA header field is present and this option is set, it
+will force the module to check that it conforms to the sub-field structure
+as defined in RFC 1952
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+Name, Comment
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item nextStream
+
+=item trailingData
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Uncompress::Inflate - Read RFC 1950 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item inflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
+>>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item nextStream
+
+=item trailingData
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Uncompress::RawInflate - Read RFC 1951 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item rawinflate $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
+>>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item nextStream
+
+=item trailingData
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Uncompress::Unzip - Read zip files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Functional Interface
+
+=over 4
+
+=item unzip $input => $output [, OPTS]
+
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
+
+=item Notes
+
+=item Optional Parameters
+
+C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
+
+=item Examples
+
+=back
+
+=item OO Interface
+
+=over 4
+
+=item Constructor
+
+A filename, A filehandle, A scalar reference
+
+=item Constructor Options
+
+C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
+>>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+
+=item Examples
+
+=back
+
+=item Methods 
+
+=over 4
+
+=item read
+
+=item read
+
+=item getline
+
+=item getc
+
+=item ungetc
+
+=item inflateSync
+
+=item getHeaderInfo
+
+=item tell
+
+=item eof
+
+=item seek
+
+=item binmode
+
+=item opened
+
+=item autoflush
+
+=item input_line_number
+
+=item fileno
+
+=item close
+
+=item nextStream
+
+=item trailingData
+
+=back
+
+=item Importing 
+
+:all
+
+=item EXAMPLES
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO::Zlib - IO:: style interface to L<Compress::Zlib>
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [ARGS] )
+
+=item OBJECT METHODS
+
+open ( FILENAME, MODE ), opened, close, getc, getline, getlines, print (
+ARGS... ), read ( BUF, NBYTES, [OFFSET] ), eof, seek ( OFFSET, WHENCE ),
+tell, setpos ( POS ), getpos ( POS )
+
+=item USING THE EXTERNAL GZIP
+
+=item CLASS METHODS
+
+has_Compress_Zlib, gzip_external, gzip_used, gzip_read_open,
+gzip_write_open
+
+=item DIAGNOSTICS
+
+IO::Zlib::getlines: must be called in list context,
+IO::Zlib::gzopen_external: mode '...' is illegal, IO::Zlib::import: '...'
+is illegal, IO::Zlib::import: ':gzip_external' requires an argument,
+IO::Zlib::import: 'gzip_read_open' requires an argument, IO::Zlib::import:
+'gzip_read' '...' is illegal, IO::Zlib::import: 'gzip_write_open' requires
+an argument, IO::Zlib::import: 'gzip_write_open' '...' is illegal,
+IO::Zlib::import: no Compress::Zlib and no external gzip, IO::Zlib::open:
+needs a filename, IO::Zlib::READ: NBYTES must be specified,
+IO::Zlib::WRITE: too long LENGTH, IO::Zlib::WRITE: OFFSET is not supported
+
+=item SEE ALSO
+
+=item HISTORY
+
+=item COPYRIGHT
 
-=item COPYRIGHT AND DISCLAIMER
+=back
+
+=head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
+handles
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
+rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
+
+=item SEE ALSO
 
 =item AUTHOR
 
+=item COPYRIGHT
+
 =back
 
-=head2 I18N::Langinfo - query locale information
+=head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
 
 =over 4
 
@@ -20192,21 +23802,78 @@ Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
 
 =item DESCRIPTION
 
+=item CONSTRUCTOR
+
+new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
+
+=item METHODS
+
+open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS ), binmode(
+[LAYER] )
+
+=item NOTE
+
+=item SEE ALSO
+
+=item HISTORY
+
+=back
+
+=head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
+handles
+
 =over 4
 
-=item EXPORT
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new (), new_from_fd ( FD, MODE )
+
+=item METHODS
+
+$io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
+$io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
+$io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
+$io->blocking ( [ BOOL ] ), $io->untaint
+
+=item NOTE
+
+=item SEE ALSO
+
+=item BUGS
+
+=item HISTORY
 
 =back
 
+=head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [READER, WRITER] )
+
+=item METHODS
+
+reader ([ARGS]), writer ([ARGS]), handles ()
+
 =item SEE ALSO
 
 =item AUTHOR
 
-=item COPYRIGHT AND LICENSE
+=item COPYRIGHT
 
 =back
 
-=head2 IO - load various IO modules
+=head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
 
 =over 4
 
@@ -20214,11 +23881,21 @@ Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
 
 =item DESCRIPTION
 
-=item DEPRECATED
+=item METHODS
+
+mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
+IO ), handles( [ EVENT_MASK ] )
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=head2 IO::Compress::Base - Base Class for IO::Compress modules 
+=head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
+I/O objects
 
 =over 4
 
@@ -20226,17 +23903,71 @@ Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
 
 =item DESCRIPTION
 
+$io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
+WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
+$io->tell
+
 =item SEE ALSO
 
+=item HISTORY
+
+=back
+
+=head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
+call
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [ HANDLES ] )
+
+=item METHODS
+
+add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
+[ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
+count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
+
+=item EXAMPLE
+
 =item AUTHOR
 
-=item MODIFICATION HISTORY
+=item COPYRIGHT
 
-=item COPYRIGHT AND LICENSE
+=back
+
+=head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
+communications
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONSTRUCTOR
+
+new ( [ARGS] )
+
+=item METHODS
+
+accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
+protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=head2 IO::Compress::Deflate - Write RFC 1950 files/buffers
+=head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
+AF_INET domain sockets
 
 =over 4
 
@@ -20244,90 +23975,109 @@ Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+=item CONSTRUCTOR
 
-=item Functional Interface
+new ( [ARGS] )
 
 =over 4
 
-=item deflate $input => $output [, OPTS]
+=item METHODS
 
-A filename, A filehandle, A scalar reference, An array reference, An Input
-FileGlob string, A filename, A filehandle, A scalar reference, An Array
-Reference, An Output FileGlob
+sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
+()
 
-=item Notes
+=back
 
-=item Optional Parameters
+=item SEE ALSO
 
-C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+=item AUTHOR
 
-=item Examples
+=item COPYRIGHT
 
 =back
 
-=item OO Interface
+=head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
+AF_UNIX domain sockets
 
 =over 4
 
-=item Constructor
+=item SYNOPSIS
 
-A filename, A filehandle, A scalar reference
+=item DESCRIPTION
 
-=item Constructor Options
+=item CONSTRUCTOR
 
-C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
-Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
+new ( [ARGS] )
 
-=item Examples
+=item METHODS
+
+hostpath(), peerpath()
+
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=item Methods 
+=head2 IO_Compress_Base::lib::File::GlobMapper, File::GlobMapper - Extend
+File Glob to Allow Input and Output Files
 
 =over 4
 
-=item print
+=item SYNOPSIS
 
-=item printf
+=item DESCRIPTION
 
-=item syswrite
+This code is a work in progress, There are known bugs, The interface
+defined here is tentative, There are portability issues, Do not use in
+production code, Consider yourself warned!
 
-=item write
+=over 4
 
-=item flush
+=item Behind The Scenes
 
-=item tell
+=item Limitations
 
-=item eof
+=item Input File Glob
 
-=item seek
+B<~>, B<~user>, B<.>, B<*>, B<?>, B<\>,  B<[]>,  B<{,}>,  B<()>
 
-=item binmode
+=item Output File Glob
 
-=item opened
+"*", #1
 
-=item autoflush
+=item Returned Data
 
-=item input_line_number
+=back
 
-=item fileno
+=item EXAMPLES
 
-=item close
+=over 4
 
-=item newStream([OPTS])
+=item A Rename script
 
-=item deflateParams
+=item A few example globmaps
 
 =back
 
-=item Importing 
+=item SEE ALSO
 
-:all, :constants, :flush, :level, :strategy
+=item AUTHOR
 
-=item EXAMPLES
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO_Compress_Base::lib::IO::Compress::Base, IO::Compress::Base - Base
+Class for IO::Compress modules 
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =item SEE ALSO
 
@@ -20339,7 +24089,9 @@ Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
 
 =back
 
-=head2 IO::Compress::Gzip - Write RFC 1952 files/buffers
+=head2 IO_Compress_Base::lib::IO::Uncompress::AnyUncompress,
+IO::Uncompress::AnyUncompress - Uncompress gzip, zip, bzip2 or lzop
+file/buffer
 
 =over 4
 
@@ -20347,15 +24099,13 @@ Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+RFC 1950, RFC 1951 (optionally), gzip (RFC 1952), zip, bzip2, lzop, lzf
 
 =item Functional Interface
 
 =over 4
 
-=item gzip $input => $output [, OPTS]
+=item anyuncompress $input => $output [, OPTS]
 
 A filename, A filehandle, A scalar reference, An array reference, An Input
 FileGlob string, A filename, A filehandle, A scalar reference, An Array
@@ -20365,7 +24115,8 @@ Reference, An Output FileGlob
 
 =item Optional Parameters
 
-C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
+C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
 
 =item Examples
 
@@ -20381,11 +24132,9 @@ A filename, A filehandle, A scalar reference
 
 =item Constructor Options
 
-C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
-Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Minimal => 0|1 >>,
-C<< Comment => $comment >>, C<< Name => $string >>, C<< Time => $number >>,
-C<< TextFlag => 0|1 >>, C<< HeaderCRC => 0|1 >>, C<< OS_Code => $value >>,
-C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
+C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
+>>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< RawInflate => 0|1
 >>
 
 =item Examples
@@ -20396,15 +24145,17 @@ C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
 
 =over 4
 
-=item print
+=item read
 
-=item printf
+=item read
 
-=item syswrite
+=item getline
 
-=item write
+=item getc
 
-=item flush
+=item ungetc
+
+=item getHeaderInfo
 
 =item tell
 
@@ -20424,15 +24175,15 @@ C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
 
 =item close
 
-=item newStream([OPTS])
+=item nextStream
 
-=item deflateParams
+=item trailingData
 
 =back
 
 =item Importing 
 
-:all, :constants, :flush, :level, :strategy
+:all
 
 =item EXAMPLES
 
@@ -20446,7 +24197,8 @@ C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
 
 =back
 
-=head2 IO::Compress::RawDeflate - Write RFC 1951 files/buffers
+=head2 IO_Compress_Base::lib::IO::Uncompress::Base, IO::Uncompress::Base -
+Base Class for IO::Uncompress modules 
 
 =over 4
 
@@ -20454,15 +24206,30 @@ C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
+=item SEE ALSO
+
+=item AUTHOR
+
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
+
+=back
+
+=head2 IO_Compress_Zlib::IO::Compress::Deflate, IO::Compress::Deflate -
+Write RFC 1950 files/buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =item Functional Interface
 
 =over 4
 
-=item rawdeflate $input => $output [, OPTS]
+=item deflate $input => $output [, OPTS]
 
 A filename, A filehandle, A scalar reference, An array reference, An Input
 FileGlob string, A filename, A filehandle, A scalar reference, An Array
@@ -20549,7 +24316,8 @@ Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
 
 =back
 
-=head2 IO::Compress::Zip - Write zip files/buffers
+=head2 IO_Compress_Zlib::IO::Compress::Gzip, IO::Compress::Gzip - Write RFC
+1952 files/buffers
 
 =over 4
 
@@ -20557,15 +24325,11 @@ Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
-
 =item Functional Interface
 
 =over 4
 
-=item zip $input => $output [, OPTS]
+=item gzip $input => $output [, OPTS]
 
 A filename, A filehandle, A scalar reference, An array reference, An Input
 FileGlob string, A filename, A filehandle, A scalar reference, An Array
@@ -20592,12 +24356,11 @@ A filename, A filehandle, A scalar reference
 =item Constructor Options
 
 C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
-Filehandle, C<< Name => $string >>, C<< Time => $number >>, C<< exTime =>
-[$atime, $mtime, $ctime] >>, C<< Comment => $comment >>, C<< ZipComment =>
-$comment >>, C<< Method => $method >>, C<< Stream => 0|1 >>, C<< TextFlag
-=> 0|1 >>, C<< ExtraFieldLocal => $data >> =item C<< ExtraFieldCentral =>
-$data >>, C<< Minimal => 1|0 >>, C<< BlockSize100K => number >>, C<<
-WorkFactor => number >>, -Level, -Strategy, C<< Strict => 0|1 >>
+Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Minimal => 0|1 >>,
+C<< Comment => $comment >>, C<< Name => $string >>, C<< Time => $number >>,
+C<< TextFlag => 0|1 >>, C<< HeaderCRC => 0|1 >>, C<< OS_Code => $value >>,
+C<< ExtraField => $data >>, C<< ExtraFlags => $value >>, C<< Strict => 0|1
+>>
 
 =item Examples
 
@@ -20643,7 +24406,7 @@ WorkFactor => number >>, -Level, -Strategy, C<< Strict => 0|1 >>
 
 =item Importing 
 
-:all, :constants, :flush, :level, :strategy, :zip_method
+:all, :constants, :flush, :level, :strategy
 
 =item EXAMPLES
 
@@ -20657,125 +24420,8 @@ WorkFactor => number >>, -Level, -Strategy, C<< Strict => 0|1 >>
 
 =back
 
-=head2 IO::Dir - supply object methods for directory handles
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
-rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
-
-=item SEE ALSO
-
-=item AUTHOR
-
-=item COPYRIGHT
-
-=back
-
-=head2 IO::File - supply object methods for filehandles
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item CONSTRUCTOR
-
-new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
-
-=item METHODS
-
-open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS ), binmode(
-[LAYER] )
-
-=item NOTE
-
-=item SEE ALSO
-
-=item HISTORY
-
-=back
-
-=head2 IO::Handle - supply object methods for I/O handles
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item CONSTRUCTOR
-
-new (), new_from_fd ( FD, MODE )
-
-=item METHODS
-
-$io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
-$io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
-$io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
-$io->blocking ( [ BOOL ] ), $io->untaint
-
-=item NOTE
-
-=item SEE ALSO
-
-=item BUGS
-
-=item HISTORY
-
-=back
-
-=head2 IO::Pipe - supply object methods for pipes
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item CONSTRUCTOR
-
-new ( [READER, WRITER] )
-
-=item METHODS
-
-reader ([ARGS]), writer ([ARGS]), handles ()
-
-=item SEE ALSO
-
-=item AUTHOR
-
-=item COPYRIGHT
-
-=back
-
-=head2 IO::Poll - Object interface to system poll call
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item METHODS
-
-mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
-IO ), handles( [ EVENT_MASK ] )
-
-=item SEE ALSO
-
-=item AUTHOR
-
-=item COPYRIGHT
-
-=back
-
-=head2 IO::Seekable - supply seek based methods for I/O objects
+=head2 IO_Compress_Zlib::IO::Compress::RawDeflate, IO::Compress::RawDeflate
+- Write RFC 1951 files/buffers
 
 =over 4
 
@@ -20783,122 +24429,99 @@ IO ), handles( [ EVENT_MASK ] )
 
 =item DESCRIPTION
 
-$io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
-WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
-$io->tell
-
-=item SEE ALSO
-
-=item HISTORY
-
-=back
-
-=head2 IO::Select - OO interface to the select system call
+=item Functional Interface
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item CONSTRUCTOR
-
-new ( [ HANDLES ] )
+=item rawdeflate $input => $output [, OPTS]
 
-=item METHODS
+A filename, A filehandle, A scalar reference, An array reference, An Input
+FileGlob string, A filename, A filehandle, A scalar reference, An Array
+Reference, An Output FileGlob
 
-add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
-[ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
-count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
+=item Notes
 
-=item EXAMPLE
+=item Optional Parameters
 
-=item AUTHOR
+C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
 
-=item COPYRIGHT
+=item Examples
 
 =back
 
-=head2 IO::Socket - Object interface to socket communications
+=item OO Interface
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item CONSTRUCTOR
-
-new ( [ARGS] )
-
-=item METHODS
+=item Constructor
 
-accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
-protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
+A filename, A filehandle, A scalar reference
 
-=item SEE ALSO
+=item Constructor Options
 
-=item AUTHOR
+C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
+Filehandle, C<< Merge => 0|1 >>, -Level, -Strategy, C<< Strict => 0|1 >>
 
-=item COPYRIGHT
+=item Examples
 
 =back
 
-=head2 IO::Socket::INET - Object interface for AF_INET domain sockets
+=item Methods 
 
 =over 4
 
-=item SYNOPSIS
+=item print
 
-=item DESCRIPTION
+=item printf
 
-=item CONSTRUCTOR
+=item syswrite
 
-new ( [ARGS] )
+=item write
 
-=over 4
+=item flush
 
-=item METHODS
+=item tell
 
-sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
-()
+=item eof
 
-=back
+=item seek
 
-=item SEE ALSO
+=item binmode
 
-=item AUTHOR
+=item opened
 
-=item COPYRIGHT
+=item autoflush
 
-=back
+=item input_line_number
 
-=head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
+=item fileno
 
-=over 4
+=item close
 
-=item SYNOPSIS
+=item newStream([OPTS])
 
-=item DESCRIPTION
+=item deflateParams
 
-=item CONSTRUCTOR
+=back
 
-new ( [ARGS] )
+=item Importing 
 
-=item METHODS
+:all, :constants, :flush, :level, :strategy
 
-hostpath(), peerpath()
+=item EXAMPLES
 
 =item SEE ALSO
 
 =item AUTHOR
 
-=item COPYRIGHT
+=item MODIFICATION HISTORY
+
+=item COPYRIGHT AND LICENSE
 
 =back
 
-=head2 IO::Uncompress::AnyInflate - Uncompress zlib-based (zip, gzip)
-file/buffer
+=head2 IO_Compress_Zlib::IO::Compress::Zip, IO::Compress::Zip - Write zip
+files/buffers
 
 =over 4
 
@@ -20906,15 +24529,11 @@ file/buffer
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find, RFC 1950, RFC 1951, gzip (RFC 1952), zip
-
 =item Functional Interface
 
 =over 4
 
-=item anyinflate $input => $output [, OPTS]
+=item zip $input => $output [, OPTS]
 
 A filename, A filehandle, A scalar reference, An array reference, An Input
 FileGlob string, A filename, A filehandle, A scalar reference, An Array
@@ -20924,8 +24543,7 @@ Reference, An Output FileGlob
 
 =item Optional Parameters
 
-C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+C<< AutoClose => 0|1 >>, C<< BinModeIn => 0|1 >>, C<< Append => 0|1 >>
 
 =item Examples
 
@@ -20941,10 +24559,14 @@ A filename, A filehandle, A scalar reference
 
 =item Constructor Options
 
-C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
->>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
->>
+C<< AutoClose => 0|1 >>, C<< Append => 0|1 >>, A Buffer, A Filename, A
+Filehandle, C<< Name => $string >>, C<< Time => $number >>, C<< ExtAttr =>
+$attr >>, C<< exTime => [$atime, $mtime, $ctime] >>, C<< Comment =>
+$comment >>, C<< ZipComment => $comment >>, C<< Method => $method >>, C<<
+Stream => 0|1 >>, C<< Zip64 => 0|1 >>, C<< TextFlag => 0|1 >>, C<<
+ExtraFieldLocal => $data >> =item C<< ExtraFieldCentral => $data >>, C<<
+Minimal => 1|0 >>, C<< BlockSize100K => number >>, C<< WorkFactor => number
+>>, -Level, -Strategy, C<< Strict => 0|1 >>
 
 =item Examples
 
@@ -20954,19 +24576,15 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
 
 =over 4
 
-=item read
-
-=item read
-
-=item getline
+=item print
 
-=item getc
+=item printf
 
-=item ungetc
+=item syswrite
 
-=item inflateSync
+=item write
 
-=item getHeaderInfo
+=item flush
 
 =item tell
 
@@ -20986,15 +24604,15 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
 
 =item close
 
-=item nextStream
+=item newStream([OPTS])
 
-=item trailingData
+=item deflateParams
 
 =back
 
 =item Importing 
 
-:all
+:all, :constants, :flush, :level, :strategy, :zip_method
 
 =item EXAMPLES
 
@@ -21008,8 +24626,8 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
 
 =back
 
-=head2 IO::Uncompress::AnyUncompress - Uncompress gzip, zip, bzip2 or lzop
-file/buffer
+=head2 IO_Compress_Zlib::IO::Uncompress::AnyInflate,
+IO::Uncompress::AnyInflate - Uncompress zlib-based (zip, gzip) file/buffer
 
 =over 4
 
@@ -21017,15 +24635,13 @@ file/buffer
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find, RFC 1950, RFC 1951, gzip (RFC 1952), zip, bzip2, lzop
+RFC 1950, RFC 1951 (optionally), gzip (RFC 1952), zip
 
 =item Functional Interface
 
 =over 4
 
-=item anyuncompress $input => $output [, OPTS]
+=item anyinflate $input => $output [, OPTS]
 
 A filename, A filehandle, A scalar reference, An array reference, An Input
 FileGlob string, A filename, A filehandle, A scalar reference, An Array
@@ -21036,7 +24652,7 @@ Reference, An Output FileGlob
 =item Optional Parameters
 
 C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
 
 =item Examples
 
@@ -21054,7 +24670,10 @@ A filename, A filehandle, A scalar reference
 
 C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
 >>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
-$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
+$size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< RawInflate => 0|1
+>>, C<< ParseExtra => 0|1 >> If the gzip FEXTRA header field is present and
+this option is set, it will force the module to check that it conforms to
+the sub-field structure as defined in RFC 1952
 
 =item Examples
 
@@ -21074,6 +24693,8 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =item ungetc
 
+=item inflateSync
+
 =item getHeaderInfo
 
 =item tell
@@ -21116,25 +24737,8 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =back
 
-=head2 IO::Uncompress::Base - Base Class for IO::Uncompress modules 
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item SEE ALSO
-
-=item AUTHOR
-
-=item MODIFICATION HISTORY
-
-=item COPYRIGHT AND LICENSE
-
-=back
-
-=head2 IO::Uncompress::Gunzip - Read RFC 1952 files/buffers
+=head2 IO_Compress_Zlib::IO::Uncompress::Gunzip, IO::Uncompress::Gunzip -
+Read RFC 1952 files/buffers
 
 =over 4
 
@@ -21142,10 +24746,6 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
-
 =item Functional Interface
 
 =over 4
@@ -21161,7 +24761,7 @@ Reference, An Output FileGlob
 =item Optional Parameters
 
 C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
 
 =item Examples
 
@@ -21180,7 +24780,9 @@ A filename, A filehandle, A scalar reference
 C<< AutoClose => 0|1 >>, C<< MultiStream => 0|1 >>, C<< Prime => $string
 >>, C<< Transparent => 0|1 >>, C<< BlockSize => $num >>, C<< InputLength =>
 $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>, C<< ParseExtra => 0|1
->>
+>> If the gzip FEXTRA header field is present and this option is set, it
+will force the module to check that it conforms to the sub-field structure
+as defined in RFC 1952
 
 =item Examples
 
@@ -21246,7 +24848,8 @@ Name, Comment
 
 =back
 
-=head2 IO::Uncompress::Inflate - Read RFC 1950 files/buffers
+=head2 IO_Compress_Zlib::IO::Uncompress::Inflate, IO::Uncompress::Inflate -
+Read RFC 1950 files/buffers
 
 =over 4
 
@@ -21254,10 +24857,6 @@ Name, Comment
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
-
 =item Functional Interface
 
 =over 4
@@ -21273,7 +24872,7 @@ Reference, An Output FileGlob
 =item Optional Parameters
 
 C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
 
 =item Examples
 
@@ -21355,7 +24954,8 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =back
 
-=head2 IO::Uncompress::RawInflate - Read RFC 1951 files/buffers
+=head2 IO_Compress_Zlib::IO::Uncompress::RawInflate,
+IO::Uncompress::RawInflate - Read RFC 1951 files/buffers
 
 =over 4
 
@@ -21363,10 +24963,6 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
-
 =item Functional Interface
 
 =over 4
@@ -21382,7 +24978,7 @@ Reference, An Output FileGlob
 =item Optional Parameters
 
 C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
 
 =item Examples
 
@@ -21464,7 +25060,8 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =back
 
-=head2 IO::Uncompress::Unzip - Read zip files/buffers
+=head2 IO_Compress_Zlib::IO::Uncompress::Unzip, IO::Uncompress::Unzip -
+Read zip files/buffers
 
 =over 4
 
@@ -21472,10 +25069,6 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =item DESCRIPTION
 
-DO NOT use in production code, The documentation is incomplete in places,
-Parts of the interface defined here are tentative, Please report any
-problems you find
-
 =item Functional Interface
 
 =over 4
@@ -21491,7 +25084,7 @@ Reference, An Output FileGlob
 =item Optional Parameters
 
 C<< AutoClose => 0|1 >>, C<< BinModeOut => 0|1 >>, C<< Append => 0|1 >>,
-C<< MultiStream => 0|1 >>
+C<< MultiStream => 0|1 >>, C<< TrailingData => $scalar >>
 
 =item Examples
 
@@ -21573,7 +25166,7 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =back
 
-=head2 IO::Zlib - IO:: style interface to L<Compress::Zlib>
+=head2 IPC::Msg - SysV Msg IPC object class
 
 =over 4
 
@@ -21581,46 +25174,52 @@ $size >>, C<< Append => 0|1 >>, C<< Strict => 0|1 >>
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item METHODS
 
-new ( [ARGS] )
+new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
+( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
+FLAGS ] ), stat
 
-=item OBJECT METHODS
+=item SEE ALSO
 
-open ( FILENAME, MODE ), opened, close, getc, getline, getlines, print (
-ARGS... ), read ( BUF, NBYTES, [OFFSET] ), eof, seek ( OFFSET, WHENCE ),
-tell, setpos ( POS ), getpos ( POS )
+=item AUTHOR
 
-=item USING THE EXTERNAL GZIP
+=item COPYRIGHT
 
-=item CLASS METHODS
+=back
 
-has_Compress_Zlib, gzip_external, gzip_used, gzip_read_open,
-gzip_write_open
+=head2 IPC::Open2, open2 - open a process for both reading and writing
 
-=item DIAGNOSTICS
+=over 4
 
-IO::Zlib::getlines: must be called in list context,
-IO::Zlib::gzopen_external: mode '...' is illegal, IO::Zlib::import: '...'
-is illegal, IO::Zlib::import: ':gzip_external' requires an argument,
-IO::Zlib::import: 'gzip_read_open' requires an argument, IO::Zlib::import:
-'gzip_read' '...' is illegal, IO::Zlib::import: 'gzip_write_open' requires
-an argument, IO::Zlib::import: 'gzip_write_open' '...' is illegal,
-IO::Zlib::import: no Compress::Zlib and no external gzip, IO::Zlib::open:
-needs a filename, IO::Zlib::READ: NBYTES must be specified, IO::Zlib::READ:
-OFFSET is not supported, IO::Zlib::WRITE: too long LENGTH, IO::Zlib::WRITE:
-OFFSET is not supported
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item WARNING 
 
 =item SEE ALSO
 
-=item HISTORY
+=back
 
-=item COPYRIGHT
+=head2 IPC::Open3, open3 - open a process for reading, writing, and error
+handling
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item See Also
+
+L<IPC::Open2>, L<IPC::Run>
+
+=item WARNING
 
 =back
 
-=head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
-handles
+=head2 IPC::Semaphore - SysV Semaphore IPC object class
 
 =over 4
 
@@ -21628,8 +25227,12 @@ handles
 
 =item DESCRIPTION
 
-new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
-rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
+=item METHODS
+
+new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
+getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
+set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
+, VALUE ), stat
 
 =item SEE ALSO
 
@@ -21639,7 +25242,7 @@ rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
 
 =back
 
-=head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
+=head2 IPC::SysV - SysV IPC constants
 
 =over 4
 
@@ -21647,25 +25250,63 @@ rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+ftok( PATH, ID )
 
-new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
+=item SEE ALSO
+
+=item AUTHORS
+
+=item COPYRIGHT
+
+=back
+
+=head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
 
 =item METHODS
 
-open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS ), binmode(
-[LAYER] )
+new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
+( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
+FLAGS ] ), stat
 
-=item NOTE
+=item SEE ALSO
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
+class
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
+getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
+set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
+, VALUE ), stat
 
 =item SEE ALSO
 
-=item HISTORY
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
-handles
+=head2 IPCmd, IPC::Cmd - finding and running system commands made easy
 
 =over 4
 
@@ -21673,44 +25314,77 @@ handles
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+=item CLASS METHODS 
 
-new (), new_from_fd ( FD, MODE )
+=over 4
 
-=item METHODS
+=item $bool = IPC::Cmd->can_use_ipc_run( [VERBOSE] )
 
-$io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
-$io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
-$io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
-$io->blocking ( [ BOOL ] ), $io->untaint
+=back
 
-=item NOTE
+=back
 
-=item SEE ALSO
+=over 4
 
-=item BUGS
+=item $bool = IPC::Cmd->can_use_ipc_open3( [VERBOSE] )
 
-=item HISTORY
+=back
+
+=over 4
+
+=item $bool = IPC::Cmd->can_capture_buffer
 
 =back
 
-=head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
+=over 4
+
+=item FUNCTIONS
+
+=over 4
+
+=item $path = can_run( PROGRAM );
+
+=back
+
+=back
+
+=over 4
+
+=item $ok | ($ok, $err, $full_buf, $stdout_buff, $stderr_buff) = run(
+command => COMMAND, [verbose => BOOL, buffer => \$SCALAR] );
+
+command, verbose, buffer, success, errorcode, full_buffer, out_buffer,
+error_buffer
+
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item HOW IT WORKS
+
+=item Global Variables
+
+=over 4
+
+=item $IPC::Cmd::VERBOSE
+
+=item $IPC::Cmd::USE_IPC_RUN
+
+=item $IPC::Cmd::USE_IPC_OPEN3
+
+=item $IPC::Cmd::WARN
 
-=item DESCRIPTION
+=back
 
-=item CONSTRUCTOR
+=item Caveats
 
-new ( [READER, WRITER] )
+Whitespace, IO Redirect
 
-=item METHODS
+=item See Also
 
-reader ([ARGS]), writer ([ARGS]), handles ()
+=item ACKNOWLEDGEMENTS
 
-=item SEE ALSO
+=item BUG REPORTS
 
 =item AUTHOR
 
@@ -21718,7 +25392,7 @@ reader ([ARGS]), writer ([ARGS]), handles ()
 
 =back
 
-=head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
+=head2 List::Util - A selection of general-utility list subroutines
 
 =over 4
 
@@ -21726,21 +25400,21 @@ reader ([ARGS]), writer ([ARGS]), handles ()
 
 =item DESCRIPTION
 
-=item METHODS
+first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
+BLOCK LIST, shuffle LIST, sum LIST
 
-mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
-IO ), handles( [ EVENT_MASK ] )
+=item KNOWN BUGS
 
-=item SEE ALSO
+=item SUGGESTED ADDITIONS
 
-=item AUTHOR
+=item SEE ALSO
 
 =item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
-I/O objects
+=head2 List::Utilib::List::Util, List::Util - A selection of
+general-utility list subroutines
 
 =over 4
 
@@ -21748,18 +25422,21 @@ I/O objects
 
 =item DESCRIPTION
 
-$io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
-WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
-$io->tell
+first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
+BLOCK LIST, shuffle LIST, sum LIST
+
+=item KNOWN BUGS
+
+=item SUGGESTED ADDITIONS
 
 =item SEE ALSO
 
-=item HISTORY
+=item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
-call
+=head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
+general-utility scalar subroutines
 
 =over 4
 
@@ -21767,26 +25444,21 @@ call
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
-
-new ( [ HANDLES ] )
-
-=item METHODS
-
-add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
-[ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
-count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
+blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
+looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
+set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
 
-=item EXAMPLE
+=item KNOWN BUGS
 
-=item AUTHOR
+=item SEE ALSO
 
 =item COPYRIGHT
 
+=item BLATANT PLUG
+
 =back
 
-=head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
-communications
+=head2 Locale::Constants - constants for Locale codes
 
 =over 4
 
@@ -21794,25 +25466,19 @@ communications
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
-
-new ( [ARGS] )
-
-=item METHODS
-
-accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
-protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
+=item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
+Locale::Language, Locale::Country, Locale::Script, Locale::Currency
+
 =item AUTHOR
 
 =item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
-AF_INET domain sockets
+=head2 Locale::Country - ISO codes for country identification (ISO 3166)
 
 =over 4
 
@@ -21820,29 +25486,48 @@ AF_INET domain sockets
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+B<alpha-2>, B<alpha-3>, B<numeric>
 
-new ( [ARGS] )
+=item CONVERSION ROUTINES
+
+code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
+country_code2code( CODE, CODESET, CODESET )
+
+=item QUERY ROUTINES
+
+C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
+
+=item SEMI-PRIVATE ROUTINES
 
 =over 4
 
-=item METHODS
+=item alias_code
 
-sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
-()
+=item rename_country
 
 =back
 
+=item EXAMPLES
+
+=item DOMAIN NAMES
+
+=item KNOWN BUGS AND LIMITATIONS
+
 =item SEE ALSO
 
+Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
+3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
+http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
+http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
+
 =item AUTHOR
 
 =item COPYRIGHT
 
 =back
 
-=head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
-AF_UNIX domain sockets
+=head2 Locale::Currency - ISO three letter codes for currency
+identification (ISO 4217)
 
 =over 4
 
@@ -21850,23 +25535,33 @@ AF_UNIX domain sockets
 
 =item DESCRIPTION
 
-=item CONSTRUCTOR
+XTS, XXX
 
-new ( [ARGS] )
+=item CONVERSION ROUTINES
 
-=item METHODS
+code2currency(), currency2code()
 
-hostpath(), peerpath()
+=item QUERY ROUTINES
+
+C<all_currency_codes()>, C<all_currency_names()>
+
+=item EXAMPLES
+
+=item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
+Locale::Country, Locale::Script, ISO 4217:1995,
+http://www.bsi-global.com/iso4217currency
+
 =item AUTHOR
 
 =item COPYRIGHT
 
 =back
 
-=head2 IPC::Msg - SysV Msg IPC object class
+=head2 Locale::Language - ISO two letter codes for language identification
+(ISO 639)
 
 =over 4
 
@@ -21874,21 +25569,30 @@ hostpath(), peerpath()
 
 =item DESCRIPTION
 
-=item METHODS
+=item CONVERSION ROUTINES
 
-new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
-( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
-FLAGS ] ), stat
+code2language(), language2code()
+
+=item QUERY ROUTINES
+
+C<all_language_codes()>, C<all_language_names()>
+
+=item EXAMPLES
+
+=item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
+Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
+http://lcweb.loc.gov/standards/iso639-2/langhome.html
+
 =item AUTHOR
 
 =item COPYRIGHT
 
 =back
 
-=head2 IPC::Open2, open2 - open a process for both reading and writing
+=head2 Locale::Maketext - framework for localization
 
 =over 4
 
@@ -21896,117 +25600,101 @@ FLAGS ] ), stat
 
 =item DESCRIPTION
 
-=item WARNING 
-
-=item SEE ALSO
-
-=back
+=item QUICK OVERVIEW
 
-=head2 IPC::Open3, open3 - open a process for reading, writing, and error
-handling
+=item METHODS
 
 =over 4
 
-=item SYNOPSIS
+=item Construction Methods
 
-=item DESCRIPTION
+=item The "maketext" Method
 
-=item See Also
+$lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
 
-L<IPC::Open2>, L<IPC::Run>
+=item Utility Methods
 
-=item WARNING
+$language->quant($number, $singular), $language->quant($number, $singular,
+$plural), $language->quant($number, $singular, $plural, $negative),
+$language->numf($number), $language->sprintf($format, @items),
+$language->language_tag(), $language->encoding()
+
+=item Language Handle Attributes and Internals
 
 =back
 
-=head2 IPC::Semaphore - SysV Semaphore IPC object class
+=item LANGUAGE CLASS HIERARCHIES
 
-=over 4
+=item ENTRIES IN EACH LEXICON
 
-=item SYNOPSIS
+=item BRACKET NOTATION
 
-=item DESCRIPTION
+=item AUTO LEXICONS
 
-=item METHODS
+=item CONTROLLING LOOKUP FAILURE
 
-new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
-getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
-set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
-, VALUE ), stat
+=item HOW TO USE MAKETEXT
 
 =item SEE ALSO
 
-=item AUTHOR
+=item COPYRIGHT AND DISCLAIMER
 
-=item COPYRIGHT
+=item AUTHOR
 
 =back
 
-=head2 IPC::SysV - SysV IPC constants
+=head2 Locale::Maketext::Simple - Simple interface to
+Locale::Maketext::Lexicon
 
 =over 4
 
+=item VERSION
+
 =item SYNOPSIS
 
 =item DESCRIPTION
 
-ftok( PATH, ID )
-
-=item SEE ALSO
-
-=item AUTHORS
-
-=item COPYRIGHT
-
-=back
-
-=head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
+=item OPTIONS
 
 =over 4
 
-=item SYNOPSIS
+=item Class
 
-=item DESCRIPTION
+=item Path
 
-=item METHODS
+=item Style
 
-new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
-( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
-FLAGS ] ), stat
+=item Export
 
-=item SEE ALSO
+=item Subclass
 
-=item AUTHOR
+=item Decode
 
-=item COPYRIGHT
+=item Encoding
 
 =back
 
-=head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
-class
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item ACKNOWLEDGMENTS
 
-=item DESCRIPTION
+=item SEE ALSO
 
-=item METHODS
+=item AUTHORS
 
-new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
-getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
-set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
-, VALUE ), stat
+=item COPYRIGHT
 
-=item SEE ALSO
+=over 4
 
-=item AUTHOR
+=item The "MIT" License
 
-=item COPYRIGHT
+=back
 
 =back
 
-=head2 List::Util - A selection of general-utility list subroutines
+=head2 Locale::Maketext::TPJ13 -- article about software localization
 
 =over 4
 
@@ -22014,39 +25702,37 @@ set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
 
 =item DESCRIPTION
 
-first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
-BLOCK LIST, shuffle LIST, sum LIST
+=item Localization and Perl: gettext breaks, Maketext fixes
 
-=item KNOWN BUGS
+=over 4
 
-=item SUGGESTED ADDITIONS
+=item A Localization Horror Story: It Could Happen To You
 
-=item COPYRIGHT
+=item The Linguistic View
 
-=back
+=item Breaking gettext
 
-=head2 List::Utilib::List::Util, List::Util - A selection of
-general-utility list subroutines
+=item Replacing gettext
 
-=over 4
+=item Buzzwords: Abstraction and Encapsulation
+
+=item Buzzword: Isomorphism
 
-=item SYNOPSIS
+=item Buzzword: Inheritance
 
-=item DESCRIPTION
+=item Buzzword: Concision
 
-first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
-BLOCK LIST, shuffle LIST, sum LIST
+=item The Devil in the Details
 
-=item KNOWN BUGS
+=item The Proof in the Pudding: Localizing Web Sites
 
-=item SUGGESTED ADDITIONS
+=item References
 
-=item COPYRIGHT
+=back
 
 =back
 
-=head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
-general-utility scalar subroutines
+=head2 Locale::Script - ISO codes for script identification (ISO 15924)
 
 =over 4
 
@@ -22054,31 +25740,31 @@ general-utility scalar subroutines
 
 =item DESCRIPTION
 
-blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
-looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
-set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
-
-=item KNOWN BUGS
+B<alpha-2>, B<alpha-3>, B<numeric>
 
-=item COPYRIGHT
+=over 4
 
-=item BLATANT PLUG
+=item SPECIAL CODES
 
 =back
 
-=head2 Locale::Constants - constants for Locale codes
+=item CONVERSION ROUTINES
 
-=over 4
+code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
+script_code2code( CODE, CODESET, CODESET )
 
-=item SYNOPSIS
+=item QUERY ROUTINES
 
-=item DESCRIPTION
+C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
+
+=item EXAMPLES
 
 =item KNOWN BUGS AND LIMITATIONS
 
 =item SEE ALSO
 
-Locale::Language, Locale::Country, Locale::Script, Locale::Currency
+Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
+http://www.evertype.com/standards/iso15924/
 
 =item AUTHOR
 
@@ -22086,7 +25772,7 @@ Locale::Language, Locale::Country, Locale::Script, Locale::Currency
 
 =back
 
-=head2 Locale::Country - ISO codes for country identification (ISO 3166)
+=head2 Log::Message - A generic message storing mechanism;
 
 =over 4
 
@@ -22094,82 +25780,76 @@ Locale::Language, Locale::Country, Locale::Script, Locale::Currency
 
 =item DESCRIPTION
 
-B<alpha-2>, B<alpha-3>, B<numeric>
+=item Hierarchy
 
-=item CONVERSION ROUTINES
+Log::Message, Log::Message::Item, Log::Message::Handlers,
+Log::Message::Config
 
-code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
-country_code2code( CODE, CODESET, CODESET )
+=item Options
 
-=item QUERY ROUTINES
+config, private, verbose, tag, level, remove, chrono
 
-C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
+=back
 
-=item SEMI-PRIVATE ROUTINES
+=over 4
+
+=item Methods
 
 =over 4
 
-=item alias_code
+=item new
 
-=item rename_country
+=back
 
 =back
 
-=item EXAMPLES
+=over 4
 
-=item DOMAIN NAMES
+=item store
 
-=item KNOWN BUGS AND LIMITATIONS
+message, tag, level, extra
 
-=item SEE ALSO
+=back
 
-Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
-3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
-http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
-http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
+=over 4
 
-=item AUTHOR
+=item retrieve
 
-=item COPYRIGHT
+tag, level, message, amount, chrono, remove
 
 =back
 
-=head2 Locale::Currency - ISO three letter codes for currency
-identification (ISO 4217)
-
 =over 4
 
-=item SYNOPSIS
+=item first
 
-=item DESCRIPTION
+=back
 
-XTS, XXX
+=over 4
 
-=item CONVERSION ROUTINES
+=item last
 
-code2currency(), currency2code()
+=back
 
-=item QUERY ROUTINES
+=over 4
 
-C<all_currency_codes()>, C<all_currency_names()>
+=item flush
 
-=item EXAMPLES
+=back
 
-=item KNOWN BUGS AND LIMITATIONS
+=over 4
 
 =item SEE ALSO
 
-Locale::Country, Locale::Script, ISO 4217:1995,
-http://www.bsi-global.com/iso4217currency
-
 =item AUTHOR
 
+=item Acknowledgements
+
 =item COPYRIGHT
 
 =back
 
-=head2 Locale::Language - ISO two letter codes for language identification
-(ISO 639)
+=head2 Log::Message::Config - Configuration options for Log::Message
 
 =over 4
 
@@ -22177,81 +25857,91 @@ http://www.bsi-global.com/iso4217currency
 
 =item DESCRIPTION
 
-=item CONVERSION ROUTINES
+=item SEE ALSO
 
-code2language(), language2code()
+=item AUTHOR
 
-=item QUERY ROUTINES
+=item Acknowledgements
 
-C<all_language_codes()>, C<all_language_names()>
+=item COPYRIGHT
 
-=item EXAMPLES
+=back
 
-=item KNOWN BUGS AND LIMITATIONS
+=head2 Log::Message::Handlers - Message handlers for Log::Message
 
-=item SEE ALSO
+=over 4
 
-Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
-http://lcweb.loc.gov/standards/iso639-2/langhome.html
+=item SYNOPSIS
 
-=item AUTHOR
+=item DESCRIPTION
 
-=item COPYRIGHT
+=item Default Handlers
+
+=over 4
+
+=item log
 
 =back
 
-=head2 Locale::Maketext - framework for localization
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item carp
 
-=item DESCRIPTION
+=back
 
-=item QUICK OVERVIEW
+=over 4
 
-=item METHODS
+=item croak
+
+=back
 
 =over 4
 
-=item Construction Methods
+=item cluck
 
-=item The "maketext" Method
+=back
 
-$lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
+=over 4
 
-=item Utility Methods
+=item confess
 
-$language->quant($number, $singular), $language->quant($number, $singular,
-$plural), $language->quant($number, $singular, $plural, $negative),
-$language->numf($number), $language->sprintf($format, @items),
-$language->language_tag(), $language->encoding()
+=back
 
-=item Language Handle Attributes and Internals
+=over 4
+
+=item die
 
 =back
 
-=item LANGUAGE CLASS HIERARCHIES
+=over 4
 
-=item ENTRIES IN EACH LEXICON
+=item warn
 
-=item BRACKET NOTATION
+=back
 
-=item AUTO LEXICONS
+=over 4
 
-=item CONTROLLING LOOKUP FAILURE
+=item trace
 
-=item HOW TO USE MAKETEXT
+=back
 
-=item SEE ALSO
+=over 4
 
-=item COPYRIGHT AND DISCLAIMER
+=item Custom Handlers
+
+=item SEE ALSO
 
 =item AUTHOR
 
+=item Acknowledgements
+
+=item COPYRIGHT
+
 =back
 
-=head2 Locale::Maketext::TPJ13 -- article about software localization
+=head2 Log::Message::Item  - Message objects for Log::Message
 
 =over 4
 
@@ -22259,37 +25949,41 @@ $language->language_tag(), $language->encoding()
 
 =item DESCRIPTION
 
-=item Localization and Perl: gettext breaks, Maketext fixes
+=item Methods and Accessors
 
 =over 4
 
-=item A Localization Horror Story: It Could Happen To You
+=item remove
 
-=item The Linguistic View
+=item id
 
-=item Breaking gettext
+=item when
 
-=item Replacing gettext
+=item message
 
-=item Buzzwords: Abstraction and Encapsulation
+=item level
 
-=item Buzzword: Isomorphism
+=item tag
 
-=item Buzzword: Inheritance
+=item shortmess
 
-=item Buzzword: Concision
+=item longmess
 
-=item The Devil in the Details
+=item parent
 
-=item The Proof in the Pudding: Localizing Web Sites
+=back
 
-=item References
+=item SEE ALSO
 
-=back
+=item AUTHOR
+
+=item Acknowledgements
+
+=item COPYRIGHT
 
 =back
 
-=head2 Locale::Script - ISO codes for script identification (ISO 15924)
+=head2 Log::Message::Simple
 
 =over 4
 
@@ -22297,35 +25991,53 @@ $language->language_tag(), $language->encoding()
 
 =item DESCRIPTION
 
-B<alpha-2>, B<alpha-3>, B<numeric>
+=item FUNCTIONS
 
 =over 4
 
-=item SPECIAL CODES
+=item msg("message string" [,VERBOSE])
+
+=item debug("message string" [,VERBOSE])
+
+=item error("error string" [,VERBOSE])
 
 =back
 
-=item CONVERSION ROUTINES
+=back
 
-code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
-script_code2code( CODE, CODESET, CODESET )
+=over 4
 
-=item QUERY ROUTINES
+=item carp();
 
-C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
+=item croak();
 
-=item EXAMPLES
+=item confess();
 
-=item KNOWN BUGS AND LIMITATIONS
+=item cluck();
 
-=item SEE ALSO
+=back
 
-Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
-http://www.evertype.com/standards/iso15924/
+=over 4
 
-=item AUTHOR
+=item CLASS METHODS
 
-=item COPYRIGHT
+=over 4
+
+=item Log::Message::Simple->stack()
+
+=item Log::Message::Simple->stack_as_string([TRACE])
+
+=item Log::Message::Simple->flush()
+
+=back
+
+=back
+
+=over 4
+
+=item GLOBAL VARIABLES
+
+$ERROR_FH, $MSG_FH, $DEBUG_FH, $STACKTRACE_ON_ERROR
 
 =back
 
@@ -22421,6 +26133,22 @@ ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
 
 =item precision()
 
+=item bexp()
+
+=item bnok()
+
+=item bpi()
+
+=item bcos()
+
+=item bsin()
+
+=item batan2()
+
+=item batan()
+
+=item bmuladd()
+
 =back
 
 =item Autocreating constants
@@ -22433,11 +26161,14 @@ ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
 
 =back
 
+=item EXPORTS
+
 =item BUGS
 
 =item CAVEATS
 
-stringify, bstr(), bdiv, Modifying and =, bpow, precision() vs. accuracy()
+stringify, bstr(), bdiv, brsft, Modifying and =, bpow, precision() vs.
+accuracy()
 
 =item SEE ALSO
 
@@ -22461,114 +26192,152 @@ Input, Output
 
 =over 4
 
-=item config
+=item config()
 
-=item accuracy
+=item accuracy()
 
-=item precision
+=item precision()
 
-=item brsft
+=item brsft()
 
-=item new
+=item new()
 
-=item bnan
+=item from_oct()
 
-=item bzero
+=item from_hex()
 
-=item binf
+=item from_bin()
 
-=item bone
+=item bnan()
+
+=item bzero()
+
+=item binf()
+
+=item bone()
 
 =item is_one()/is_zero()/is_nan()/is_inf()
 
-=item is_pos()/is_neg()
+=item is_pos()/is_neg()/is_positive()/is_negative()
 
        $x->is_pos();                   # true if > 0
        $x->is_neg();                   # true if < 0
 
 =item is_odd()/is_even()/is_int()
 
-=item bcmp
+=item bcmp()
+
+=item bacmp()
+
+=item sign()
+
+=item digit()
+
+=item bneg()
+
+=item babs()
 
-=item bacmp
+=item bnorm()
 
-=item sign
+=item bnot()
 
-=item digit
+=item binc()
 
-=item bneg
+=item bdec()
 
-=item babs
+=item badd()
 
-=item bnorm
+=item bsub()
 
-=item bnot
+=item bmul()
 
-=item binc
+=item bmuladd()
 
-=item bdec
+=item bdiv()
 
-=item badd
+=item bmod()
+
+=item bmodinv()
+
+=item bmodpow()
+
+=item bpow()
+
+=item blog()
+
+=item bexp()
+
+=item bnok()
 
-=item bsub
+=item bpi()
 
-=item bmul
+=item bcos()
 
-=item bdiv
+=item bsin()
 
-=item bmod
+=item batan2()
 
-=item bmodinv
+=item batan()
 
-=item bmodpow
+=item blsft()
 
-=item bpow
+=item brsft()
 
-=item blsft
+=item band()
 
-=item brsft
+=item bior()
 
-=item band
+=item bxor()
 
-=item bior
+=item bnot()
 
-=item bxor
+=item bsqrt()
+
+=item broot()
+
+=item bfac()
 
-=item bnot
+=item round()
+
+=item bround()
+
+=item bfround()
+
+=item bfloor()
 
-=item bsqrt
+=item bceil()
 
-=item bfac
+=item bgcd()
 
-=item round
+=item blcm()
 
-=item bround
+=item exponent()
 
-=item bfround
+=item mantissa()
 
-=item bfloor
+=item parts()
 
-=item bceil
+=item copy()
 
-=item bgcd
+=item as_int()/as_number()
 
-=item blcm
+=item bsstr()
 
-=item exponent
+=item as_hex()
 
-=item mantissa
+=item as_bin()
 
-=item parts
+=item as_oct()
 
-=item copy
+=item numify()
 
-=item as_int
+=item modify()
 
-=item bsstr
+=item upgrade()/downgrade()
 
-=item as_hex
+=item div_scale()
 
-=item as_bin
+=item round_mode()
 
 =back
 
@@ -22584,8 +26353,8 @@ Input, Output
 
 =item Rounding mode R
 
-'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
-(significant digits), Setting/Accessing, Creating numbers, Usage,
+'trunc', 'even', 'odd', '+inf', '-inf', 'zero', 'common', Precision,
+Accuracy (significant digits), Setting/Accessing, Creating numbers, Usage,
 Precedence, Overriding globals, Local settings, Rounding, Default values,
 Remarks
 
@@ -22631,14 +26400,11 @@ oct()/hex(), log(-inf), exp(), cos(), sin(), atan2()
 
 =item Auto-upgrade
 
-bsqrt(), div(), blog()
+bsqrt(), div(), blog(), bexp()
 
 =back
 
-=item BUGS
-
-broot() does not work, Out of Memory!, Fails to load Calc on Perl prior
-5.6.0
+=item EXPORTS
 
 =item CAVEATS
 
@@ -22765,27 +26531,39 @@ the same terms as Perl itself.
 
 =item parts()
 
-=item as_int()
+=item numify()
+
+=item as_int()/as_number()
 
 =item as_hex()
 
 =item as_bin()
 
-=item bfac()
+=item as_oct()
 
-=item blog()
+=item from_hex()/from_bin()/from_oct()
+
+=item length()
+
+=item digit()
+
+=item bnorm()
+
+=item bfac()
 
 =item bround()/round()/bfround()
 
 =item bmod()
 
+=item bneg()
+
 =item is_one()
 
 =item is_zero()
 
-=item is_pos()
+=item is_pos()/is_positive()
 
-=item is_neg()
+=item is_neg()/is_negative()
 
 =item is_int()
 
@@ -22803,7 +26581,27 @@ the same terms as Perl itself.
 
        $x->bsqrt();
 
-=item config
+=item broot()
+
+       $x->broot($n);
+
+=item badd()/bmul()/bsub()/bdiv()/bdec()/binc()
+
+=item copy()
+
+=item bstr()/bsstr()
+
+=item bacmp()/bcmp()
+
+=item blsft()/brsft()
+
+=item bpow()
+
+=item bexp()
+
+=item bnok()
+
+=item config()
 
 =back
 
@@ -23074,9 +26872,9 @@ Cookbook (L<Module::Build::Cookbook>)
 
 build, clean, code, config_data, diff, dist, distcheck, distclean, distdir,
 distmeta, distsign, disttest, docs, fakeinstall, help, html, install,
-manifest, manpages, ppd, ppmdist, prereq_report, pure_install, realclean,
-skipcheck, test, testcover, testdb, testpod, testpodcoverage,
-versioninstall
+manifest, manpages, pardist, ppd, ppmdist, prereq_report, pure_install,
+realclean, retest, skipcheck, test, testall, testcover, testdb, testpod,
+testpodcoverage, versioninstall
 
 =item OPTIONS
 
@@ -23124,8 +26922,8 @@ build_requires, create_packlist, c_source, conflicts, create_makefile_pl,
 create_readme, dist_abstract, dist_author, dist_name, dist_version,
 dist_version_from, dynamic_config, extra_compiler_flags,
 extra_linker_flags, get_options, type, store, default, include_dirs,
-install_path, installdirs, license, apache, artistic, bsd, gpl, lgpl, mit,
-mozilla, open_source, perl, restrictive, unrestricted, meta_add,
+install_path, installdirs, license, apache, artistic, artistic_2, bsd, gpl,
+lgpl, mit, mozilla, open_source, perl, restrictive, unrestricted, meta_add,
 meta_merge, module_name, PL_files, pm_files, pod_files, recommends,
 recursive_test_files, requires, script_files, sign, test_files, xs_files,
 new_from_context(%args), resume(), subclass()
@@ -23135,41 +26933,46 @@ new_from_context(%args), resume(), subclass()
 add_build_element($type), add_to_cleanup(@files), args(),
 autosplit_file($from, $to), base_dir(), build_requires(),
 check_installed_status($module, $version), check_installed_version($module,
-$version), compare_versions($v1, $op, $v2), config(), config_data($name),
-config_data($name => $value), conflicts(), contains_pod($file),
-copy_if_modified(%parameters), create_build_script(), current_action(),
-depends_on(@actions), dir_contains($first_dir, $second_dir),
-dispatch($action, %args), dist_dir(), dist_name(), dist_version(),
-do_system($cmd, @args), feature($name), feature($name => $value),
-have_c_compiler(), install_base_relpaths(), install_base_relpaths($type),
+$version), compare_versions($v1, $op, $v2), config($key), config($key,
+$value), config() [deprecated], config_data($name), config_data($name =>
+$value), conflicts(), contains_pod($file), copy_if_modified(%parameters),
+create_build_script(), current_action(), depends_on(@actions),
+dir_contains($first_dir, $second_dir), dispatch($action, %args),
+dist_dir(), dist_name(), dist_version(), do_system($cmd, @args),
+feature($name), feature($name => $value), have_c_compiler(),
+install_base_relpaths(), install_base_relpaths($type),
 install_base_relpaths($type => $path), install_destination($type),
 install_path(), install_path($type), install_path($type => $path),
 install_types(), invoked_action(), notes(), notes($key), notes($key =>
-$value), orig_dir(), os_type(), prefix_relpaths(),
-prefix_relpaths($installdirs), prefix_relpaths($installdirs, $type),
-prefix_relpaths($installdirs, $type => $path), prepare_metadata(),
-prereq_failures(), prereq_report(), prompt($message, $default),
-recommends(), requires(), rscan_dir($dir, $pattern), runtime_params(),
-runtime_params($key), script_files(), up_to_date($source_file,
-$derived_file), up_to_date(\@source_files, \@derived_files), y_n($message,
-$default)
+$value), orig_dir(), os_type(), is_vmsish(), is_windowsish(), is_unixish(),
+prefix_relpaths(), prefix_relpaths($installdirs),
+prefix_relpaths($installdirs, $type), prefix_relpaths($installdirs, $type
+=> $path), prepare_metadata(), prereq_failures(), prereq_report(),
+prompt($message, $default), recommends(), requires(), rscan_dir($dir,
+$pattern), runtime_params(), runtime_params($key), script_files(),
+up_to_date($source_file, $derived_file), up_to_date(\@source_files,
+\@derived_files), y_n($message, $default)
 
 =item Autogenerated Accessors
 
 PL_files(), allow_mb_mismatch(), autosplit(), base_dir(), bindoc_dirs(),
 blib(), build_bat(), build_class(), build_elements(), build_requires(),
-build_script(), c_source(), config(), config_dir(), conflicts(),
-create_makefile_pl(), create_packlist(), create_readme(), debugger(),
-destdir(), get_options(), html_css(), include_dirs(), install_base(),
-install_sets(), installdirs(), libdoc_dirs(), license(), magic_number(),
-mb_version(), meta_add(), meta_merge(), metafile(), module_name(),
-orig_dir(), original_prefix(), perl(), pm_files(), pod_files(), pollute(),
-prefix(), prereq_action_types(), quiet(), recommends(), recurse_into(),
-recursive_test_files(), requires(), scripts(), use_rcfile(), verbose(),
-xs_files()
+build_script(), c_source(), config_dir(), configure_requires(),
+conflicts(), create_makefile_pl(), create_packlist(), create_readme(),
+debugger(), destdir(), get_options(), html_css(), include_dirs(),
+install_base(), install_sets(), installdirs(), libdoc_dirs(), license(),
+magic_number(), mb_version(), meta_add(), meta_merge(), metafile(),
+module_name(), orig_dir(), original_prefix(), perl(), pm_files(),
+pod_files(), pollute(), prefix(), prereq_action_types(), quiet(),
+recommends(), recurse_into(), recursive_test_files(), requires(),
+scripts(), use_rcfile(), verbose(), xs_files()
 
 =back
 
+=item MODULE METADATA
+
+keywords, resources
+
 =item AUTHOR
 
 =item COPYRIGHT
@@ -23192,8 +26995,14 @@ xs_files()
 
 =over 4
 
+=item Types of prerequisites
+
+configure_requires, build_requires, requires, recommends, conflicts
+
 =item Format of prerequisites
 
+=item XS Extensions
+
 =back
 
 =item SAVING CONFIGURATION INFORMATION
@@ -23277,9 +27086,9 @@ auto_feature_names(), write()
 
 =over 4
 
-=item The basic installation recipe for modules that use Module::Build
+=item Installing modules that use Module::Build
 
-=item Making a CPAN.pm-compatible distribution
+=item Modifying Config.pm values
 
 =item Installing modules using the programmatic interface
 
@@ -23297,6 +27106,8 @@ auto_feature_names(), write()
 
 =over 4
 
+=item Making a CPAN.pm-compatible distribution
+
 =item Changing the order of the build process
 
 =item Adding new file types to the build process
@@ -23488,7 +27299,7 @@ new(), make_executable(), dispatch(), ACTION_realclean()
 
 =item Overridden Methods
 
-new
+_set_defaults
 
 =back
 
@@ -23500,6 +27311,28 @@ manpage_separator
 
 prefixify
 
+_quote_args
+
+have_forkpipe
+
+_backticks
+
+do_system
+
+_infer_xs_spec
+
+rscan_dir
+
+dist_dir
+
+man3page_name
+
+expand_test_dir
+
+_detildefy
+
+find_perl_interpreter
+
 =over 4
 
 =item AUTHOR
@@ -23629,6 +27462,71 @@ Module::Build works even if YAML.pm is not installed
 
 =item Caveats
 
+=item ACKNOWLEDGEMENTS
+
+=item BUG REPORTS
+
+=item AUTHOR
+
+=item COPYRIGHT
+
+=back
+
+=head2 Module::Load::Conditional - Looking up module information / loading
+at runtime
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Methods
+
+=item $href = check_install( module => NAME [, version => VERSION, verbose
+=> BOOL ] );
+
+module, version, verbose, file, version, uptodate
+
+=back
+
+=over 4
+
+=item $bool = can_load( modules => { NAME => VERSION [,NAME => VERSION] },
+[verbose => BOOL, nocache => BOOL] )
+
+modules, verbose, nocache
+
+=back
+
+=over 4
+
+=item @list = requires( MODULE );
+
+=back
+
+=over 4
+
+=item Global Variables
+
+=over 4
+
+=item $Module::Load::Conditional::VERBOSE
+
+=item $Module::Load::Conditional::FIND_VERSION
+
+=item $Module::Load::Conditional::CHECK_INC_HASH
+
+=item $Module::Load::Conditional::CACHE
+
+=item $Module::Load::Conditional::ERROR
+
+=back
+
+=item See Also
+
+=item BUG REPORTS
+
 =item AUTHOR
 
 =item COPYRIGHT
@@ -23673,6 +27571,86 @@ Module::Build works even if YAML.pm is not installed
 
 =back
 
+=head2 Module::Pluggable - automatically give your module the ability to
+have plugins
+
+=over 4
+
+=item SYNOPSIS
+
+=item EXAMPLE
+
+=item DESCRIPTION
+
+=item ADVANCED USAGE
+
+=item INNER PACKAGES
+
+=item OPTIONS
+
+=over 4
+
+=item sub_name
+
+=item search_path
+
+=item search_dirs 
+
+=item instantiate
+
+=item require
+
+=item inner
+
+=item only
+
+=item except
+
+=item package
+
+=item file_regex
+
+=back
+
+=item METHODs
+
+=over 4
+
+=item search_path
+
+=back
+
+=item FUTURE PLANS
+
+=item AUTHOR
+
+=item COPYING
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
+=head2 Module::Pluggable::Object - automatically give your module the
+ability to have plugins
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item AUTHOR
+
+=item COPYING
+
+=item BUGS
+
+=item SEE ALSO
+
+=back
+
 =head2 NDBM_File - Tied access to ndbm files
 
 =over 4
@@ -23812,11 +27790,11 @@ RECURSE ]), mkdir ( DIR [, RECURSE ]), alloc ( SIZE [, RECORD_SIZE] ), ls (
 put ( LOCAL_FILE [, REMOTE_FILE ] ), put_unique ( LOCAL_FILE [, REMOTE_FILE
 ] ), append ( LOCAL_FILE [, REMOTE_FILE ] ), unique_name (), mdtm ( FILE ),
 size ( FILE ), supported ( CMD ), hash ( [FILEHANDLE_GLOB_REF],[
-BYTES_PER_HASH_MARK] ), nlst ( [ DIR ] ), list ( [ DIR ] ), retr ( FILE ),
-stor ( FILE ), stou ( FILE ), appe ( FILE ), port ( [ PORT ] ), pasv (),
-pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_xfer_unique (
-SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait ( NON_PASV_SERVER ),
-abort (), quit ()
+BYTES_PER_HASH_MARK] ), feature ( NAME ), nlst ( [ DIR ] ), list ( [ DIR ]
+), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe ( FILE ), port ( [
+PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
+pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait (
+NON_PASV_SERVER ), abort (), quit ()
 
 =over 4
 
@@ -23945,8 +27923,8 @@ Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device [, $tos
 ]]]]]);, $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
 $p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
 $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
-[ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
-[, $timeout]);
+[ $host ] );, $p->nack( $failed_ack_host );, $p->close();,
+$p->port_number([$port_number]), pingecho($host [, $timeout]);
 
 =back
 
@@ -24195,57 +28173,177 @@ name
 
 =item CONSTRUCTOR
 
-lookup ( MACHINE [, LOGIN ])
+lookup ( MACHINE [, LOGIN ])
+
+=item METHODS
+
+login (), password (), account (), lpa ()
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=item COPYRIGHT
+
+=back
+
+=head2 O - Generic interface to Perl Compiler backends
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item CONVENTIONS
+
+=item IMPLEMENTATION
+
+=item BUGS
+
+=item AUTHOR
+
+=back
+
+=head2 ODBM_File - Tied access to odbm files
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
+
+=item DIAGNOSTICS
+
+=over 4
+
+=item C<odbm store returned -1, errno 22, key "..." at ...>
+
+=back
+
+=item BUGS AND WARNINGS
+
+=back
+
+=head2 Object::Accessor
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+=over 4
+
+=item $object = Object::Accessor->new( [ARGS] );
+
+=back
+
+=back
+
+=over 4
+
+=item $bool = $object->mk_accessors( @ACCESSORS | \%ACCESSOR_MAP );
+
+=back
+
+=over 4
+
+=item @list = $self->ls_accessors;
+
+=back
+
+=over 4
+
+=item $ref = $self->ls_allow(KEY)
+
+=back
+
+=over 4
+
+=item $clone = $self->mk_clone;
+
+=back
+
+=over 4
+
+=item $bool = $self->mk_flush;
+
+=back
+
+=over 4
+
+=item $bool = $self->mk_verify;
+
+=back
+
+=over 4
+
+=item $bool = $self->register_callback( sub { ... } );
+
+=back
 
-=item METHODS
+=over 4
 
-login (), password (), account (), lpa ()
+=item $bool = $self->can( METHOD_NAME )
 
-=item AUTHOR
+=back
 
-=item SEE ALSO
+=over 4
 
-=item COPYRIGHT
+=item $val = $self->___get( METHOD_NAME );
 
 =back
 
-=head2 O - Generic interface to Perl Compiler backends
-
 =over 4
 
-=item SYNOPSIS
+=item $bool = $self->___set( METHOD_NAME => VALUE );
 
-=item DESCRIPTION
+=back
 
-=item CONVENTIONS
+=over 4
 
-=item IMPLEMENTATION
+=item LVALUE ACCESSORS
 
-=item BUGS
+=over 4
 
-=item AUTHOR
+=item CAVEATS
+
+Allow handlers, Callbacks
 
 =back
 
-=head2 ODBM_File - Tied access to odbm files
+=back
 
 =over 4
 
-=item SYNOPSIS
+=item GLOBAL VARIABLES
 
-=item DESCRIPTION
+=over 4
 
-C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
+=item $Object::Accessor::FATAL
 
-=item DIAGNOSTICS
+=item $Object::Accessor::DEBUG
+
+=back
+
+=item TODO
 
 =over 4
 
-=item C<odbm store returned -1, errno 22, key "..." at ...>
+=item Create read-only accessors
 
 =back
 
-=item BUGS AND WARNINGS
+=item CAVEATS
+
+=item AUTHOR
+
+=item COPYRIGHT
 
 =back
 
@@ -24285,8 +28383,8 @@ opdump (PAT)
 
 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
-:filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
-:dangerous
+:filesys_write, :subprocess, :ownprocess, :others, :load,
+:still_to_be_decided, :dangerous
 
 =item SEE ALSO
 
@@ -24513,6 +28611,80 @@ WTERMSIG, WIFSTOPPED, WSTOPSIG
 
 =back
 
+=head2 Params::Check - A generic input parsing/checking mechanism.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Template
+
+default, required, strict_type, defined, no_override, store, allow
+
+=item Functions
+
+=over 4
+
+=item check( \%tmpl, \%args, [$verbose] );
+
+Template, Arguments, Verbose
+
+=back
+
+=back
+
+=over 4
+
+=item allow( $test_me, \@criteria );
+
+string, regexp, subroutine, array ref
+
+=back
+
+=over 4
+
+=item last_error()
+
+=back
+
+=over 4
+
+=item Global Variables
+
+=over 4
+
+=item $Params::Check::VERBOSE
+
+=item $Params::Check::STRICT_TYPE
+
+=item $Params::Check::ALLOW_UNKNOWN
+
+=item $Params::Check::STRIP_LEADING_DASHES
+
+=item $Params::Check::NO_DUPLICATES
+
+=item $Params::Check::PRESERVE_CASE
+
+=item $Params::Check::ONLY_ALLOW_DEFINED
+
+=item $Params::Check::SANITY_CHECK_TEMPLATE
+
+=item $Params::Check::WARNINGS_FATAL
+
+=item $Params::Check::CALLER_DEPTH
+
+=back
+
+=item AUTHOR
+
+=item Acknowledgements
+
+=item COPYRIGHT
+
+=back
+
 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
 name space
 
@@ -25536,6 +29708,8 @@ I<code-ref>|I<method-name>
 
 =item TREE-BASED PARSING
 
+=item CAVEATS
+
 =item SEE ALSO
 
 =item AUTHOR
@@ -26457,7 +30631,7 @@ C<-input>, C<-pathlist>, C<-noperldoc>
 
 =item AUTHOR
 
-=item ACKNOWLEDGEMENTS
+=item ACKNOWLEDGMENTS
 
 =back
 
@@ -26530,6 +30704,8 @@ set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
 
 =item KNOWN BUGS
 
+=item SEE ALSO
+
 =item COPYRIGHT
 
 =item BLATANT PLUG
@@ -26775,8 +30951,10 @@ $buffer ), $info = Storable::read_magic( $buffer, $must_be_file )
 B<openlog($ident, $logopt, $facility)>, B<syslog($priority, $message)>,
 B<syslog($priority, $format, @args)>, B<Note>,
 B<setlogmask($mask_priority)>, B<setlogsock($sock_type)>,
-B<setlogsock($sock_type, $stream_location)> (added in 5.004_02),
-B<closelog()>
+B<setlogsock($sock_type, $stream_location)> (added in Perl 5.004_02),
+B<Note>, B<closelog()>
+
+=item THE RULES OF SYS::SYSLOG
 
 =item EXAMPLES
 
@@ -26792,18 +30970,31 @@ B<closelog()>
 
 =item DIAGNOSTICS
 
-Invalid argument passed to setlogsock, no connection to syslog available,
-stream passed to setlogsock, but %s is not writable, stream passed to
-setlogsock, but could not find any device, tcp passed to setlogsock, but
-tcp service unavailable, syslog: expecting argument %s, syslog: invalid
-level/facility: %s, syslog: too many levels given: %s, syslog: too many
-facilities given: %s, syslog: level must be given, udp passed to
-setlogsock, but udp service unavailable, unix passed to setlogsock, but
-path not available
+C<Invalid argument passed to setlogsock>, C<eventlog passed to setlogsock,
+but no Win32 API available>, C<no connection to syslog available>, C<stream
+passed to setlogsock, but %s is not writable>, C<stream passed to
+setlogsock, but could not find any device>, C<tcp passed to setlogsock, but
+tcp service unavailable>, C<syslog: expecting argument %s>, C<syslog:
+invalid level/facility: %s>, C<syslog: too many levels given: %s>,
+C<syslog: too many facilities given: %s>, C<syslog: level must be given>,
+C<udp passed to setlogsock, but udp service unavailable>, C<unix passed to
+setlogsock, but path not available>
 
 =item SEE ALSO
 
-=item AUTHORS
+=over 4
+
+=item Manual Pages
+
+=item RFCs
+
+=item Articles
+
+=item Event Log
+
+=back
+
+=item AUTHORS & ACKNOWLEDGEMENTS
 
 =item BUGS
 
@@ -26812,6 +31003,8 @@ path not available
 AnnoCPAN: Annotated CPAN documentation, CPAN Ratings, RT: CPAN's request
 tracker, Search CPAN, Kobes' CPAN Search, Perl Documentation
 
+=item COPYRIGHT
+
 =item LICENSE
 
 =back
@@ -26834,8 +31027,10 @@ calls
 B<openlog($ident, $logopt, $facility)>, B<syslog($priority, $message)>,
 B<syslog($priority, $format, @args)>, B<Note>,
 B<setlogmask($mask_priority)>, B<setlogsock($sock_type)>,
-B<setlogsock($sock_type, $stream_location)> (added in 5.004_02),
-B<closelog()>
+B<setlogsock($sock_type, $stream_location)> (added in Perl 5.004_02),
+B<Note>, B<closelog()>
+
+=item THE RULES OF SYS::SYSLOG
 
 =item EXAMPLES
 
@@ -26851,18 +31046,31 @@ B<closelog()>
 
 =item DIAGNOSTICS
 
-Invalid argument passed to setlogsock, no connection to syslog available,
-stream passed to setlogsock, but %s is not writable, stream passed to
-setlogsock, but could not find any device, tcp passed to setlogsock, but
-tcp service unavailable, syslog: expecting argument %s, syslog: invalid
-level/facility: %s, syslog: too many levels given: %s, syslog: too many
-facilities given: %s, syslog: level must be given, udp passed to
-setlogsock, but udp service unavailable, unix passed to setlogsock, but
-path not available
+C<Invalid argument passed to setlogsock>, C<eventlog passed to setlogsock,
+but no Win32 API available>, C<no connection to syslog available>, C<stream
+passed to setlogsock, but %s is not writable>, C<stream passed to
+setlogsock, but could not find any device>, C<tcp passed to setlogsock, but
+tcp service unavailable>, C<syslog: expecting argument %s>, C<syslog:
+invalid level/facility: %s>, C<syslog: too many levels given: %s>,
+C<syslog: too many facilities given: %s>, C<syslog: level must be given>,
+C<udp passed to setlogsock, but udp service unavailable>, C<unix passed to
+setlogsock, but path not available>
 
 =item SEE ALSO
 
-=item AUTHORS
+=over 4
+
+=item Manual Pages
+
+=item RFCs
+
+=item Articles
+
+=item Event Log
+
+=back
+
+=item AUTHORS & ACKNOWLEDGEMENTS
 
 =item BUGS
 
@@ -26871,6 +31079,23 @@ path not available
 AnnoCPAN: Annotated CPAN documentation, CPAN Ratings, RT: CPAN's request
 tracker, Search CPAN, Kobes' CPAN Search, Perl Documentation
 
+=item COPYRIGHT
+
+=item LICENSE
+
+=back
+
+=head2 Syslog::win32::Win32, Sys::Syslog::Win32 - Win32 support for
+Sys::Syslog
+
+=over 4
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=item AUTHORS
+
 =item LICENSE
 
 =back
@@ -26911,39 +31136,168 @@ ANSI_COLORS_DISABLED
 
 =item SYNOPSIS
 
-=item DESCRIPTION
+=item DESCRIPTION
+
+=over 4
+
+=item METHODS
+
+=back
+
+=back
+
+B<Tgetent>, OSPEED, TERM
+
+B<Tpad>, B<$string>, B<$cnt>, B<$FH>
+
+B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
+
+B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
+
+B<Trequire>
+
+=over 4
+
+=item EXAMPLES
+
+=item COPYRIGHT AND LICENSE
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=back
+
+=head2 Term::Complete - Perl word completion module
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
+
+=item DIAGNOSTICS
+
+=item BUGS
+
+=item AUTHOR
+
+=back
+
+=head2 Term::ReadLine - Perl interface to various C<readline> packages.
+If no real package is found, substitutes stubs instead of basic functions.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item Minimal set of supported functions
+
+C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, C<OUT>, C<MinLine>,
+C<findConsole>, Attribs, C<Features>
+
+=item Additional supported functions
+
+C<tkRunning>, C<ornaments>, C<newTTY>
+
+=item EXPORTS
+
+=item ENVIRONMENT
+
+=item CAVEATS
+
+=back
+
+=head2 Term::UI - Term::ReadLine UI made easy
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item HOW IT WORKS
+
+=item METHODS
+
+=over 4
+
+=item $reply = $term->get_reply( prompt => 'question?', [choices => \@list,
+default => $list[0], multi => BOOL, print_me => "extra text to print &
+record", allow => $ref] );
+
+=back
+
+=back
+
+=over 4
+
+=item $bool = $term->ask_yn( prompt => "your question", [default =>
+(y|1,n|0), print_me => "extra text to print & record"] )
+
+=back
+
+=over 4
+
+=item ($opts, $munged) = $term->parse_options( STRING );
+
+=back
+
+=over 4
+
+=item $str = $term->history_as_string
+
+=back
+
+=over 4
+
+=item GLOBAL VARIABLES
+
+=over 4
+
+=item $Term::UI::VERBOSE
+
+=item $Term::UI::AUTOREPLY
 
-=over 4
+=item $Term::UI::INVALID
 
-=item METHODS
+=item $Term::UI::History::HISTORY_FH
 
 =back
 
-=back
+=item EXAMPLES
 
-B<Tgetent>, OSPEED, TERM
+=over 4
 
-B<Tpad>, B<$string>, B<$cnt>, B<$FH>
+=item Basic get_reply sample
 
-B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
+=item get_reply with choices
 
-B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
+=item get_reply with choices and default
 
-B<Trequire>
+=item get_reply using print_me & multi
 
-=over 4
+=item get_reply & allow
 
-=item EXAMPLES
+=item an elaborate ask_yn sample
 
-=item COPYRIGHT AND LICENSE
+=back
+
+=item See Also
+
+=item BUG REPORTS
 
 =item AUTHOR
 
-=item SEE ALSO
+=item COPYRIGHT
 
 =back
 
-=head2 Term::Complete - Perl word completion module
+=head2 Term::UI::History
 
 =over 4
 
@@ -26951,39 +31305,27 @@ B<Trequire>
 
 =item DESCRIPTION
 
-E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
-
-=item DIAGNOSTICS
+=item FUNCTIONS
 
-=item BUGS
+=over 4
 
-=item AUTHOR
+=item history("message string" [,VERBOSE])
 
 =back
 
-=head2 Term::ReadLine - Perl interface to various C<readline> packages.
-If no real package is found, substitutes stubs instead of basic functions.
+=back
 
 =over 4
 
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item Minimal set of supported functions
-
-C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, C<OUT>, C<MinLine>,
-C<findConsole>, Attribs, C<Features>
-
-=item Additional supported functions
+=item GLOBAL VARIABLES
 
-C<tkRunning>, C<ornaments>, C<newTTY>
+$HISTORY_FH
 
-=item EXPORTS
+=item See Also
 
-=item ENVIRONMENT
+=item AUTHOR
 
-=item CAVEATS
+=item COPYRIGHT
 
 =back
 
@@ -27088,12 +31430,16 @@ B<isnt_eq>, B<isnt_num>
 
 B<like>, B<unlike>
 
-B<maybe_regex>
-
 B<cmp_ok>
 
+=over 4
+
+=item Other Testing Methods
+
 B<BAIL_OUT>
 
+=back
+
 B<skip>
 
 B<todo_skip>
@@ -27102,6 +31448,18 @@ B<skip_rest>
 
 =over 4
 
+=item Test building utility methods
+
+B<maybe_regex>
+
+=back
+
+B<_try>
+
+B<is_fh>
+
+=over 4
+
 =item Test style
 
 B<level>
@@ -27126,6 +31484,8 @@ B<_print_diag>
 
 B<output>, B<failure_output>, B<todo_output>
 
+carp, croak
+
 =over 4
 
 =item Test Status and Info
@@ -27312,7 +31672,8 @@ C<HARNESS_ACTIVE>, C<HARNESS_VERSION>
 
 C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>, C<HARNESS_DEBUG>,
 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_NOTTY>, C<HARNESS_PERL>,
-C<HARNESS_PERL_SWITCHES>, C<HARNESS_TIMER>, C<HARNESS_VERBOSE>
+C<HARNESS_PERL_SWITCHES>, C<HARNESS_TIMER>, C<HARNESS_VERBOSE>,
+C<HARNESS_STRAP_CLASS>
 
 =item EXAMPLE
 
@@ -27409,6 +31770,31 @@ ok, number
 
 =back
 
+=head2 Test::Harness::Results - object for tracking results from a single
+test file
+
+=over 4
+
+=item SYNOPSIS
+
+=item CONSTRUCTION
+
+=over 4
+
+=item new()
+
+=back
+
+=back
+
+=over 4
+
+=item ACCESSORS
+
+wait, exit
+
+=back
+
 =head2 Test::Harness::Straps - detailed analysis of test results
 
 =over 4
@@ -27453,8 +31839,6 @@ ok, number
 
 =over 4
 
-=item Results
-
 =item EXAMPLES
 
 =item AUTHOR
@@ -27887,8 +32271,7 @@ arrays
 
 =back
 
-=head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
-by Knuth
+=head2 Text::Soundex - Implementation of the soundex algorithm.
 
 =over 4
 
@@ -27900,7 +32283,9 @@ by Knuth
 
 =item LIMITATIONS
 
-=item AUTHOR
+=item MAINTAINER
+
+=item HISTORY
 
 =back
 
@@ -27915,8 +32300,6 @@ unexpand(1)
 
 =item EXAMPLE
 
-=item BUGS
-
 =item LICENSE
 
 =back
@@ -27937,11 +32320,13 @@ unexpand(1)
 
 =back
 
-=head2 Thread - manipulate threads in Perl (for old code only)
+=head2 Thread - Manipulate threads in Perl (for old code only)
 
 =over 4
 
-=item CAVEAT
+=item DEPRECATED
+
+=item HISTORY
 
 =item SYNOPSIS
 
@@ -27950,14 +32335,16 @@ unexpand(1)
 =item FUNCTIONS
 
 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
-LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
-cond_signal VARIABLE, cond_broadcast VARIABLE, yield
+LIST), lock VARIABLE, async BLOCK;, Thread->self, Thread->list, cond_wait
+VARIABLE, cond_signal VARIABLE, cond_broadcast VARIABLE, yield
 
 =item METHODS
 
-join, eval, detach, equal, tid, flags, done
+join, detach, equal, tid, done
 
-=item LIMITATIONS
+=item DEFUNCT
+
+lock(\&sub), eval, flags
 
 =item SEE ALSO
 
@@ -27993,31 +32380,6 @@ new, new NUMBER, down, down NUMBER, up, up NUMBER
 
 =back
 
-=head2 Thread::Signal - Start a thread which runs signal handlers reliably
-(for old code)
-
-=over 4
-
-=item CAVEAT
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=item BUGS
-
-=back
-
-=head2 Thread::Specific - thread-specific keys
-
-=over 4
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=back
-
 =head2 Tie::Array - base class for tied arrays
 
 =over 4
@@ -28105,8 +32467,7 @@ SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
 
 =back
 
-=head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
-handles
+=head2 Tie::Handle - base class definitions for tied handles
 
 =over 4
 
@@ -28148,6 +32509,18 @@ this, SCALAR this
 
 =back
 
+=head2 Tie::Hash::NamedCapture - Named regexp capture buffers
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item SEE ALSO
+
+=back
+
 =head2 Tie::Memoize - add data to hash when needed
 
 =over 4
@@ -28231,8 +32604,8 @@ $useconds [, $interval_useconds ] ), tv_interval, time (), sleep (
 $floating_seconds ), alarm ( $floating_seconds [,
 $interval_floating_seconds ] ), setitimer ( $which, $floating_seconds [,
 $interval_floating_seconds ] ), getitimer ( $which ), clock_gettime (
-$which ), clock_getres ( $which ), clock_nanosleep ( $which, $seconds,
-$flags = 0), clock()
+$which ), clock_getres ( $which ), clock_nanosleep ( $which, $nanoseconds,
+$flags = 0), clock(), stat, stat FH, stat EXPR
 
 =item EXAMPLES
 
@@ -28242,6 +32615,8 @@ $flags = 0), clock()
 
 =over 4
 
+=item useconds or interval more than ...
+
 =item negative time not invented yet
 
 =item internal error: useconds < 0 (unsigned ... signed ...)
@@ -28270,6 +32645,10 @@ $flags = 0), clock()
 
 =over 4
 
+=item C<timelocal()> and C<timegm()>
+
+=item C<timelocal_nocheck()> and C<timegm_nocheck()>
+
 =item Year Value Interpretation
 
 =item Limits of time_t
@@ -28288,8 +32667,85 @@ $flags = 0), clock()
 
 =item SUPPORT
 
+=item COPYRIGHT
+
+=item AUTHOR
+
+=back
+
+=head2 Time::Piece - Object Oriented time objects
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item USAGE
+
+=over 4
+
+=item Local Locales
+
+=item Date Calculations
+
+=item Date Comparisons
+
+=item Date Parsing
+
+=item YYYY-MM-DDThh:mm:ss
+
+=item Week Number
+
+=item Global Overriding
+
+=back
+
+=item AUTHOR
+
+=item License
+
+=item SEE ALSO
+
+=item BUGS
+
+=back
+
+=head2 Time::Piece::Seconds, Time::Seconds - a simple API to convert
+seconds to other date values
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
+=item AUTHOR
+
+=item LICENSE
+
+=item Bugs
+
+=back
+
+=head2 Time::Seconds - a simple API to convert seconds to other date values
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=item METHODS
+
 =item AUTHOR
 
+=item LICENSE
+
+=item Bugs
+
 =back
 
 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
@@ -28534,6 +32990,18 @@ http://www.unicode.org/review/pr-29.html, http://www.unicode.org/notes/tn5/
 
 =over 4
 
+=item general_categories
+
+=back
+
+=over 4
+
+=item bidi_types
+
+=back
+
+=over 4
+
 =item compexcl
 
 =back
@@ -28616,6 +33084,188 @@ March 18th, 2000
 
 =back
 
+=head2 Win32 - Interfaces to some Win32 API Functions
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item Alphabetical Listing of Win32 Functions
+
+Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
+Win32::CopyFile(FROM, TO, OVERWRITE), Win32::CreateDirectory(DIRECTORY),
+Win32::CreateFile(FILE), Win32::DomainName(),
+Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
+Win32::FsType(), Win32::FreeLibrary(HANDLE),
+Win32::GetANSIPathName(FILENAME), Win32::GetArchName(),
+Win32::GetChipName(), Win32::GetCwd(), Win32::GetCurrentThreadId(),
+Win32::GetFileVersion(FILENAME), Win32::GetFolderPath(FOLDER [, CREATE]),
+Win32::GetFullPathName(FILENAME), Win32::GetLastError(),
+Win32::GetLongPathName(PATHNAME), Win32::GetNextAvailDrive(),
+Win32::GetOSVersion(), Win32::GetOSName(),
+Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
+PROCNAME), Win32::GetTickCount(), Win32::GuidGen(), Win32::IsAdminUser(),
+Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
+Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
+SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
+Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
+Win32::OutputDebugString(STRING), Win32::RegisterServer(LIBRARYNAME),
+Win32::SetChildShowWindow(SHOWWINDOW), Win32::SetCwd(NEWDIRECTORY),
+Win32::SetLastError(ERROR), Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS,
+PID), Win32::UnregisterServer(LIBRARYNAME)
+
+=back
+
+=back
+
+=head2 Win32API::File - Low-level access to Win32 system API calls for
+files/dirs.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item Object Oriented/Tied Handle Interface
+
+=item Exports
+
+C<":Func">, attrLetsToBits, C<$uBits= attrLetsToBits( $sAttributeLetters
+)>, C<"a">, C<"c">, C<"h">, C<"o">, C<"r">, C<"s">, C<"t">, createFile,
+C<$hObject= createFile( $sPath )>, C<$hObject= createFile( $sPath,
+$rvhvOptions )>, C<$hObject= createFile( $sPath, $svAccess )>, C<$hObject=
+createFile( $sPath, $svAccess, $rvhvOptions )>, C<$hObject= createFile(
+$sPath, $svAccess, $svShare )>, C<$hObject= createFile( $sPath, $svAccess,
+$svShare, $rvhvOptions )>, C<"q">, C<"r">, C<"w">, C<"k">, C<"t">, C<"n">,
+C<"c">, C<"e">, C<"kc">, C<"ke">, C<"tc">, C<"te">, C<"nc">, C<"ne">, Flags
+=> $uFlags, Attributes => $sAttributes, Security => $pSecurityAttributes,
+Model => $hModelFile, Access => $sAccess, Access => $uAccess, Create =>
+$sCreate, Create => $uCreate, Share => $sShare, Share => $uShare,
+getLogicalDrives, C<@roots= getLogicalDrives()>, CloseHandle,
+C<CloseHandle( $hObject )>, CopyFile, C<CopyFile( $sOldFileName,
+$sNewFileName, $bFailIfExists )>, CreateFile, C<$hObject= CreateFile(
+$sPath, $uAccess, $uShare, $pSecAttr, $uCreate, $uFlags, $hModel )>,
+C<"//./PhysicalDrive0">, C<"//./C:">, C<"//./A:">, C<"//./PIPE/PipeName">,
+DefineDosDevice, C<DefineDosDevice( $uFlags, $sDosDeviceName, $sTargetPath
+)>, C<DDD_RAW_TARGET_PATH>, C<DDD_REMOVE_DEFINITION>,
+C<DDD_EXACT_MATCH_ON_REMOVE>, DeleteFile, C<DeleteFile( $sFileName )>,
+DeviceIoControl, C<DeviceIoControl( $hDevice, $uIoControlCode, $pInBuf,
+$lInBuf, $opOutBuf, $lOutBuf, $olRetBytes, $pOverlapped )>, FdGetOsFHandle,
+C<$hNativeHandle= FdGetOsFHandle( $ivFd )>, fileConstant, C<$value=
+fileConstant( $sConstantName )>, fileLastError, C<$svError=
+fileLastError();>, C<fileLastError( $uError );>, GetDriveType,
+C<$uDriveType= GetDriveType( $sRootPath )>, C<DRIVE_UNKNOWN>,
+C<DRIVE_NO_ROOT_DIR>, C<DRIVE_REMOVABLE>, C<DRIVE_FIXED>, C<DRIVE_REMOTE>,
+C<DRIVE_CDROM>, C<DRIVE_RAMDISK>, GetFileAttributes, C<$uAttrs =
+GetFileAttributes( $sPath )>, C<FILE_ATTRIBUTE_ARCHIVE>,
+C<FILE_ATTRIBUTE_COMPRESSED>, C<FILE_ATTRIBUTE_DEVICE>,
+C<FILE_ATTRIBUTE_DIRECTORY>, C<FILE_ATTRIBUTE_ENCRYPTED>,
+C<FILE_ATTRIBUTE_HIDDEN>, C<FILE_ATTRIBUTE_NORMAL>,
+C<FILE_ATTRIBUTE_NOT_CONTENT_INDEXED>, C<FILE_ATTRIBUTE_OFFLINE>,
+C<FILE_ATTRIBUTE_READONLY>, C<FILE_ATTRIBUTE_REPARSE_POINT>,
+C<FILE_ATTRIBUTE_SPARSE_FILE>, C<FILE_ATTRIBUTE_SYSTEM>,
+C<FILE_ATTRIBUTE_TEMPORARY>, GetFileType, C<$uFileType= GetFileType( $hFile
+)>, C<FILE_TYPE_UNKNOWN>, C<FILE_TYPE_DISK>, C<FILE_TYPE_CHAR>,
+C<FILE_TYPE_PIPE>, getFileSize, C<$size= getFileSize( $hFile )>,
+GetFileSize, C<$iSizeLow= GetFileSize($win32Handle, $iSizeHigh)>,
+GetOverlappedResult, C<$bRetval= GetOverlappedResult( $win32Handle,
+$pOverlapped,  $numBytesTransferred, $bWait )>, GetLogicalDrives,
+C<$uDriveBits= GetLogicalDrives()>, GetLogicalDriveStrings, C<$olOutLength=
+GetLogicalDriveStrings( $lBufSize, $osBuffer )>, GetHandleInformation,
+C<GetHandleInformation( $hObject, $ouFlags )>, GetOsFHandle,
+C<$hNativeHandle= GetOsFHandle( FILE )>, GetVolumeInformation,
+C<GetVolumeInformation( $sRootPath, $osVolName, $lVolName, $ouSerialNum,
+$ouMaxNameLen, $ouFsFlags, $osFsType, $lFsType )>, C<FS_CASE_IS_PRESERVED>,
+C<FS_CASE_SENSITIVE>, C<FS_UNICODE_STORED_ON_DISK>, C<FS_PERSISTENT_ACLS>,
+C<FS_FILE_COMPRESSION>, C<FS_VOL_IS_COMPRESSED>, IsRecognizedPartition,
+C<IsRecognizedPartition( $ivPartitionType )>, IsContainerPartition,
+C<IsContainerPartition( $ivPartitionType )>, MoveFile, C<MoveFile(
+$sOldName, $sNewName )>, MoveFileEx, C<MoveFileEx( $sOldName, $sNewName,
+$uFlags )>, C<MOVEFILE_REPLACE_EXISTING>, C<MOVEFILE_COPY_ALLOWED>,
+C<MOVEFILE_DELAY_UNTIL_REBOOT>, C<MOVEFILE_WRITE_THROUGH>, OsFHandleOpen,
+C<OsFHandleOpen( FILE, $hNativeHandle, $sMode )>, OsFHandleOpenFd, C<$ivFD=
+OsFHandleOpenFd( $hNativeHandle, $uMode )>, QueryDosDevice, C<$olTargetLen=
+QueryDosDevice( $sDosDeviceName, $osTargetPath, $lTargetBuf )>, ReadFile,
+C<ReadFile( $hFile, $opBuffer, $lBytes, $olBytesRead, $pOverlapped )>,
+SetErrorMode, C<$uOldMode= SetErrorMode( $uNewMode )>,
+C<SEM_FAILCRITICALERRORS>, C<SEM_NOALIGNMENTFAULTEXCEPT>,
+C<SEM_NOGPFAULTERRORBOX>, C<SEM_NOOPENFILEERRORBOX>, setFilePointer,
+C<$uNewPos = setFilePointer( $hFile, $ivOffset, $uFromWhere )>,
+SetFilePointer, C<$uNewPos = SetFilePointer( $hFile, $ivOffset,
+$ioivOffsetHigh, $uFromWhere )>, SetHandleInformation,
+C<SetHandleInformation( $hObject, $uMask, $uFlags )>, WriteFile,
+C<WriteFile( $hFile, $pBuffer, $lBytes, $ouBytesWritten, $pOverlapped )>,
+C<":FuncA">, C<":FuncW">, CopyFileW, C<CopyFileW( $swOldFileName,
+$swNewFileName, $bFailIfExists )>, CreateFileW, C<$hObject= CreateFileW(
+$swPath, $uAccess, $uShare, $pSecAttr, $uCreate, $uFlags, $hModel )>,
+DefineDosDeviceW, C<DefineDosDeviceW( $uFlags, $swDosDeviceName,
+$swTargetPath )>, DeleteFileW, C<DeleteFileW( $swFileName )>,
+GetDriveTypeW, C<$uDriveType= GetDriveTypeW( $swRootPath )>,
+GetFileAttributesW, C<$uAttrs= GetFileAttributesW( $swPath )>,
+GetLogicalDriveStringsW, C<$olwOutLength= GetLogicalDriveStringsW(
+$lwBufSize, $oswBuffer )>, GetVolumeInformationW, C<GetVolumeInformationW(
+$swRootPath, $oswVolName, $lwVolName, $ouSerialNum, $ouMaxNameLen,
+$ouFsFlags, $oswFsType, $lwFsType )>, MoveFileW, C<MoveFileW( $swOldName,
+$swNewName )>, MoveFileExW, C<MoveFileExW( $swOldName, $swNewName, $uFlags
+)>, QueryDosDeviceW, C<$olwTargetLen= QueryDosDeviceW( $swDeviceName,
+$oswTargetPath, $lwTargetBuf )>, C<":Misc">, C<":DDD_">, C<":DRIVE_">,
+C<":FILE_">, C<":FILE_ATTRIBUTE_">, C<":FILE_FLAG_">, C<":FILE_SHARE_">,
+C<":FILE_TYPE_">, C<":FS_">, C<":HANDLE_FLAG_">, HANDLE_FLAG_INHERIT,
+HANDLE_FLAG_PROTECT_FROM_CLOSE, C<":IOCTL_STORAGE_">,
+C<IOCTL_STORAGE_CHECK_VERIFY>, C<IOCTL_STORAGE_MEDIA_REMOVAL>,
+C<IOCTL_STORAGE_EJECT_MEDIA>, C<IOCTL_STORAGE_LOAD_MEDIA>,
+C<IOCTL_STORAGE_RESERVE>, C<IOCTL_STORAGE_RELEASE>,
+C<IOCTL_STORAGE_FIND_NEW_DEVICES>, C<IOCTL_STORAGE_GET_MEDIA_TYPES>,
+C<$ucCylsLow[$i]>, C<$ivcCylsHigh[$i]>, C<$uMediaType[$i]>,
+C<$uTracksPerCyl[$i]>, C<$uSectsPerTrack[$i]>, C<$uBytesPerSect[$i]>,
+C<":IOCTL_DISK_">, C<IOCTL_DISK_GET_DRIVE_GEOMETRY>, C<$ucCylsLow>,
+C<$ivcCylsHigh>, C<$uMediaType>, C<$uTracksPerCyl>, C<$uSectsPerTrack>,
+C<$uBytesPerSect>, C<IOCTL_DISK_GET_PARTITION_INFO>, C<$uStartLow> and
+C<$ivStartHigh>, C<$ucHiddenSects>, C<$uPartitionSeqNumber>,
+C<$uPartitionType>, C<$bActive>, C<$bRecognized>, C<$bToRewrite>,
+C<IOCTL_DISK_SET_PARTITION_INFO>, C<IOCTL_DISK_GET_DRIVE_LAYOUT>,
+C<$cPartitions>, C<$uDiskSignature>, C<IOCTL_DISK_GET_MEDIA_TYPES>,
+C<IOCTL_DISK_SET_DRIVE_LAYOUT>, C<IOCTL_DISK_VERIFY>, C<$uStartOffsetLow>
+and C<$ivStartOffsetHigh>, C<$uLength>, C<IOCTL_DISK_FORMAT_TRACKS>,
+C<IOCTL_DISK_REASSIGN_BLOCKS>, C<IOCTL_DISK_PERFORMANCE>,
+C<IOCTL_DISK_IS_WRITABLE>, C<IOCTL_DISK_LOGGING>, DISK_LOGGING_START,
+DISK_LOGGING_STOP, DISK_LOGGING_DUMP, DISK_LOGGING_BINNING,
+C<IOCTL_DISK_FORMAT_TRACKS_EX>, C<IOCTL_DISK_HISTOGRAM_STRUCTURE>,
+C<IOCTL_DISK_HISTOGRAM_DATA>, C<IOCTL_DISK_HISTOGRAM_RESET>,
+C<IOCTL_DISK_REQUEST_STRUCTURE>, C<IOCTL_DISK_REQUEST_DATA>, C<":FSCTL_">,
+C<FSCTL_SET_REPARSE_POINT>, C<FSCTL_GET_REPARSE_POINT>,
+C<FSCTL_DELETE_REPARSE_POINT>, C<":GENERIC_">, C<":MEDIA_TYPE">,
+C<Unknown>, C<F5_1Pt2_512>, C<F3_1Pt44_512>, C<F3_2Pt88_512>,
+C<F3_20Pt8_512>, C<F3_720_512>, C<F5_360_512>, C<F5_320_512>,
+C<F5_320_1024>, C<F5_180_512>, C<F5_160_512>, C<RemovableMedia>,
+C<FixedMedia>, C<F3_120M_512>, C<":MOVEFILE_">, C<":SECURITY_">,
+C<":SEM_">, C<":PARTITION_">, C<":ALL">
+
+=back
+
+=item BUGS
+
+=item AUTHOR
+
+=item SEE ALSO
+
+=back
+
+=head2 Win32CORE - Win32 CORE function stubs
+
+=over 4
+
+=item DESCRIPTION
+
+=item HISTORY
+
+=back
+
 =head2 XSLoader - Dynamically load C libraries into Perl code
 
 =over 4
@@ -28644,9 +33294,9 @@ March 18th, 2000
 
 =item DIAGNOSTICS
 
-Can't find '%s' symbol in %s, Can't load '%s' for module %s: %s, Undefined
-symbols present after loading %s: %s, XSLoader::load('Your::Module',
-$Your::Module::VERSION)
+C<Can't find '%s' symbol in %s>, C<Can't load '%s' for module %s: %s>,
+C<Undefined symbols present after loading %s: %s>,
+C<XSLoader::load('Your::Module', $Your::Module::VERSION)>
 
 =item LIMITATIONS