4a9495771fc29bc14d96cc73448a33653b6ec6f5
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
1
2 =head1 NAME
3
4 perltoc - perl documentation table of contents
5
6 =head1 DESCRIPTION
7
8 This page provides a brief table of contents for the rest of the Perl
9 documentation set.  It is meant to be scanned quickly or grepped
10 through to locate the proper section you're looking for.
11
12 =head1 BASIC DOCUMENTATION
13
14 =head2 perl - Practical Extraction and Report Language
15
16 =over 4
17
18 =item SYNOPSIS
19
20 =over 4
21
22 =item Overview
23
24 =item Tutorials
25
26 =item Reference Manual
27
28 =item Internals and C Language Interface
29
30 =item Miscellaneous
31
32 =item Platform-Specific
33
34 =back
35
36 =item DESCRIPTION
37
38 =item AVAILABILITY
39
40 =item ENVIRONMENT
41
42 =item AUTHOR
43
44 =item FILES
45
46 =item SEE ALSO
47
48 =item DIAGNOSTICS
49
50 =item BUGS
51
52 =item NOTES
53
54 =back
55
56 =head2 perlintro -- a brief introduction and overview of Perl
57
58 =over 4
59
60 =item DESCRIPTION
61
62 =over 4
63
64 =item What is Perl?
65
66 =item Running Perl programs
67
68 =item Basic syntax overview
69
70 =item Perl variable types
71
72 Scalars, Arrays, Hashes
73
74 =item Variable scoping
75
76 =item Conditional and looping constructs
77
78 if, while, for, foreach
79
80 =item Builtin operators and functions
81
82 Arithmetic, Numeric comparison, String comparison, Boolean logic,
83 Miscellaneous
84
85 =item Files and I/O
86
87 =item Regular expressions
88
89 Simple matching, Simple substitution, More complex regular expressions,
90 Parentheses for capturing, Other regexp features
91
92 =item Writing subroutines
93
94 =item OO Perl
95
96 =item Using Perl modules
97
98 =back
99
100 =item AUTHOR
101
102 =back
103
104 =head2 perlfaq - frequently asked questions about Perl ($Date: 2001/10/16
105 13:27:22 $)
106
107 =over 4
108
109 =item DESCRIPTION
110
111 =over 4
112
113 =item perlfaq: Structural overview of the FAQ.
114
115 =item L<perlfaq1>: General Questions About Perl
116
117 =item L<perlfaq2>: Obtaining and Learning about Perl
118
119 =item L<perlfaq3>: Programming Tools
120
121 =item L<perlfaq4>: Data Manipulation
122
123 =item L<perlfaq5>: Files and Formats
124
125 =item L<perlfaq6>: Regexps
126
127 =item L<perlfaq7>: General Perl Language Issues
128
129 =item L<perlfaq8>: System Interaction
130
131 =item L<perlfaq9>: Networking
132
133 =back
134
135 =item About the perlfaq documents
136
137 =over 4
138
139 =item Where to get the perlfaq
140
141 =item How to contribute to the perlfaq
142
143 =item What will happen if you mail your Perl programming problems to the
144 authors
145
146 =back
147
148 =item Credits
149
150 =item Author and Copyright Information
151
152 =over 4
153
154 =item Bundled Distributions
155
156 =item Disclaimer
157
158 =back
159
160 =item Changes
161
162 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
163 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
164 Initial Release: 11/March/97
165
166 =back
167
168 =head2 perlbook - Perl book information
169
170 =over 4
171
172 =item DESCRIPTION
173
174 =back
175
176 =head2 perlsyn - Perl syntax
177
178 =over 4
179
180 =item DESCRIPTION
181
182 =over 4
183
184 =item Declarations
185
186 =item Simple statements
187
188 =item Compound statements
189
190 =item Loop Control
191
192 =item For Loops
193
194 =item Foreach Loops
195
196 =item Basic BLOCKs and Switch Statements
197
198 =item Goto
199
200 =item PODs: Embedded Documentation
201
202 =item Plain Old Comments (Not!)
203
204 =back
205
206 =back
207
208 =head2 perldata - Perl data types
209
210 =over 4
211
212 =item DESCRIPTION
213
214 =over 4
215
216 =item Variable names
217
218 =item Context
219
220 =item Scalar values
221
222 =item Scalar value constructors
223
224 =item List value constructors
225
226 =item Slices
227
228 =item Typeglobs and Filehandles
229
230 =back
231
232 =item SEE ALSO
233
234 =back
235
236 =head2 perlop - Perl operators and precedence
237
238 =over 4
239
240 =item SYNOPSIS
241
242 =item DESCRIPTION
243
244 =over 4
245
246 =item Terms and List Operators (Leftward)
247
248 =item The Arrow Operator
249
250 =item Auto-increment and Auto-decrement
251
252 =item Exponentiation
253
254 =item Symbolic Unary Operators
255
256 =item Binding Operators
257
258 =item Multiplicative Operators
259
260 =item Additive Operators
261
262 =item Shift Operators
263
264 =item Named Unary Operators
265
266 =item Relational Operators
267
268 =item Equality Operators
269
270 =item Bitwise And
271
272 =item Bitwise Or and Exclusive Or
273
274 =item C-style Logical And
275
276 =item C-style Logical Or
277
278 =item Range Operators
279
280 =item Conditional Operator
281
282 =item Assignment Operators
283
284 =item Comma Operator
285
286 =item List Operators (Rightward)
287
288 =item Logical Not
289
290 =item Logical And
291
292 =item Logical or and Exclusive Or
293
294 =item C Operators Missing From Perl
295
296 unary &, unary *, (TYPE)
297
298 =item Quote and Quote-like Operators
299
300 =item Regexp Quote-Like Operators
301
302 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
303 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
304 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
305 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
306
307 =item Gory details of parsing quoted constructs
308
309 Finding the end, Removal of backslashes before delimiters, Interpolation,
310 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
311 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
312 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
313 regular expressions
314
315 =item I/O Operators
316
317 =item Constant Folding
318
319 =item Bitwise String Operators
320
321 =item Integer Arithmetic
322
323 =item Floating-point Arithmetic
324
325 =item Bigger Numbers
326
327 =back
328
329 =back
330
331 =head2 perlsub - Perl subroutines
332
333 =over 4
334
335 =item SYNOPSIS
336
337 =item DESCRIPTION
338
339 =over 4
340
341 =item Private Variables via my()
342
343 =item Persistent Private Variables
344
345 =item Temporary Values via local()
346
347 =item Lvalue subroutines
348
349 =item Passing Symbol Table Entries (typeglobs)
350
351 =item When to Still Use local()
352
353 =item Pass by Reference
354
355 =item Prototypes
356
357 =item Constant Functions
358
359 =item Overriding Built-in Functions
360
361 =item Autoloading
362
363 =item Subroutine Attributes
364
365 =back
366
367 =item SEE ALSO
368
369 =back
370
371 =head2 perlfunc - Perl builtin functions
372
373 =over 4
374
375 =item DESCRIPTION
376
377 =over 4
378
379 =item Perl Functions by Category
380
381 Functions for SCALARs or strings, Regular expressions and pattern matching,
382 Numeric functions, Functions for real @ARRAYs, Functions for list data,
383 Functions for real %HASHes, Input and output functions, Functions for fixed
384 length data or records, Functions for filehandles, files, or directories,
385 Keywords related to the control flow of your perl program, Keywords related
386 to scoping, Miscellaneous functions, Functions for processes and process
387 groups, Keywords related to perl modules, Keywords related to classes and
388 object-orientedness, Low-level socket functions, System V interprocess
389 communication functions, Fetching user and group info, Fetching network
390 info, Time-related functions, Functions new in perl5, Functions obsoleted
391 in perl5
392
393 =item Portability
394
395 =item Alphabetical Listing of Perl Functions
396
397 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
398 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
399 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
400 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
401 chomp( LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr
402 NUMBER, chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir
403 DIRHANDLE, connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt
404 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR,
405 defined, delete EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR,
406 dump LABEL, dump, each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval
407 BLOCK, exec LIST, exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp,
408 fcntl FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock
409 FILEHANDLE,OPERATION, fork, format, formline PICTURE,LIST, getc FILEHANDLE,
410 getc, getlogin, getpeername SOCKET, getpgrp PID, getppid, getpriority
411 WHICH,WHO, getpwnam NAME, getgrnam NAME, gethostbyname NAME, getnetbyname
412 NAME, getprotobyname NAME, getpwuid UID, getgrgid GID, getservbyname
413 NAME,PROTO, gethostbyaddr ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE,
414 getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent, getgrent,
415 gethostent, getnetent, getprotoent, getservent, setpwent, setgrent,
416 sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN, setservent
417 STAYOPEN, endpwent, endgrent, endhostent, endnetent, endprotoent,
418 endservent, getsockname SOCKET, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR,
419 glob, gmtime EXPR, goto LABEL, goto EXPR, goto &NAME, grep BLOCK LIST, grep
420 EXPR,LIST, hex EXPR, hex, import, index STR,SUBSTR,POSITION, index
421 STR,SUBSTR, int EXPR, int, ioctl FILEHANDLE,FUNCTION,SCALAR, join
422 EXPR,LIST, keys HASH, kill SIGNAL, LIST, last LABEL, last, lc EXPR, lc,
423 lcfirst EXPR, lcfirst, length EXPR, length, link OLDFILE,NEWFILE, listen
424 SOCKET,QUEUESIZE, local EXPR, localtime EXPR, lock, log EXPR, log, lstat
425 EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST, mkdir FILENAME,MASK, mkdir
426 FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgrcv
427 ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my EXPR : ATTRIBUTES,
428 next LABEL, next, no Module LIST, oct EXPR, oct, open FILEHANDLE,EXPR, open
429 FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,
430 opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR : ATTRIBUTES,
431 pack TEMPLATE,LIST, package NAMESPACE, package, pipe
432 READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos, print FILEHANDLE
433 LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST, printf FORMAT,
434 LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/, qq/STRING/,
435 qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta, rand EXPR,
436 rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read FILEHANDLE,SCALAR,LENGTH,
437 readdir DIRHANDLE, readline EXPR, readlink EXPR, readlink, readpipe EXPR,
438 recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo, ref EXPR, ref, rename
439 OLDNAME,NEWNAME, require VERSION, require EXPR, require, reset EXPR, reset,
440 return EXPR, return, reverse LIST, rewinddir DIRHANDLE, rindex
441 STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME, rmdir, s///, scalar
442 EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir DIRHANDLE,POS, select
443 FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT, semctl
444 ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
445 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
446 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
447 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
448 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
449 EXPR, sleep, sockatmark SOCKET, socket SOCKET,DOMAIN,TYPE,PROTOCOL,
450 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort
451 BLOCK LIST, sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice
452 ARRAY,OFFSET,LENGTH, splice ARRAY,OFFSET, splice ARRAY, split
453 /PATTERN/,EXPR,LIMIT, split /PATTERN/,EXPR, split /PATTERN/, split, sprintf
454 FORMAT, LIST, sqrt EXPR, sqrt, srand EXPR, srand, stat FILEHANDLE, stat
455 EXPR, stat, study SCALAR, study, sub BLOCK, sub NAME, sub NAME BLOCK,
456 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
457 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
458 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
459 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
460 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
461 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
462 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
463 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
464 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
465 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
466 TEMPLATE,EXPR, untie VARIABLE, unshift ARRAY,LIST, use Module VERSION LIST,
467 use Module VERSION, use Module LIST, use Module, use VERSION, utime LIST,
468 values HASH, vec EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn
469 LIST, write FILEHANDLE, write EXPR, write, y///
470
471 =back
472
473 =back
474
475 =head2 perlreftut - Mark's very short tutorial about references
476
477 =over 4
478
479 =item DESCRIPTION
480
481 =item Who Needs Complicated Data Structures?
482
483 =item The Solution
484
485 =item Syntax
486
487 =over 4
488
489 =item Making References
490
491 =item Using References
492
493 =back
494
495 =item An Example
496
497 =item Arrow Rule
498
499 =item Solution
500
501 =item The Rest
502
503 =item Summary
504
505 =item Credits
506
507 =over 4
508
509 =item Distribution Conditions
510
511 =back
512
513 =back
514
515 =head2 perldsc - Perl Data Structures Cookbook
516
517 =over 4
518
519 =item DESCRIPTION
520
521 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
522 more elaborate constructs
523
524 =item REFERENCES
525
526 =item COMMON MISTAKES
527
528 =item CAVEAT ON PRECEDENCE
529
530 =item WHY YOU SHOULD ALWAYS C<use strict>
531
532 =item DEBUGGING
533
534 =item CODE EXAMPLES
535
536 =item ARRAYS OF ARRAYS
537
538 =over 4
539
540 =item Declaration of an ARRAY OF ARRAYS
541
542 =item Generation of an ARRAY OF ARRAYS
543
544 =item Access and Printing of an ARRAY OF ARRAYS
545
546 =back
547
548 =item HASHES OF ARRAYS
549
550 =over 4
551
552 =item Declaration of a HASH OF ARRAYS
553
554 =item Generation of a HASH OF ARRAYS
555
556 =item Access and Printing of a HASH OF ARRAYS
557
558 =back
559
560 =item ARRAYS OF HASHES
561
562 =over 4
563
564 =item Declaration of an ARRAY OF HASHES
565
566 =item Generation of an ARRAY OF HASHES
567
568 =item Access and Printing of an ARRAY OF HASHES
569
570 =back
571
572 =item HASHES OF HASHES
573
574 =over 4
575
576 =item Declaration of a HASH OF HASHES
577
578 =item Generation of a HASH OF HASHES
579
580 =item Access and Printing of a HASH OF HASHES
581
582 =back
583
584 =item MORE ELABORATE RECORDS
585
586 =over 4
587
588 =item Declaration of MORE ELABORATE RECORDS
589
590 =item Declaration of a HASH OF COMPLEX RECORDS
591
592 =item Generation of a HASH OF COMPLEX RECORDS
593
594 =back
595
596 =item Database Ties
597
598 =item SEE ALSO
599
600 =item AUTHOR
601
602 =back
603
604 =head2 perlrequick - Perl regular expressions quick start
605
606 =over 4
607
608 =item DESCRIPTION
609
610 =item The Guide
611
612 =over 4
613
614 =item Simple word matching
615
616 =item Using character classes
617
618 =item Matching this or that
619
620 =item Grouping things and hierarchical matching
621
622 =item Extracting matches
623
624 =item Matching repetitions
625
626 =item More matching
627
628 =item Search and replace
629
630 =item The split operator
631
632 =back
633
634 =item BUGS
635
636 =item SEE ALSO
637
638 =item AUTHOR AND COPYRIGHT
639
640 =over 4
641
642 =item Acknowledgments
643
644 =back
645
646 =back
647
648 =head2 perlpod - the Plain Old Documentation format
649
650 =over 4
651
652 =item DESCRIPTION
653
654 =over 4
655
656 =item Ordinary Paragraph
657
658 =item Verbatim Paragraph
659
660 =item Command Paragraph
661
662 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
663 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
664 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
665 I<formatname>>, C<=for I<formatname> I<text...>>
666
667 =item Formatting Codes
668
669 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
670 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
671 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
672 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
673 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
674 (zero-effect) formatting code
675
676 =item The Intent
677
678 =item Embedding Pods in Perl Modules
679
680 =item Hints for Writing Pod
681
682 =back
683
684 =item SEE ALSO
685
686 =item AUTHOR
687
688 =back
689
690 =head2 perlpodspec - Plain Old Documentation: format specification and
691 notes
692
693 =over 4
694
695 =item DESCRIPTION
696
697 =item Pod Definitions
698
699 =item Pod Commands
700
701 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
702 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
703
704 =item Pod Formatting Codes
705
706 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
707 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
708 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
709 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
710 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
711 contains non-breaking spaces
712
713 =item Notes on Implementing Pod Processors
714
715 =item About LE<lt>...E<gt> Codes
716
717 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
718
719 =item About =over...=back Regions
720
721 =item About Data Paragraphs and "=begin/=end" Regions
722
723 =item SEE ALSO
724
725 =item AUTHOR
726
727 =back
728
729 =head2 perlstyle - Perl style guide
730
731 =over 4
732
733 =item DESCRIPTION
734
735 =back
736
737 =head2 perltrap - Perl traps for the unwary
738
739 =over 4
740
741 =item DESCRIPTION
742
743 =over 4
744
745 =item Awk Traps
746
747 =item C Traps
748
749 =item Sed Traps
750
751 =item Shell Traps
752
753 =item Perl Traps
754
755 =item Perl4 to Perl5 Traps
756
757 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
758 Traps, General data type traps, Context Traps - scalar, list contexts,
759 Precedence Traps, General Regular Expression Traps using s///, etc,
760 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
761
762 =item Discontinuance, Deprecation, and BugFix traps
763
764 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
765 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
766 Discontinuance, Deprecation, Discontinuance, Discontinuance
767
768 =item Parsing Traps
769
770 Parsing, Parsing, Parsing, Parsing, Parsing
771
772 =item Numerical Traps
773
774 Numerical, Numerical, Numerical, Bitwise string ops
775
776 =item General data type traps
777
778 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
779 (Constants), (Scalars), (Variable Suicide)
780
781 =item Context Traps - scalar, list contexts
782
783 (list context), (scalar context), (scalar context), (list, builtin)
784
785 =item Precedence Traps
786
787 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
788 Precedence
789
790 =item General Regular Expression Traps using s///, etc.
791
792 Regular Expression, Regular Expression, Regular Expression, Regular
793 Expression, Regular Expression, Regular Expression, Regular Expression,
794 Regular Expression
795
796 =item Subroutine, Signal, Sorting Traps
797
798 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
799
800 =item OS Traps
801
802 (SysV), (SysV)
803
804 =item Interpolation Traps
805
806 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
807 Interpolation, Interpolation, Interpolation, Interpolation
808
809 =item DBM Traps
810
811 DBM, DBM
812
813 =item Unclassified Traps
814
815 C<require>/C<do> trap using returned value, C<split> on empty string with
816 LIMIT specified
817
818 =back
819
820 =back
821
822 =head2 perlrun - how to execute the Perl interpreter
823
824 =over 4
825
826 =item SYNOPSIS
827
828 =item DESCRIPTION
829
830 =over 4
831
832 =item #! and quoting on non-Unix systems
833
834 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
835
836 =item Location of Perl
837
838 =item Command Switches
839
840 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
841 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
842 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
843 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
844 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
845 B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>, B<-X>,
846 B<-x> I<directory>
847
848 =back
849
850 =item ENVIRONMENT
851
852 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLLIB, PERL5DB, PERL5SHELL
853 (specific to the Win32 port), PERL_DEBUG_MSTATS, PERL_DESTRUCT_LEVEL,
854 PERL_ENCODING, PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to
855 the VMS port)
856
857 =back
858
859 =head2 perldiag - various Perl diagnostics
860
861 =over 4
862
863 =item DESCRIPTION
864
865 =back
866
867 =head2 perllexwarn - Perl Lexical Warnings
868
869 =over 4
870
871 =item DESCRIPTION
872
873 =over 4
874
875 =item Default Warnings and Optional Warnings
876
877 =item What's wrong with B<-w> and C<$^W>
878
879 =item Controlling Warnings from the Command Line
880
881 B<-w>, B<-W>, B<-X>
882
883 =item Backward Compatibility
884
885 =item Category Hierarchy
886
887 =item Fatal Warnings
888
889 =item Reporting Warnings from a Module
890
891 =back
892
893 =item TODO
894
895 =item SEE ALSO
896
897 =item AUTHOR
898
899 =back
900
901 =head2 perldebtut - Perl debugging tutorial
902
903 =over 4
904
905 =item DESCRIPTION
906
907 =item use strict
908
909 =item Looking at data and -w and w
910
911 =item help
912
913 =item Stepping through code
914
915 =item Placeholder for a, w, t, T
916
917 =item REGULAR EXPRESSIONS
918
919 =item OUTPUT TIPS
920
921 =item CGI
922
923 =item GUIs
924
925 =item SUMMARY
926
927 =item SEE ALSO
928
929 =item AUTHOR
930
931 =item CONTRIBUTORS
932
933 =back
934
935 =head2 perldebug - Perl debugging
936
937 =over 4
938
939 =item DESCRIPTION
940
941 =item The Perl Debugger
942
943 =over 4
944
945 =item Debugger Commands
946
947 h [command], p expr, x expr, V [pkg [vars]], X [vars], T, s [expr], n
948 [expr], r, <CR>, c [line|sub], l, l min+incr, l min-max, l line, l subname,
949 -, w [line], f filename, /pattern/, ?pattern?, L, S [[!]regex], t, t expr,
950 b [line] [condition], b subname [condition], b postpone subname
951 [condition], b load filename, b compile subname, d [line], D, a [line]
952 command, a [line], A, W expr, W, O booloption .., O anyoption? .., O
953 option=value .., < ?, < [ command ], << command, > ?, > command, >>
954 command, { ?, { [ command ], {{ command, ! number, ! -number, ! pattern, !!
955 cmd, @ file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, man
956 [manpage]
957
958 =item Configurable Options
959
960 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
961 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
962 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
963 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
964 C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>, C<HighBit>,
965 C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>, C<NonStop>
966
967 =item Debugger input/output
968
969 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
970 listing
971
972 =item Debugging compile-time statements
973
974 =item Debugger Customization
975
976 =item Readline Support
977
978 =item Editor Support for Debugging
979
980 =item The Perl Profiler
981
982 =back
983
984 =item Debugging regular expressions
985
986 =item Debugging memory usage
987
988 =item SEE ALSO
989
990 =item BUGS
991
992 =back
993
994 =head2 perlvar - Perl predefined variables
995
996 =over 4
997
998 =item DESCRIPTION
999
1000 =over 4
1001
1002 =item Predefined Names
1003
1004 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
1005 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
1006 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
1007 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
1008 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
1009 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
1010 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
1011 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
1012 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
1013 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
1014 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
1015 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
1016 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
1017 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
1018 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
1019 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
1020 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
1021 IO::Handle->format_line_break_characters EXPR,
1022 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
1023 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
1024 $OS_ERROR, $ERRNO, $!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
1025 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
1026 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
1027 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
1028 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
1029 $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x100, 0x200,
1030 $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S, $BASETIME,
1031 $^T, ${^TAINT}, $PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS},
1032 ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, ARGV, $ARGV, @ARGV, @F, @INC,
1033 @_, %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
1034
1035 =item Error Indicators
1036
1037 =item Technical Note on the Syntax of Variable Names
1038
1039 =back
1040
1041 =item BUGS
1042
1043 =back
1044
1045 =head2 perllol - Manipulating Arrays of Arrays in Perl
1046
1047 =over 4
1048
1049 =item DESCRIPTION
1050
1051 =over 4
1052
1053 =item Declaration and Access of Arrays of Arrays
1054
1055 =item Growing Your Own
1056
1057 =item Access and Printing
1058
1059 =item Slices
1060
1061 =back
1062
1063 =item SEE ALSO
1064
1065 =item AUTHOR
1066
1067 =back
1068
1069 =head2 perlopentut - tutorial on opening things in Perl
1070
1071 =over 4
1072
1073 =item DESCRIPTION
1074
1075 =item Open E<agrave> la shell
1076
1077 =over 4
1078
1079 =item Simple Opens
1080
1081 =item Pipe Opens
1082
1083 =item The Minus File
1084
1085 =item Mixing Reads and Writes
1086
1087 =item Filters 
1088
1089 =back
1090
1091 =item Open E<agrave> la C
1092
1093 =over 4
1094
1095 =item Permissions E<agrave> la mode
1096
1097 =back
1098
1099 =item Obscure Open Tricks
1100
1101 =over 4
1102
1103 =item Re-Opening Files (dups)
1104
1105 =item Dispelling the Dweomer
1106
1107 =item Paths as Opens
1108
1109 =item Single Argument Open
1110
1111 =item Playing with STDIN and STDOUT
1112
1113 =back
1114
1115 =item Other I/O Issues
1116
1117 =over 4
1118
1119 =item Opening Non-File Files
1120
1121 =item Binary Files
1122
1123 =item File Locking
1124
1125 =back
1126
1127 =item SEE ALSO 
1128
1129 =item AUTHOR and COPYRIGHT
1130
1131 =item HISTORY
1132
1133 =back
1134
1135 =head2 perlretut - Perl regular expressions tutorial
1136
1137 =over 4
1138
1139 =item DESCRIPTION
1140
1141 =item Part 1: The basics
1142
1143 =over 4
1144
1145 =item Simple word matching
1146
1147 =item Using character classes
1148
1149 =item Matching this or that
1150
1151 =item Grouping things and hierarchical matching
1152
1153 =item Extracting matches
1154
1155 =item Matching repetitions
1156
1157 =item Building a regexp
1158
1159 =item Using regular expressions in Perl
1160
1161 =back
1162
1163 =item Part 2: Power tools
1164
1165 =over 4
1166
1167 =item More on characters, strings, and character classes
1168
1169 =item Compiling and saving regular expressions
1170
1171 =item Embedding comments and modifiers in a regular expression
1172
1173 =item Non-capturing groupings
1174
1175 =item Looking ahead and looking behind
1176
1177 =item Using independent subexpressions to prevent backtracking
1178
1179 =item Conditional expressions
1180
1181 =item A bit of magic: executing Perl code in a regular expression
1182
1183 =item Pragmas and debugging
1184
1185 =back
1186
1187 =item BUGS
1188
1189 =item SEE ALSO
1190
1191 =item AUTHOR AND COPYRIGHT
1192
1193 =over 4
1194
1195 =item Acknowledgments
1196
1197 =back
1198
1199 =back
1200
1201 =head2 perlre - Perl regular expressions
1202
1203 =over 4
1204
1205 =item DESCRIPTION
1206
1207 i, m, s, x
1208
1209 =over 4
1210
1211 =item Regular Expressions
1212
1213 cntrl, graph, print, punct, xdigit
1214
1215 =item Extended Patterns
1216
1217 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1218 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1219 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1220 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1221
1222 =item Backtracking
1223
1224 =item Version 8 Regular Expressions
1225
1226 =item Warning on \1 vs $1
1227
1228 =item Repeated patterns matching zero-length substring
1229
1230 =item Combining pieces together
1231
1232 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1233 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1234 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1235 C<(?(condition)yes-pattern|no-pattern)>
1236
1237 =item Creating custom RE engines
1238
1239 =back
1240
1241 =item BUGS
1242
1243 =item SEE ALSO
1244
1245 =back
1246
1247 =head2 perlref - Perl references and nested data structures
1248
1249 =over 4
1250
1251 =item NOTE
1252
1253 =item DESCRIPTION
1254
1255 =over 4
1256
1257 =item Making References
1258
1259 =item Using References
1260
1261 =item Symbolic references
1262
1263 =item Not-so-symbolic references
1264
1265 =item Pseudo-hashes: Using an array as a hash
1266
1267 =item Function Templates
1268
1269 =back
1270
1271 =item WARNING
1272
1273 =item SEE ALSO
1274
1275 =back
1276
1277 =head2 perlform - Perl formats
1278
1279 =over 4
1280
1281 =item DESCRIPTION
1282
1283 =over 4
1284
1285 =item Format Variables
1286
1287 =back
1288
1289 =item NOTES
1290
1291 =over 4
1292
1293 =item Footers
1294
1295 =item Accessing Formatting Internals
1296
1297 =back
1298
1299 =item WARNINGS
1300
1301 =back
1302
1303 =head2 perlboot - Beginner's Object-Oriented Tutorial
1304
1305 =over 4
1306
1307 =item DESCRIPTION
1308
1309 =over 4
1310
1311 =item If we could talk to the animals...
1312
1313 =item Introducing the method invocation arrow
1314
1315 =item Invoking a barnyard
1316
1317 =item The extra parameter of method invocation
1318
1319 =item Calling a second method to simplify things
1320
1321 =item Inheriting the windpipes
1322
1323 =item A few notes about @ISA
1324
1325 =item Overriding the methods
1326
1327 =item Starting the search from a different place
1328
1329 =item The SUPER way of doing things
1330
1331 =item Where we're at so far...
1332
1333 =item A horse is a horse, of course of course -- or is it?
1334
1335 =item Invoking an instance method
1336
1337 =item Accessing the instance data
1338
1339 =item How to build a horse
1340
1341 =item Inheriting the constructor
1342
1343 =item Making a method work with either classes or instances
1344
1345 =item Adding parameters to a method
1346
1347 =item More interesting instances
1348
1349 =item A horse of a different color
1350
1351 =item Summary
1352
1353 =back
1354
1355 =item SEE ALSO
1356
1357 =item COPYRIGHT
1358
1359 =back
1360
1361 =head2 perltoot - Tom's object-oriented tutorial for perl
1362
1363 =over 4
1364
1365 =item DESCRIPTION
1366
1367 =item Creating a Class
1368
1369 =over 4
1370
1371 =item Object Representation
1372
1373 =item Class Interface
1374
1375 =item Constructors and Instance Methods
1376
1377 =item Planning for the Future: Better Constructors
1378
1379 =item Destructors
1380
1381 =item Other Object Methods
1382
1383 =back
1384
1385 =item Class Data
1386
1387 =over 4
1388
1389 =item Accessing Class Data
1390
1391 =item Debugging Methods
1392
1393 =item Class Destructors
1394
1395 =item Documenting the Interface
1396
1397 =back
1398
1399 =item Aggregation
1400
1401 =item Inheritance
1402
1403 =over 4
1404
1405 =item Overridden Methods
1406
1407 =item Multiple Inheritance
1408
1409 =item UNIVERSAL: The Root of All Objects
1410
1411 =back
1412
1413 =item Alternate Object Representations
1414
1415 =over 4
1416
1417 =item Arrays as Objects
1418
1419 =item Closures as Objects
1420
1421 =back
1422
1423 =item AUTOLOAD: Proxy Methods
1424
1425 =over 4
1426
1427 =item Autoloaded Data Methods
1428
1429 =item Inherited Autoloaded Data Methods
1430
1431 =back
1432
1433 =item Metaclassical Tools
1434
1435 =over 4
1436
1437 =item Class::Struct
1438
1439 =item Data Members as Variables
1440
1441 =back
1442
1443 =item NOTES
1444
1445 =over 4
1446
1447 =item Object Terminology
1448
1449 =back
1450
1451 =item SEE ALSO
1452
1453 =item AUTHOR AND COPYRIGHT
1454
1455 =item COPYRIGHT
1456
1457 =over 4
1458
1459 =item Acknowledgments
1460
1461 =back
1462
1463 =back
1464
1465 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
1466
1467 =over 4
1468
1469 =item DESCRIPTION
1470
1471 =item Class Data in a Can
1472
1473 =item Class Data as Package Variables
1474
1475 =over 4
1476
1477 =item Putting All Your Eggs in One Basket
1478
1479 =item Inheritance Concerns
1480
1481 =item The Eponymous Meta-Object
1482
1483 =item Indirect References to Class Data
1484
1485 =item Monadic Classes
1486
1487 =item Translucent Attributes
1488
1489 =back
1490
1491 =item Class Data as Lexical Variables
1492
1493 =over 4
1494
1495 =item Privacy and Responsibility 
1496
1497 =item File-Scoped Lexicals
1498
1499 =item More Inheritance Concerns
1500
1501 =item Locking the Door and Throwing Away the Key
1502
1503 =item Translucency Revisited
1504
1505 =back
1506
1507 =item NOTES
1508
1509 =item SEE ALSO
1510
1511 =item AUTHOR AND COPYRIGHT
1512
1513 =item ACKNOWLEDGEMENTS
1514
1515 =item HISTORY
1516
1517 =back
1518
1519 =head2 perlobj - Perl objects
1520
1521 =over 4
1522
1523 =item DESCRIPTION
1524
1525 =over 4
1526
1527 =item An Object is Simply a Reference
1528
1529 =item A Class is Simply a Package
1530
1531 =item A Method is Simply a Subroutine
1532
1533 =item Method Invocation
1534
1535 =item Indirect Object Syntax
1536
1537 =item Default UNIVERSAL methods
1538
1539 isa(CLASS), can(METHOD), VERSION( [NEED] )
1540
1541 =item Destructors
1542
1543 =item Summary
1544
1545 =item Two-Phased Garbage Collection
1546
1547 =back
1548
1549 =item SEE ALSO
1550
1551 =back
1552
1553 =head2 perlbot - Bag'o Object Tricks (the BOT)
1554
1555 =over 4
1556
1557 =item DESCRIPTION
1558
1559 =item OO SCALING TIPS
1560
1561 =item INSTANCE VARIABLES
1562
1563 =item SCALAR INSTANCE VARIABLES
1564
1565 =item INSTANCE VARIABLE INHERITANCE
1566
1567 =item OBJECT RELATIONSHIPS
1568
1569 =item OVERRIDING SUPERCLASS METHODS
1570
1571 =item USING RELATIONSHIP WITH SDBM
1572
1573 =item THINKING OF CODE REUSE
1574
1575 =item CLASS CONTEXT AND THE OBJECT
1576
1577 =item INHERITING A CONSTRUCTOR
1578
1579 =item DELEGATION
1580
1581 =back
1582
1583 =head2 perltie - how to hide an object class in a simple variable
1584
1585 =over 4
1586
1587 =item SYNOPSIS
1588
1589 =item DESCRIPTION
1590
1591 =over 4
1592
1593 =item Tying Scalars
1594
1595 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1596 DESTROY this
1597
1598 =item Tying Arrays
1599
1600 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1601 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1602 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1603 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1604 this
1605
1606 =item Tying Hashes
1607
1608 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1609 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1610 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1611
1612 =item Tying FileHandles
1613
1614 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1615 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1616 DESTROY this
1617
1618 =item UNTIE this
1619
1620 =item The C<untie> Gotcha
1621
1622 =back
1623
1624 =item SEE ALSO
1625
1626 =item BUGS
1627
1628 =item AUTHOR
1629
1630 =back
1631
1632 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
1633 safe subprocesses, sockets, and semaphores)
1634
1635 =over 4
1636
1637 =item DESCRIPTION
1638
1639 =item Signals
1640
1641 =item Named Pipes
1642
1643 =over 4
1644
1645 =item WARNING
1646
1647 =back
1648
1649 =item Using open() for IPC
1650
1651 =over 4
1652
1653 =item Filehandles
1654
1655 =item Background Processes
1656
1657 =item Complete Dissociation of Child from Parent
1658
1659 =item Safe Pipe Opens
1660
1661 =item Bidirectional Communication with Another Process
1662
1663 =item Bidirectional Communication with Yourself
1664
1665 =back
1666
1667 =item Sockets: Client/Server Communication
1668
1669 =over 4
1670
1671 =item Internet Line Terminators
1672
1673 =item Internet TCP Clients and Servers
1674
1675 =item Unix-Domain TCP Clients and Servers
1676
1677 =back
1678
1679 =item TCP Clients with IO::Socket
1680
1681 =over 4
1682
1683 =item A Simple Client
1684
1685 C<Proto>, C<PeerAddr>, C<PeerPort>
1686
1687 =item A Webget Client
1688
1689 =item Interactive Client with IO::Socket
1690
1691 =back
1692
1693 =item TCP Servers with IO::Socket
1694
1695 Proto, LocalPort, Listen, Reuse
1696
1697 =item UDP: Message Passing
1698
1699 =item SysV IPC
1700
1701 =item NOTES
1702
1703 =item BUGS
1704
1705 =item AUTHOR
1706
1707 =item SEE ALSO
1708
1709 =back
1710
1711 =head2 perlfork - Perl's fork() emulation (EXPERIMENTAL, subject to change)
1712
1713 =over 4
1714
1715 =item SYNOPSIS
1716
1717 =item DESCRIPTION
1718
1719 =over 4
1720
1721 =item Behavior of other Perl features in forked pseudo-processes
1722
1723 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
1724 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
1725 files, directories and network sockets
1726
1727 =item Resource limits
1728
1729 =item Killing the parent process
1730
1731 =item Lifetime of the parent process and pseudo-processes
1732
1733 =item CAVEATS AND LIMITATIONS
1734
1735 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
1736 Global state maintained by XSUBs, Interpreter embedded in larger
1737 application, Thread-safety of extensions
1738
1739 =back
1740
1741 =item BUGS
1742
1743 =item AUTHOR
1744
1745 =item SEE ALSO
1746
1747 =back
1748
1749 =head2 perlnumber - semantics of numbers and numeric operations in Perl
1750
1751 =over 4
1752
1753 =item SYNOPSIS
1754
1755 =item DESCRIPTION
1756
1757 =item Storing numbers
1758
1759 =item Numeric operators and numeric conversions
1760
1761 =item Flavors of Perl numeric operations
1762
1763 Arithmetic operators except, C<no integer>, Arithmetic operators except,
1764 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
1765 integer>, Operators which expect an integer, Operators which expect a
1766 string
1767
1768 =item AUTHOR
1769
1770 =item SEE ALSO
1771
1772 =back
1773
1774 =head2 perlthrtut - tutorial on threads in Perl
1775
1776 =over 4
1777
1778 =item DESCRIPTION
1779
1780 =back
1781
1782 =head2 perlothrtut - old tutorial on threads in Perl
1783
1784 =over 4
1785
1786 =item DESCRIPTION
1787
1788 =item What Is A Thread Anyway?
1789
1790 =item Threaded Program Models
1791
1792 =over 4
1793
1794 =item Boss/Worker
1795
1796 =item Work Crew
1797
1798 =item Pipeline
1799
1800 =back
1801
1802 =item Native threads
1803
1804 =item What kind of threads are perl threads?
1805
1806 =item Threadsafe Modules
1807
1808 =item Thread Basics
1809
1810 =over 4
1811
1812 =item Basic Thread Support
1813
1814 =item Creating Threads
1815
1816 =item Giving up control
1817
1818 =item Waiting For A Thread To Exit
1819
1820 =item Errors In Threads
1821
1822 =item Ignoring A Thread
1823
1824 =back
1825
1826 =item Threads And Data
1827
1828 =over 4
1829
1830 =item Shared And Unshared Data
1831
1832 =item Thread Pitfall: Races
1833
1834 =item Controlling access: lock()
1835
1836 =item Thread Pitfall: Deadlocks
1837
1838 =item Queues: Passing Data Around
1839
1840 =back
1841
1842 =item Threads And Code
1843
1844 =over 4
1845
1846 =item Semaphores: Synchronizing Data Access
1847
1848 Basic semaphores, Advanced Semaphores
1849
1850 =item Attributes: Restricting Access To Subroutines
1851
1852 =item Subroutine Locks
1853
1854 =item Methods
1855
1856 =item Locking A Subroutine
1857
1858 =back
1859
1860 =item General Thread Utility Routines
1861
1862 =over 4
1863
1864 =item What Thread Am I In?
1865
1866 =item Thread IDs
1867
1868 =item Are These Threads The Same?
1869
1870 =item What Threads Are Running?
1871
1872 =back
1873
1874 =item A Complete Example
1875
1876 =item Conclusion
1877
1878 =item Bibliography
1879
1880 =over 4
1881
1882 =item Introductory Texts
1883
1884 =item OS-Related References
1885
1886 =item Other References
1887
1888 =back
1889
1890 =item Acknowledgements
1891
1892 =item AUTHOR
1893
1894 =item Copyrights
1895
1896 =back
1897
1898 =head2 perlport - Writing portable Perl
1899
1900 =over 4
1901
1902 =item DESCRIPTION
1903
1904 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
1905 portable
1906
1907 =item ISSUES
1908
1909 =over 4
1910
1911 =item Newlines
1912
1913 =item Numbers endianness and Width
1914
1915 =item Files and Filesystems
1916
1917 =item System Interaction
1918
1919 =item Interprocess Communication (IPC)
1920
1921 =item External Subroutines (XS)
1922
1923 =item Standard Modules
1924
1925 =item Time and Date
1926
1927 =item Character sets and character encoding
1928
1929 =item Internationalisation
1930
1931 =item System Resources
1932
1933 =item Security
1934
1935 =item Style
1936
1937 =back
1938
1939 =item CPAN Testers
1940
1941 Mailing list: cpan-testers@perl.org, Testing results:
1942 http://testers.cpan.org/
1943
1944 =item PLATFORMS
1945
1946 =over 4
1947
1948 =item Unix
1949
1950 =item DOS and Derivatives
1951
1952 =item S<Mac OS>
1953
1954 =item VMS
1955
1956 =item VOS
1957
1958 =item EBCDIC Platforms
1959
1960 =item Acorn RISC OS
1961
1962 =item Other perls
1963
1964 =back
1965
1966 =item FUNCTION IMPLEMENTATIONS
1967
1968 =over 4
1969
1970 =item Alphabetical Listing of Perl Functions
1971
1972 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
1973 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
1974 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
1975 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
1976 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
1977 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
1978 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
1979 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
1980 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
1981 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
1982 endhostent, endnetent, endprotoent, endservent, getsockopt
1983 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
1984 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
1985 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
1986 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
1987 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
1988 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
1989 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
1990 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
1991 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
1992 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
1993 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
1994 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
1995 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
1996 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
1997 wait, waitpid PID,FLAGS
1998
1999 =back
2000
2001 =item CHANGES
2002
2003 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
2004 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
2005 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
2006 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
2007 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
2008 v1.30, 03 August 1998, v1.23, 10 July 1998
2009
2010 =item Supported Platforms
2011
2012 =item SEE ALSO
2013
2014 =item AUTHORS / CONTRIBUTORS
2015
2016 =item VERSION
2017
2018 =back
2019
2020 =head2 perllocale - Perl locale handling (internationalization and
2021 localization)
2022
2023 =over 4
2024
2025 =item DESCRIPTION
2026
2027 =item PREPARING TO USE LOCALES
2028
2029 =item USING LOCALES
2030
2031 =over 4
2032
2033 =item The use locale pragma
2034
2035 =item The setlocale function
2036
2037 =item Finding locales
2038
2039 =item LOCALE PROBLEMS
2040
2041 =item Temporarily fixing locale problems
2042
2043 =item Permanently fixing locale problems
2044
2045 =item Permanently fixing your system's locale configuration
2046
2047 =item Fixing system locale configuration
2048
2049 =item The localeconv function
2050
2051 =item I18N::Langinfo
2052
2053 =back
2054
2055 =item LOCALE CATEGORIES
2056
2057 =over 4
2058
2059 =item Category LC_COLLATE: Collation
2060
2061 =item Category LC_CTYPE: Character Types
2062
2063 =item Category LC_NUMERIC: Numeric Formatting
2064
2065 =item Category LC_MONETARY: Formatting of monetary amounts
2066
2067 =item LC_TIME
2068
2069 =item Other categories
2070
2071 =back
2072
2073 =item SECURITY
2074
2075 =item ENVIRONMENT
2076
2077 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
2078 LC_NUMERIC, LC_TIME, LANG
2079
2080 =item NOTES
2081
2082 =over 4
2083
2084 =item Backward compatibility
2085
2086 =item I18N:Collate obsolete
2087
2088 =item Sort speed and memory use impacts
2089
2090 =item write() and LC_NUMERIC
2091
2092 =item Freely available locale definitions
2093
2094 =item I18n and l10n
2095
2096 =item An imperfect standard
2097
2098 =back
2099
2100 =item BUGS
2101
2102 =over 4
2103
2104 =item Broken systems
2105
2106 =back
2107
2108 =item SEE ALSO
2109
2110 =item HISTORY
2111
2112 =back
2113
2114 =head2 perluniintro - Perl Unicode introduction
2115
2116 =over 4
2117
2118 =item DESCRIPTION
2119
2120 =over 4
2121
2122 =item Unicode
2123
2124 =item Perl's Unicode Support
2125
2126 =item Perl's Unicode Model
2127
2128 =item Creating Unicode
2129
2130 =item Handling Unicode
2131
2132 =item Legacy Encodings
2133
2134 =item Unicode I/O
2135
2136 =item Special Cases
2137
2138 =item Advanced Topics
2139
2140 =item Miscellaneous
2141
2142 =item Questions With Answers
2143
2144 Will My Old Scripts Break?, How Do I Make My Scripts Work With Unicode?,
2145 How Do I Know Whether My String Is In Unicode?, How Do I Detect Invalid
2146 UTF-8?, How Do I Convert Data Into UTF-8?  Or Vice Versa?, How Do I Display
2147 Unicode?  How Do I Input Unicode?, How Does Unicode Work With Traditional
2148 Locales?
2149
2150 =item Hexadecimal Notation
2151
2152 =item Further Resources
2153
2154 =back
2155
2156 =item SEE ALSO
2157
2158 =item ACKNOWLEDGEMENTS
2159
2160 =item AUTHOR, COPYRIGHT, AND LICENSE
2161
2162 =back
2163
2164 =head2 perlunicode - Unicode support in Perl
2165
2166 =over 4
2167
2168 =item DESCRIPTION
2169
2170 =over 4
2171
2172 =item Important Caveats
2173
2174 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
2175 to enable UTF-8/UTF-EBCDIC in scripts
2176
2177 =item Byte and Character semantics
2178
2179 =item Effects of character semantics
2180
2181 =item Scripts
2182
2183 =item Blocks
2184
2185 =item Character encodings for input and output
2186
2187 =back
2188
2189 =item CAVEATS
2190
2191 =item UNICODE REGULAR EXPRESSION SUPPORT LEVEL
2192
2193 =over 4
2194
2195 =item Unicode Encodings
2196
2197 UTF-8, UTF-16, UTF-16BE, UTF16-LE, Surrogates, and BOMs (Byte Order Marks),
2198 UTF-32, UTF-32BE, UTF32-LE, UCS-2, UCS-4, UTF-7
2199
2200 =item Security Implications of Malformed UTF-8
2201
2202 =item Unicode in Perl on EBCDIC
2203
2204 =back
2205
2206 =item SEE ALSO
2207
2208 =back
2209
2210 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2211
2212 =over 4
2213
2214 =item DESCRIPTION
2215
2216 =item COMMON CHARACTER CODE SETS
2217
2218 =over 4
2219
2220 =item ASCII
2221
2222 =item ISO 8859
2223
2224 =item Latin 1 (ISO 8859-1)
2225
2226 =item EBCDIC
2227
2228 =item 13 variant characters
2229
2230 =item 0037
2231
2232 =item 1047
2233
2234 =item POSIX-BC
2235
2236 =item Unicode and UTF
2237
2238 =back
2239
2240 =item SINGLE OCTET TABLES
2241
2242 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2243
2244 =item IDENTIFYING CHARACTER CODE SETS
2245
2246 =item CONVERSIONS
2247
2248 =over 4
2249
2250 =item tr///
2251
2252 =item iconv
2253
2254 =item C RTL
2255
2256 =back
2257
2258 =item OPERATOR DIFFERENCES
2259
2260 =item FUNCTION DIFFERENCES
2261
2262 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2263
2264 =item REGULAR EXPRESSION DIFFERENCES
2265
2266 =item SOCKETS
2267
2268 =item SORTING
2269
2270 =over 4
2271
2272 =item Ignore ASCII vs. EBCDIC sort differences.
2273
2274 =item MONO CASE then sort data.
2275
2276 =item Convert, sort data, then re convert.
2277
2278 =item Perform sorting on one type of machine only.
2279
2280 =back
2281
2282 =item TRANSFORMATION FORMATS
2283
2284 =over 4
2285
2286 =item URL decoding and encoding
2287
2288 =item uu encoding and decoding
2289
2290 =item Quoted-Printable encoding and decoding
2291
2292 =item Caesarian ciphers
2293
2294 =back
2295
2296 =item Hashing order and checksums
2297
2298 =item I18N AND L10N
2299
2300 =item MULTI OCTET CHARACTER SETS
2301
2302 =item OS ISSUES
2303
2304 =over 4
2305
2306 =item OS/400 
2307
2308 IFS access
2309
2310 =item OS/390, z/OS
2311
2312 chcp, dataset access, OS/390, z/OS iconv, locales
2313
2314 =item VM/ESA?
2315
2316 =item POSIX-BC?
2317
2318 =back
2319
2320 =item BUGS
2321
2322 =item SEE ALSO
2323
2324 =item REFERENCES
2325
2326 =item HISTORY
2327
2328 =item AUTHOR
2329
2330 =back
2331
2332 =head2 perlsec - Perl security
2333
2334 =over 4
2335
2336 =item DESCRIPTION
2337
2338 =over 4
2339
2340 =item Laundering and Detecting Tainted Data
2341
2342 =item Switches On the "#!" Line
2343
2344 =item Cleaning Up Your Path
2345
2346 =item Security Bugs
2347
2348 =item Protecting Your Programs
2349
2350 =back
2351
2352 =item SEE ALSO
2353
2354 =back
2355
2356 =head2 perlmod - Perl modules (packages and symbol tables)
2357
2358 =over 4
2359
2360 =item DESCRIPTION
2361
2362 =over 4
2363
2364 =item Packages
2365
2366 =item Symbol Tables
2367
2368 =item Package Constructors and Destructors
2369
2370 =item Perl Classes
2371
2372 =item Perl Modules
2373
2374 =item Making your module threadsafe
2375
2376 =back
2377
2378 =item SEE ALSO
2379
2380 =back
2381
2382 =head2 perlmodinstall - Installing CPAN Modules
2383
2384 =over 4
2385
2386 =item DESCRIPTION
2387
2388 =over 4
2389
2390 =item PREAMBLE
2391
2392 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2393 module (sometimes unnecessary), B<INSTALL> the module
2394
2395 =back
2396
2397 =item PORTABILITY
2398
2399 =item HEY
2400
2401 =item AUTHOR
2402
2403 =item COPYRIGHT
2404
2405 =back
2406
2407 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2408
2409 =over 4
2410
2411 =item DESCRIPTION
2412
2413 =item THE PERL MODULE LIBRARY
2414
2415 =over 4
2416
2417 =item Pragmatic Modules
2418
2419 attributes, attrs, autouse, base, blib, bytes, charnames, constant,
2420 diagnostics, fields, filetest, integer, less, locale, open, ops, overload,
2421 re, sigtrap, strict, subs, threads, utf8, vars, warnings,
2422 warnings::register
2423
2424 =item Standard Modules
2425
2426 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
2427 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
2428 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
2429 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
2430 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
2431 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
2432 Class::Struct, Cwd, DB, DB_File, Devel::SelfStubber, Digest, DirHandle,
2433 Dumpvalue, Encode, Encode::EncodeFormat, Encode::Tcl, English, Env,
2434 Exporter, Exporter::Heavy, ExtUtils::Command, ExtUtils::Constant,
2435 ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed, ExtUtils::Liblist,
2436 ExtUtils::MM_Cygwin, ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_Unix,
2437 ExtUtils::MM_VMS, ExtUtils::MM_Win32, ExtUtils::MakeMaker,
2438 ExtUtils::Manifest, ExtUtils::Mkbootstrap, ExtUtils::Mksymlists,
2439 ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl, File::Basename,
2440 File::CheckTree, File::Compare, File::Copy, File::DosGlob, File::Find,
2441 File::Path, File::Spec, File::Spec::Epoc, File::Spec::Functions,
2442 File::Spec::Mac, File::Spec::OS2, File::Spec::Unix, File::Spec::VMS,
2443 File::Spec::Win32, File::Temp, File::stat, FileCache, FileHandle,
2444 Filter::Simple, FindBin, Getopt::Long, Getopt::Std, I18N::Collate,
2445 I18N::LangTags, I18N::LangTags::List, IO, IPC::Open2, IPC::Open3,
2446 Lingua::KO::Hangul::Util, Locale::Constants, Locale::Country,
2447 Locale::Currency, Locale::Language, Locale::Maketext,
2448 Locale::Maketext::TPJ13, Math::BigFloat, Math::BigInt, Math::BigInt::Calc,
2449 Math::Complex, Math::Trig, Memoize, Memoize::AnyDBM_File, Memoize::Expire,
2450 Memoize::ExpireFile, Memoize::ExpireTest, Memoize::NDBM_File,
2451 Memoize::SDBM_File, Memoize::Saves, Memoize::Storable, NDBM_File, NEXT,
2452 Net::Cmd, Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc,
2453 Net::POP3, Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ,
2454 Net::netent, Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX,
2455 PerlIO, Pod::Checker, Pod::Find, Pod::Html, Pod::InputObjects, Pod::LaTeX,
2456 Pod::Man, Pod::ParseUtils, Pod::Parser, Pod::Plainer, Pod::Select,
2457 Pod::Text, Pod::Text::Color, Pod::Text::Overstrike, Pod::Text::Termcap,
2458 Pod::Usage, SDBM_File, Safe, Search::Dict, SelectSaver, SelfLoader, Shell,
2459 Socket, Storable, Switch, Symbol, Term::ANSIColor, Term::Cap,
2460 Term::Complete, Term::ReadLine, Test, Test::Harness, Test::More,
2461 Test::Simple, Test::Tutorial, Text::Abbrev, Text::Balanced,
2462 Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap, Tie::Array,
2463 Tie::Handle, Tie::Hash, Tie::RefHash, Tie::Scalar, Tie::SubstrHash,
2464 Time::Local, Time::gmtime, Time::localtime, Time::tm, UNIVERSAL,
2465 Unicode::Collate, Unicode::Normalize, Unicode::UCD, User::grent,
2466 User::pwent, Win32
2467
2468 =item Extension Modules
2469
2470 =back
2471
2472 =item CPAN
2473
2474 =over 4
2475
2476 =item Africa
2477
2478 =item Asia
2479
2480 =item Central America
2481
2482 =item Europe
2483
2484 =item North America
2485
2486 =item Oceania
2487
2488 =item South America
2489
2490 =back
2491
2492 =item Modules: Creation, Use, and Abuse
2493
2494 =over 4
2495
2496 =item Guidelines for Module Creation
2497
2498 Adding a Copyright Notice
2499
2500 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2501
2502 =item Guidelines for Reusing Application Code
2503
2504 =back
2505
2506 =item NOTE
2507
2508 =back
2509
2510 =head2 perlmodstyle - Perl module style guide
2511
2512 =over 4
2513
2514 =item INTRODUCTION
2515
2516 =item QUICK CHECKLIST
2517
2518 =over 4
2519
2520 =item Before you start
2521
2522 =item The API
2523
2524 =item Stability
2525
2526 =item Documentation
2527
2528 =item Release considerations
2529
2530 =back
2531
2532 =item BEFORE YOU START WRITING A MODULE
2533
2534 =over 4
2535
2536 =item Has it been done before?
2537
2538 =item Do one thing and do it well
2539
2540 =item What's in a name?
2541
2542 =back
2543
2544 =item DESIGNING AND WRITING YOUR MODULE
2545
2546 =over 4
2547
2548 =item To OO or not to OO?
2549
2550 =item Designing your API
2551
2552 Write simple routines to do simple things, Separate functionality from
2553 output, Provide sensible shortcuts and defaults, Naming conventions,
2554 Parameter passing
2555
2556 =item Strictness and warnings
2557
2558 =item Backwards compatibility
2559
2560 =item Error handling and messages
2561
2562 =back
2563
2564 =item DOCUMENTING YOUR MODULE
2565
2566 =over 4
2567
2568 =item POD
2569
2570 =item README, INSTALL, release notes, changelogs
2571
2572 =back
2573
2574 =item RELEASE CONSIDERATIONS
2575
2576 =over 4
2577
2578 =item Version numbering
2579
2580 =item Pre-requisites
2581
2582 =item Testing
2583
2584 =item Packaging
2585
2586 =item Licensing
2587
2588 =back
2589
2590 =item COMMON PITFALLS
2591
2592 =over 4
2593
2594 =item Reinventing the wheel
2595
2596 =item Trying to do too much
2597
2598 =item Inappropriate documentation
2599
2600 =back
2601
2602 =item SEE ALSO
2603
2604 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Testing tools,
2605 http://pause.perl.org/, Any good book on software engineering
2606
2607 =item AUTHOR
2608
2609 =back
2610
2611 =head2 perlnewmod - preparing a new module for distribution
2612
2613 =over 4
2614
2615 =item DESCRIPTION
2616
2617 =over 4
2618
2619 =item Warning
2620
2621 =item What should I make into a module?
2622
2623 =item Step-by-step: Preparing the ground
2624
2625 Look around, Check it's new, Discuss the need, Choose a name, Check again
2626
2627 =item Step-by-step: Making the module
2628
2629 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2630 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2631 documentation|perlpod>, Write tests, Write the README
2632
2633 =item Step-by-step: Distributing your module
2634
2635 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2636 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2637
2638 =back
2639
2640 =item AUTHOR
2641
2642 =item SEE ALSO
2643
2644 =back
2645
2646 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.2 $, $Date:
2647 2001/11/09 08:06:04 $)
2648
2649 =over 4
2650
2651 =item DESCRIPTION
2652
2653 =over 4
2654
2655 =item What is Perl?
2656
2657 =item Who supports Perl?  Who develops it?  Why is it free?
2658
2659 =item Which version of Perl should I use?
2660
2661 =item What are perl4 and perl5?
2662
2663 =item What is perl6?
2664
2665 =item How stable is Perl?
2666
2667 =item Is Perl difficult to learn?
2668
2669 =item How does Perl compare with other languages like Java, Python, REXX,
2670 Scheme, or Tcl?
2671
2672 =item Can I do [task] in Perl?
2673
2674 =item When shouldn't I program in Perl?
2675
2676 =item What's the difference between "perl" and "Perl"?
2677
2678 =item Is it a Perl program or a Perl script?
2679
2680 =item What is a JAPH?
2681
2682 =item Where can I get a list of Larry Wall witticisms?
2683
2684 =item How can I convince my sysadmin/supervisor/employees to use version
2685 5/5.005/Perl instead of some other language?
2686
2687 =back
2688
2689 =item AUTHOR AND COPYRIGHT
2690
2691 =back
2692
2693 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.3 $,
2694 $Date: 2001/11/09 08:06:04 $)
2695
2696 =over 4
2697
2698 =item DESCRIPTION
2699
2700 =over 4
2701
2702 =item What machines support Perl?  Where do I get it?
2703
2704 =item How can I get a binary version of Perl?
2705
2706 =item I don't have a C compiler on my system.  How can I compile perl?
2707
2708 =item I copied the Perl binary from one machine to another, but scripts
2709 don't work.
2710
2711 =item I grabbed the sources and tried to compile but gdbm/dynamic
2712 loading/malloc/linking/... failed.  How do I make it work?
2713
2714 =item What modules and extensions are available for Perl?  What is CPAN? 
2715 What does CPAN/src/... mean?
2716
2717 =item Is there an ISO or ANSI certified version of Perl?
2718
2719 =item Where can I get information on Perl?
2720
2721 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
2722
2723 =item Where should I post source code?
2724
2725 =item Perl Books
2726
2727 References, Tutorials, Task-Oriented, Special Topics
2728
2729 =item Perl in Magazines
2730
2731 =item Perl on the Net: FTP and WWW Access
2732
2733 =item What mailing lists are there for Perl?
2734
2735 =item Archives of comp.lang.perl.misc
2736
2737 =item Where can I buy a commercial version of Perl?
2738
2739 =item Where do I send bug reports?
2740
2741 =item What is perl.com? Perl Mongers? pm.org? perl.org?
2742
2743 =back
2744
2745 =item AUTHOR AND COPYRIGHT
2746
2747 =back
2748
2749 =head2 perlfaq3 - Programming Tools ($Revision: 1.9 $, $Date: 2001/11/09
2750 08:06:04 $)
2751
2752 =over 4
2753
2754 =item DESCRIPTION
2755
2756 =over 4
2757
2758 =item How do I do (anything)?
2759
2760 =item How can I use Perl interactively?
2761
2762 =item Is there a Perl shell?
2763
2764 =item How do I debug my Perl programs?
2765
2766 =item How do I profile my Perl programs?
2767
2768 =item How do I cross-reference my Perl programs?
2769
2770 =item Is there a pretty-printer (formatter) for Perl?
2771
2772 =item Is there a ctags for Perl?
2773
2774 =item Is there an IDE or Windows Perl Editor?
2775
2776 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+,
2777 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
2778 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
2779
2780 =item Where can I get Perl macros for vi?
2781
2782 =item Where can I get perl-mode for emacs?
2783
2784 =item How can I use curses with Perl?
2785
2786 =item How can I use X or Tk with Perl?
2787
2788 =item How can I generate simple menus without using CGI or Tk?
2789
2790 =item What is undump?
2791
2792 =item How can I make my Perl program run faster?
2793
2794 =item How can I make my Perl program take less memory?
2795
2796 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
2797 stringification, Pass by reference, Tie large variables to disk
2798
2799 =item Is it unsafe to return a pointer to local data?
2800
2801 =item How can I free an array or hash so my program shrinks?
2802
2803 =item How can I make my CGI script more efficient?
2804
2805 =item How can I hide the source for my Perl program?
2806
2807 =item How can I compile my Perl program into byte code or C?
2808
2809 =item How can I compile Perl into Java?
2810
2811 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
2812
2813 =item Can I write useful Perl programs on the command line?
2814
2815 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
2816
2817 =item Where can I learn about CGI or Web programming in Perl?
2818
2819 =item Where can I learn about object-oriented Perl programming?
2820
2821 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
2822
2823 =item I've read perlembed, perlguts, etc., but I can't embed perl in
2824 my C program; what am I doing wrong?
2825
2826 =item When I tried to run my script, I got this message. What does it
2827 mean?
2828
2829 =item What's MakeMaker?
2830
2831 =back
2832
2833 =item AUTHOR AND COPYRIGHT
2834
2835 =back
2836
2837 =head2 perlfaq4 - Data Manipulation ($Revision: 1.8 $, $Date: 2001/11/09
2838 08:06:04 $)
2839
2840 =over 4
2841
2842 =item DESCRIPTION
2843
2844 =item Data: Numbers
2845
2846 =over 4
2847
2848 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
2849 numbers I should be getting (eg, 19.95)?
2850
2851 =item Why isn't my octal data interpreted correctly?
2852
2853 =item Does Perl have a round() function?  What about ceil() and floor()? 
2854 Trig functions?
2855
2856 =item How do I convert between numeric representations:
2857
2858 B<How do I convert Hexadecimal into decimal:>, B<How do I convert from
2859 decimal to hexadecimal:>, B<How do I convert from octal to decimal:>, B<How
2860 do I convert from decimal to octal:>, B<How do I convert from binary to
2861 decimal:>, B<How do I convert from decimal to binary:>
2862
2863 =item Why doesn't & work the way I want it to?
2864
2865 =item How do I multiply matrices?
2866
2867 =item How do I perform an operation on a series of integers?
2868
2869 =item How can I output Roman numerals?
2870
2871 =item Why aren't my random numbers random?
2872
2873 =back
2874
2875 =item Data: Dates
2876
2877 =over 4
2878
2879 =item How do I find the week-of-the-year/day-of-the-year?
2880
2881 =item How do I find the current century or millennium?
2882
2883 =item How can I compare two dates and find the difference?
2884
2885 =item How can I take a string and turn it into epoch seconds?
2886
2887 =item How can I find the Julian Day?
2888
2889 =item How do I find yesterday's date?
2890
2891 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
2892
2893 =back
2894
2895 =item Data: Strings
2896
2897 =over 4
2898
2899 =item How do I validate input?
2900
2901 =item How do I unescape a string?
2902
2903 =item How do I remove consecutive pairs of characters?
2904
2905 =item How do I expand function calls in a string?
2906
2907 =item How do I find matching/nesting anything?
2908
2909 =item How do I reverse a string?
2910
2911 =item How do I expand tabs in a string?
2912
2913 =item How do I reformat a paragraph?
2914
2915 =item How can I access/change the first N letters of a string?
2916
2917 =item How do I change the Nth occurrence of something?
2918
2919 =item How can I count the number of occurrences of a substring within a
2920 string?
2921
2922 =item How do I capitalize all the words on one line?
2923
2924 =item How can I split a [character] delimited string except when inside
2925 [character]? (Comma-separated files)
2926
2927 =item How do I strip blank space from the beginning/end of a string?
2928
2929 =item How do I pad a string with blanks or pad a number with zeroes?
2930
2931 =item How do I extract selected columns from a string?
2932
2933 =item How do I find the soundex value of a string?
2934
2935 =item How can I expand variables in text strings?
2936
2937 =item What's wrong with always quoting "$vars"?
2938
2939 =item Why don't my <<HERE documents work?
2940
2941 1. There must be no space after the << part, 2. There (probably) should be
2942 a semicolon at the end, 3. You can't (easily) have any space in front of
2943 the tag
2944
2945 =back
2946
2947 =item Data: Arrays
2948
2949 =over 4
2950
2951 =item What is the difference between a list and an array?
2952
2953 =item What is the difference between $array[1] and @array[1]?
2954
2955 =item How can I remove duplicate elements from a list or array?
2956
2957 a), b), c), d), e)
2958
2959 =item How can I tell whether a certain element is contained in a list or
2960 array?
2961
2962 =item How do I compute the difference of two arrays?  How do I compute the
2963 intersection of two arrays?
2964
2965 =item How do I test whether two arrays or hashes are equal?
2966
2967 =item How do I find the first array element for which a condition is true?
2968
2969 =item How do I handle linked lists?
2970
2971 =item How do I handle circular lists?
2972
2973 =item How do I shuffle an array randomly?
2974
2975 =item How do I process/modify each element of an array?
2976
2977 =item How do I select a random element from an array?
2978
2979 =item How do I permute N elements of a list?
2980
2981 =item How do I sort an array by (anything)?
2982
2983 =item How do I manipulate arrays of bits?
2984
2985 =item Why does defined() return true on empty arrays and hashes?
2986
2987 =back
2988
2989 =item Data: Hashes (Associative Arrays)
2990
2991 =over 4
2992
2993 =item How do I process an entire hash?
2994
2995 =item What happens if I add or remove keys from a hash while iterating over
2996 it?
2997
2998 =item How do I look up a hash element by value?
2999
3000 =item How can I know how many entries are in a hash?
3001
3002 =item How do I sort a hash (optionally by value instead of key)?
3003
3004 =item How can I always keep my hash sorted?
3005
3006 =item What's the difference between "delete" and "undef" with hashes?
3007
3008 =item Why don't my tied hashes make the defined/exists distinction?
3009
3010 =item How do I reset an each() operation part-way through?
3011
3012 =item How can I get the unique keys from two hashes?
3013
3014 =item How can I store a multidimensional array in a DBM file?
3015
3016 =item How can I make my hash remember the order I put elements into it?
3017
3018 =item Why does passing a subroutine an undefined element in a hash create
3019 it?
3020
3021 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
3022 array of hashes or arrays?
3023
3024 =item How can I use a reference as a hash key?
3025
3026 =back
3027
3028 =item Data: Misc
3029
3030 =over 4
3031
3032 =item How do I handle binary data correctly?
3033
3034 =item How do I determine whether a scalar is a number/whole/integer/float?
3035
3036 =item How do I keep persistent data across program calls?
3037
3038 =item How do I print out or copy a recursive data structure?
3039
3040 =item How do I define methods for every class/object?
3041
3042 =item How do I verify a credit card checksum?
3043
3044 =item How do I pack arrays of doubles or floats for XS code?
3045
3046 =back
3047
3048 =item AUTHOR AND COPYRIGHT
3049
3050 =back
3051
3052 =head2 perlfaq5 - Files and Formats ($Revision: 1.4 $, $Date: 2001/11/09
3053 08:06:04 $)
3054
3055 =over 4
3056
3057 =item DESCRIPTION
3058
3059 =over 4
3060
3061 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
3062
3063 =item How do I change one line in a file/delete a line in a file/insert a
3064 line in the middle of a file/append to the beginning of a file?
3065
3066 =item How do I count the number of lines in a file?
3067
3068 =item How do I make a temporary file name?
3069
3070 =item How can I manipulate fixed-record-length files?
3071
3072 =item How can I make a filehandle local to a subroutine?  How do I pass
3073 filehandles between subroutines?  How do I make an array of filehandles?
3074
3075 =item How can I use a filehandle indirectly?
3076
3077 =item How can I set up a footer format to be used with write()?
3078
3079 =item How can I write() into a string?
3080
3081 =item How can I output my numbers with commas added?
3082
3083 =item How can I translate tildes (~) in a filename?
3084
3085 =item How come when I open a file read-write it wipes it out?
3086
3087 =item Why do I sometimes get an "Argument list too long" when I use <*>?
3088
3089 =item Is there a leak/bug in glob()?
3090
3091 =item How can I open a file with a leading ">" or trailing blanks?
3092
3093 =item How can I reliably rename a file?
3094
3095 =item How can I lock a file?
3096
3097 =item Why can't I just open(FH, ">file.lock")?
3098
3099 =item I still don't get locking.  I just want to increment the number in
3100 the file.  How can I do this?
3101
3102 =item All I want to do is append a small amount of text to the end of a
3103 file.  Do I still have to use locking?
3104
3105 =item How do I randomly update a binary file?
3106
3107 =item How do I get a file's timestamp in perl?
3108
3109 =item How do I set a file's timestamp in perl?
3110
3111 =item How do I print to more than one file at once?
3112
3113 =item How can I read in an entire file all at once?
3114
3115 =item How can I read in a file by paragraphs?
3116
3117 =item How can I read a single character from a file?  From the keyboard?
3118
3119 =item How can I tell whether there's a character waiting on a filehandle?
3120
3121 =item How do I do a C<tail -f> in perl?
3122
3123 =item How do I dup() a filehandle in Perl?
3124
3125 =item How do I close a file descriptor by number?
3126
3127 =item Why can't I use "C:\temp\foo" in DOS paths?  What doesn't
3128 `C:\temp\foo.exe` work?
3129
3130 =item Why doesn't glob("*.*") get all the files?
3131
3132 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
3133 protected files?  Isn't this a bug in Perl?
3134
3135 =item How do I select a random line from a file?
3136
3137 =item Why do I get weird spaces when I print an array of lines?
3138
3139 =back
3140
3141 =item AUTHOR AND COPYRIGHT
3142
3143 =back
3144
3145 =head2 perlfaq6 - Regexes ($Revision: 1.4 $, $Date: 2001/11/09 08:06:04 $)
3146
3147 =over 4
3148
3149 =item DESCRIPTION
3150
3151 =over 4
3152
3153 =item How can I hope to use regular expressions without creating illegible
3154 and unmaintainable code?
3155
3156 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
3157
3158 =item I'm having trouble matching over more than one line.  What's wrong?
3159
3160 =item How can I pull out lines between two patterns that are themselves on
3161 different lines?
3162
3163 =item I put a regular expression into $/ but it didn't work. What's wrong?
3164
3165 =item How do I substitute case insensitively on the LHS while preserving
3166 case on the RHS?
3167
3168 =item How can I make C<\w> match national character sets?
3169
3170 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
3171
3172 =item How can I quote a variable to use in a regex?
3173
3174 =item What is C</o> really for?
3175
3176 =item How do I use a regular expression to strip C style comments from a
3177 file?
3178
3179 =item Can I use Perl regular expressions to match balanced text?
3180
3181 =item What does it mean that regexes are greedy?  How can I get around it?
3182
3183 =item How do I process each word on each line?
3184
3185 =item How can I print out a word-frequency or line-frequency summary?
3186
3187 =item How can I do approximate matching?
3188
3189 =item How do I efficiently match many regular expressions at once?
3190
3191 =item Why don't word-boundary searches with C<\b> work for me?
3192
3193 =item Why does using $&, $`, or $' slow my program down?
3194
3195 =item What good is C<\G> in a regular expression?
3196
3197 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
3198
3199 =item What's wrong with using grep or map in a void context?
3200
3201 =item How can I match strings with multibyte characters?
3202
3203 =item How do I match a pattern that is supplied by the user?
3204
3205 =back
3206
3207 =item AUTHOR AND COPYRIGHT
3208
3209 =back
3210
3211 =head2 perlfaq7 - Perl Language Issues ($Revision: 1.4 $, $Date: 2001/11/07
3212 02:27:50 $)
3213
3214 =over 4
3215
3216 =item DESCRIPTION
3217
3218 =over 4
3219
3220 =item Can I get a BNF/yacc/RE for the Perl language?
3221
3222 =item What are all these $@%&* punctuation signs, and how do I know when to
3223 use them?
3224
3225 =item Do I always/never have to quote my strings or use semicolons and
3226 commas?
3227
3228 =item How do I skip some return values?
3229
3230 =item How do I temporarily block warnings?
3231
3232 =item What's an extension?
3233
3234 =item Why do Perl operators have different precedence than C operators?
3235
3236 =item How do I declare/create a structure?
3237
3238 =item How do I create a module?
3239
3240 =item How do I create a class?
3241
3242 =item How can I tell if a variable is tainted?
3243
3244 =item What's a closure?
3245
3246 =item What is variable suicide and how can I prevent it?
3247
3248 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
3249 Regex}?
3250
3251 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
3252 Passing Methods
3253
3254 =item How do I create a static variable?
3255
3256 =item What's the difference between dynamic and lexical (static) scoping? 
3257 Between local() and my()?
3258
3259 =item How can I access a dynamic variable while a similarly named lexical
3260 is in scope?
3261
3262 =item What's the difference between deep and shallow binding?
3263
3264 =item Why doesn't "my($foo) = <FILE>;" work right?
3265
3266 =item How do I redefine a builtin function, operator, or method?
3267
3268 =item What's the difference between calling a function as &foo and foo()?
3269
3270 =item How do I create a switch or case statement?
3271
3272 =item How can I catch accesses to undefined variables/functions/methods?
3273
3274 =item Why can't a method included in this same file be found?
3275
3276 =item How can I find out my current package?
3277
3278 =item How can I comment out a large block of perl code?
3279
3280 =item How do I clear a package?
3281
3282 =item How can I use a variable as a variable name?
3283
3284 =back
3285
3286 =item AUTHOR AND COPYRIGHT
3287
3288 =back
3289
3290 =head2 perlfaq8 - System Interaction ($Revision: 1.4 $, $Date: 2001/11/09
3291 08:06:04 $)
3292
3293 =over 4
3294
3295 =item DESCRIPTION
3296
3297 =over 4
3298
3299 =item How do I find out which operating system I'm running under?
3300
3301 =item How come exec() doesn't return?
3302
3303 =item How do I do fancy stuff with the keyboard/screen/mouse?
3304
3305 Keyboard, Screen, Mouse
3306
3307 =item How do I print something out in color?
3308
3309 =item How do I read just one key without waiting for a return key?
3310
3311 =item How do I check whether input is ready on the keyboard?
3312
3313 =item How do I clear the screen?
3314
3315 =item How do I get the screen size?
3316
3317 =item How do I ask the user for a password?
3318
3319 =item How do I read and write the serial port?
3320
3321 lockfiles, open mode, end of line, flushing output, non-blocking input
3322
3323 =item How do I decode encrypted password files?
3324
3325 =item How do I start a process in the background?
3326
3327 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3328
3329 =item How do I trap control characters/signals?
3330
3331 =item How do I modify the shadow password file on a Unix system?
3332
3333 =item How do I set the time and date?
3334
3335 =item How can I sleep() or alarm() for under a second?
3336
3337 =item How can I measure time under a second?
3338
3339 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3340
3341 =item Why doesn't my sockets program work under System V (Solaris)?  What
3342 does the error message "Protocol not supported" mean?
3343
3344 =item How can I call my system's unique C functions from Perl?
3345
3346 =item Where do I get the include files to do ioctl() or syscall()?
3347
3348 =item Why do setuid perl scripts complain about kernel problems?
3349
3350 =item How can I open a pipe both to and from a command?
3351
3352 =item Why can't I get the output of a command with system()?
3353
3354 =item How can I capture STDERR from an external command?
3355
3356 =item Why doesn't open() return an error when a pipe open fails?
3357
3358 =item What's wrong with using backticks in a void context?
3359
3360 =item How can I call backticks without shell processing?
3361
3362 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3363 ^Z on MS-DOS)?
3364
3365 =item How can I convert my shell script to perl?
3366
3367 =item Can I use perl to run a telnet or ftp session?
3368
3369 =item How can I write expect in Perl?
3370
3371 =item Is there a way to hide perl's command line from programs such as
3372 "ps"?
3373
3374 =item I {changed directory, modified my environment} in a perl script.  How
3375 come the change disappeared when I exited the script?  How do I get my
3376 changes to be visible?
3377
3378 Unix
3379
3380 =item How do I close a process's filehandle without waiting for it to
3381 complete?
3382
3383 =item How do I fork a daemon process?
3384
3385 =item How do I find out if I'm running interactively or not?
3386
3387 =item How do I timeout a slow event?
3388
3389 =item How do I set CPU limits?
3390
3391 =item How do I avoid zombies on a Unix system?
3392
3393 =item How do I use an SQL database?
3394
3395 =item How do I make a system() exit on control-C?
3396
3397 =item How do I open a file without blocking?
3398
3399 =item How do I install a module from CPAN?
3400
3401 =item What's the difference between require and use?
3402
3403 =item How do I keep my own module/library directory?
3404
3405 =item How do I add the directory my program lives in to the module/library
3406 search path?
3407
3408 =item How do I add a directory to my include path at runtime?
3409
3410 =item What is socket.ph and where do I get it?
3411
3412 =back
3413
3414 =item AUTHOR AND COPYRIGHT
3415
3416 =back
3417
3418 =head2 perlfaq9 - Networking ($Revision: 1.5 $, $Date: 2001/11/09 08:06:04
3419 $)
3420
3421 =over 4
3422
3423 =item DESCRIPTION
3424
3425 =over 4
3426
3427 =item What is the correct form of response from a CGI script?
3428
3429 =item My CGI script runs from the command line but not the browser.  (500
3430 Server Error)
3431
3432 =item How can I get better error messages from a CGI program?
3433
3434 =item How do I remove HTML from a string?
3435
3436 =item How do I extract URLs?
3437
3438 =item How do I download a file from the user's machine?  How do I open a
3439 file on another machine?
3440
3441 =item How do I make a pop-up menu in HTML?
3442
3443 =item How do I fetch an HTML file?
3444
3445 =item How do I automate an HTML form submission?
3446
3447 =item How do I decode or create those %-encodings on the web?
3448
3449 =item How do I redirect to another page?
3450
3451 =item How do I put a password on my web pages?
3452
3453 =item How do I edit my .htpasswd and .htgroup files with Perl?
3454
3455 =item How do I make sure users can't enter values into a form that cause my
3456 CGI script to do bad things?
3457
3458 =item How do I parse a mail header?
3459
3460 =item How do I decode a CGI form?
3461
3462 =item How do I check a valid mail address?
3463
3464 =item How do I decode a MIME/BASE64 string?
3465
3466 =item How do I return the user's mail address?
3467
3468 =item How do I send mail?
3469
3470 =item How do I use MIME to make an attachment to a mail message?
3471
3472 =item How do I read mail?
3473
3474 =item How do I find out my hostname/domainname/IP address?
3475
3476 =item How do I fetch a news article or the active newsgroups?
3477
3478 =item How do I fetch/put an FTP file?
3479
3480 =item How can I do RPC in Perl?
3481
3482 =back
3483
3484 =item AUTHOR AND COPYRIGHT
3485
3486 =back
3487
3488 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3489
3490 =over 4
3491
3492 =item DESCRIPTION
3493
3494 =over 4
3495
3496 =item Layout
3497
3498 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3499
3500 =back
3501
3502 =item Using The Back Ends
3503
3504 =over 4
3505
3506 =item The Cross Referencing Back End
3507
3508 i, &, s, r
3509
3510 =item The Decompiling Back End
3511
3512 =item The Lint Back End
3513
3514 =item The Simple C Back End
3515
3516 =item The Bytecode Back End
3517
3518 =item The Optimized C Back End
3519
3520 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3521 B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj,
3522 B::Stash, B::Terse, B::Xref
3523
3524 =back
3525
3526 =item KNOWN PROBLEMS
3527
3528 =item AUTHOR
3529
3530 =back
3531
3532 =head2 perlembed - how to embed perl in your C program
3533
3534 =over 4
3535
3536 =item DESCRIPTION
3537
3538 =over 4
3539
3540 =item PREAMBLE
3541
3542 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3543 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3544
3545 =item ROADMAP
3546
3547 =item Compiling your C program
3548
3549 =item Adding a Perl interpreter to your C program
3550
3551 =item Calling a Perl subroutine from your C program
3552
3553 =item Evaluating a Perl statement from your C program
3554
3555 =item Performing Perl pattern matches and substitutions from your C program
3556
3557 =item Fiddling with the Perl stack from your C program
3558
3559 =item Maintaining a persistent interpreter
3560
3561 =item Execution of END blocks
3562
3563 =item Maintaining multiple interpreter instances
3564
3565 =item Using Perl modules, which themselves use C libraries, from your C
3566 program
3567
3568 =back
3569
3570 =item Embedding Perl under Win32
3571
3572 =item MORAL
3573
3574 =item AUTHOR
3575
3576 =item COPYRIGHT
3577
3578 =back
3579
3580 =head2 perldebguts - Guts of Perl debugging 
3581
3582 =over 4
3583
3584 =item DESCRIPTION
3585
3586 =item Debugger Internals
3587
3588 =over 4
3589
3590 =item Writing Your Own Debugger
3591
3592 =back
3593
3594 =item Frame Listing Output Examples
3595
3596 =item Debugging regular expressions
3597
3598 =over 4
3599
3600 =item Compile-time output
3601
3602 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3603 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3604 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3605 C<anchored(TYPE)>
3606
3607 =item Types of nodes
3608
3609 =item Run-time output
3610
3611 =back
3612
3613 =item Debugging Perl memory usage
3614
3615 =over 4
3616
3617 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3618
3619 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3620 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3621 6144>
3622
3623 =item Example of using B<-DL> switch
3624
3625 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3626
3627 =item B<-DL> details
3628
3629 C<!!!>, C<!!>, C<!>
3630
3631 =item Limitations of B<-DL> statistics
3632
3633 =back
3634
3635 =item SEE ALSO
3636
3637 =back
3638
3639 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3640
3641 =over 4
3642
3643 =item DESCRIPTION
3644
3645 =item SPECIAL NOTES
3646
3647 =over 4
3648
3649 =item make
3650
3651 =item Version caveat
3652
3653 =item Dynamic Loading versus Static Loading
3654
3655 =back
3656
3657 =item TUTORIAL
3658
3659 =over 4
3660
3661 =item EXAMPLE 1
3662
3663 =item EXAMPLE 2
3664
3665 =item What has gone on?
3666
3667 =item Writing good test scripts
3668
3669 =item EXAMPLE 3
3670
3671 =item What's new here?
3672
3673 =item Input and Output Parameters
3674
3675 =item The XSUBPP Program
3676
3677 =item The TYPEMAP file
3678
3679 =item Warning about Output Arguments
3680
3681 =item EXAMPLE 4
3682
3683 =item What has happened here?
3684
3685 =item Anatomy of .xs file
3686
3687 =item Getting the fat out of XSUBs
3688
3689 =item More about XSUB arguments
3690
3691 =item The Argument Stack
3692
3693 =item Extending your Extension
3694
3695 =item Documenting your Extension
3696
3697 =item Installing your Extension
3698
3699 =item EXAMPLE 5
3700
3701 =item New Things in this Example
3702
3703 =item EXAMPLE 6
3704
3705 =item New Things in this Example
3706
3707 =item EXAMPLE 7 (Coming Soon)
3708
3709 =item EXAMPLE 8 (Coming Soon)
3710
3711 =item EXAMPLE 9 (Coming Soon)
3712
3713 =item Troubleshooting these Examples
3714
3715 =back
3716
3717 =item See also
3718
3719 =item Author
3720
3721 =over 4
3722
3723 =item Last Changed
3724
3725 =back
3726
3727 =back
3728
3729 =head2 perlxs - XS language reference manual
3730
3731 =over 4
3732
3733 =item DESCRIPTION
3734
3735 =over 4
3736
3737 =item Introduction
3738
3739 =item On The Road
3740
3741 =item The Anatomy of an XSUB
3742
3743 =item The Argument Stack
3744
3745 =item The RETVAL Variable
3746
3747 =item The MODULE Keyword
3748
3749 =item The PACKAGE Keyword
3750
3751 =item The PREFIX Keyword
3752
3753 =item The OUTPUT: Keyword
3754
3755 =item The NO_OUTPUT Keyword
3756
3757 =item The CODE: Keyword
3758
3759 =item The INIT: Keyword
3760
3761 =item The NO_INIT Keyword
3762
3763 =item Initializing Function Parameters
3764
3765 =item Default Parameter Values
3766
3767 =item The PREINIT: Keyword
3768
3769 =item The SCOPE: Keyword
3770
3771 =item The INPUT: Keyword
3772
3773 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
3774
3775 =item Variable-length Parameter Lists
3776
3777 =item The C_ARGS: Keyword
3778
3779 =item The PPCODE: Keyword
3780
3781 =item Returning Undef And Empty Lists
3782
3783 =item The REQUIRE: Keyword
3784
3785 =item The CLEANUP: Keyword
3786
3787 =item The POSTCALL: Keyword
3788
3789 =item The BOOT: Keyword
3790
3791 =item The VERSIONCHECK: Keyword
3792
3793 =item The PROTOTYPES: Keyword
3794
3795 =item The PROTOTYPE: Keyword
3796
3797 =item The ALIAS: Keyword
3798
3799 =item The INTERFACE: Keyword
3800
3801 =item The INTERFACE_MACRO: Keyword
3802
3803 =item The INCLUDE: Keyword
3804
3805 =item The CASE: Keyword
3806
3807 =item The & Unary Operator
3808
3809 =item Inserting POD, Comments and C Preprocessor Directives
3810
3811 =item Using XS With C++
3812
3813 =item Interface Strategy
3814
3815 =item Perl Objects And C Structures
3816
3817 =item The Typemap
3818
3819 =item Safely Storing Static Data in XS
3820
3821 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
3822
3823 =back
3824
3825 =item EXAMPLES
3826
3827 =item XS VERSION
3828
3829 =item AUTHOR
3830
3831 =back
3832
3833 =head2 perlclib - Internal replacements for standard C library functions
3834
3835 =over 4
3836
3837 =item DESCRIPTION
3838
3839 =over 4
3840
3841 =item Conventions
3842
3843 C<t>, C<p>, C<n>, C<s>
3844
3845 =item File Operations
3846
3847 =item File Input and Output
3848
3849 =item File Positioning
3850
3851 =item Memory Management and String Handling
3852
3853 =item Character Class Tests
3854
3855 =item F<stdlib.h> functions
3856
3857 =item Miscellaneous functions
3858
3859 =back
3860
3861 =item SEE ALSO
3862
3863 =back
3864
3865 =head2 perlguts - Introduction to the Perl API
3866
3867 =over 4
3868
3869 =item DESCRIPTION
3870
3871 =item Variables
3872
3873 =over 4
3874
3875 =item Datatypes
3876
3877 =item What is an "IV"?
3878
3879 =item Working with SVs
3880
3881 =item Offsets
3882
3883 =item What's Really Stored in an SV?
3884
3885 =item Working with AVs
3886
3887 =item Working with HVs
3888
3889 =item Hash API Extensions
3890
3891 =item References
3892
3893 =item Blessed References and Class Objects
3894
3895 =item Creating New Variables
3896
3897 =item Reference Counts and Mortality
3898
3899 =item Stashes and Globs
3900
3901 =item Double-Typed SVs
3902
3903 =item Magic Variables
3904
3905 =item Assigning Magic
3906
3907 =item Magic Virtual Tables
3908
3909 =item Finding Magic
3910
3911 =item Understanding the Magic of Tied Hashes and Arrays
3912
3913 =item Localizing changes
3914
3915 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
3916 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
3917 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
3918 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
3919 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
3920 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
3921 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
3922 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
3923 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
3924 save_hptr(HV **hptr)>
3925
3926 =back
3927
3928 =item Subroutines
3929
3930 =over 4
3931
3932 =item XSUBs and the Argument Stack
3933
3934 =item Calling Perl Routines from within C Programs
3935
3936 =item Memory Allocation
3937
3938 =item PerlIO
3939
3940 =item Putting a C value on Perl stack
3941
3942 =item Scratchpads
3943
3944 =item Scratchpads and recursion
3945
3946 =back
3947
3948 =item Compiled code
3949
3950 =over 4
3951
3952 =item Code tree
3953
3954 =item Examining the tree
3955
3956 =item Compile pass 1: check routines
3957
3958 =item Compile pass 1a: constant folding
3959
3960 =item Compile pass 2: context propagation
3961
3962 =item Compile pass 3: peephole optimization
3963
3964 =item Pluggable runops
3965
3966 =back
3967
3968 =item Examining internal data structures with the C<dump> functions
3969
3970 =item How multiple interpreters and concurrency are supported
3971
3972 =over 4
3973
3974 =item Background and PERL_IMPLICIT_CONTEXT
3975
3976 =item So what happened to dTHR?
3977
3978 =item How do I use all this in extensions?
3979
3980 =item Should I do anything special if I call perl from multiple threads?
3981
3982 =item Future Plans and PERL_IMPLICIT_SYS
3983
3984 =back
3985
3986 =item Internal Functions
3987
3988 A, p, d, s, n, r, f, M, o, j, x
3989
3990 =over 4
3991
3992 =item Formatted Printing of IVs, UVs, and NVs
3993
3994 =item Pointer-To-Integer and Integer-To-Pointer
3995
3996 =item Source Documentation
3997
3998 =back
3999
4000 =item Unicode Support
4001
4002 =over 4
4003
4004 =item What B<is> Unicode, anyway?
4005
4006 =item How can I recognise a UTF8 string?
4007
4008 =item How does UTF8 represent Unicode characters?
4009
4010 =item How does Perl store UTF8 strings?
4011
4012 =item How do I convert a string to UTF8?
4013
4014 =item Is there anything else I need to know?
4015
4016 =back
4017
4018 =item Custom Operators
4019
4020 =item AUTHORS
4021
4022 =item SEE ALSO
4023
4024 =back
4025
4026 =head2 perlcall - Perl calling conventions from C
4027
4028 =over 4
4029
4030 =item DESCRIPTION
4031
4032 An Error Handler, An Event Driven Program
4033
4034 =item THE CALL_ FUNCTIONS
4035
4036 call_sv, call_pv, call_method, call_argv
4037
4038 =item FLAG VALUES
4039
4040 =over 4
4041
4042 =item  G_VOID
4043
4044 =item  G_SCALAR
4045
4046 =item G_ARRAY
4047
4048 =item G_DISCARD
4049
4050 =item G_NOARGS
4051
4052 =item G_EVAL
4053
4054 =item G_KEEPERR
4055
4056 =item Determining the Context
4057
4058 =back
4059
4060 =item KNOWN PROBLEMS
4061
4062 =item EXAMPLES
4063
4064 =over 4
4065
4066 =item No Parameters, Nothing returned
4067
4068 =item Passing Parameters
4069
4070 =item Returning a Scalar
4071
4072 =item Returning a list of values
4073
4074 =item Returning a list in a scalar context
4075
4076 =item Returning Data from Perl via the parameter list
4077
4078 =item Using G_EVAL
4079
4080 =item Using G_KEEPERR
4081
4082 =item Using call_sv
4083
4084 =item Using call_argv
4085
4086 =item Using call_method
4087
4088 =item Using GIMME_V
4089
4090 =item Using Perl to dispose of temporaries
4091
4092 =item Strategies for storing Callback Context Information
4093
4094 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4095 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4096 callback
4097
4098 =item Alternate Stack Manipulation
4099
4100 =item Creating and calling an anonymous subroutine in C
4101
4102 =back
4103
4104 =item SEE ALSO
4105
4106 =item AUTHOR
4107
4108 =item DATE
4109
4110 =back
4111
4112 =head2 perlutil - utilities packaged with the Perl distribution
4113
4114 =over 4
4115
4116 =item DESCRIPTION
4117
4118 =over 4
4119
4120 =item DOCUMENTATION
4121
4122 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
4123 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
4124 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
4125 L<roffitall|roffitall>
4126
4127 =item CONVERTORS
4128
4129 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
4130
4131 =item Administration
4132
4133 L<libnetcfg|libnetcfg>
4134
4135 =item Development
4136
4137 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
4138 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
4139
4140 =item SEE ALSO
4141
4142 =back
4143
4144 =back
4145
4146 =head2 perlfilter - Source Filters
4147
4148 =over 4
4149
4150 =item DESCRIPTION
4151
4152 =item CONCEPTS
4153
4154 =item USING FILTERS
4155
4156 =item WRITING A SOURCE FILTER
4157
4158 =item WRITING A SOURCE FILTER IN C
4159
4160 B<Decryption Filters>
4161
4162 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
4163
4164 =item WRITING A SOURCE FILTER IN PERL
4165
4166 =item USING CONTEXT: THE DEBUG FILTER
4167
4168 =item CONCLUSION
4169
4170 =item REQUIREMENTS
4171
4172 =item AUTHOR
4173
4174 =item Copyrights
4175
4176 =back
4177
4178 =head2 perldbmfilter - Perl DBM Filters
4179
4180 =over 4
4181
4182 =item SYNOPSIS
4183
4184 =item DESCRIPTION
4185
4186 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
4187 B<filter_fetch_value>
4188
4189 =over 4
4190
4191 =item The Filter
4192
4193 =item An Example -- the NULL termination problem.
4194
4195 =item Another Example -- Key is a C int.
4196
4197 =back
4198
4199 =item SEE ALSO
4200
4201 =item AUTHOR
4202
4203 =back
4204
4205 =head2 perlapi - autogenerated documentation for the perl public API
4206
4207 =over 4
4208
4209 =item DESCRIPTION
4210
4211 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4212 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4213 ax, bytes_from_utf8, bytes_to_utf8, call_argv, call_method, call_pv,
4214 call_sv, CLASS, Copy, croak, CvSTASH, cv_const_sv, dAX, dITEMS, dMARK,
4215 dORIGMARK, dSP, dXSARGS, dXSI32, ENTER, eval_pv, eval_sv, EXTEND,
4216 fbm_compile, fbm_instr, FREETMPS, getcwd_sv, get_av, get_cv, get_hv,
4217 get_sv, GIMME, GIMME_V, grok_bin, grok_hex, grok_number,
4218 grok_numeric_radix, grok_oct, GvSV, gv_fetchmeth, gv_fetchmethod,
4219 gv_fetchmethod_autoload, gv_stashpv, gv_stashsv, G_ARRAY, G_DISCARD,
4220 G_EVAL, G_NOARGS, G_SCALAR, G_VOID, HEf_SVKEY, HeHASH, HeKEY, HeKLEN, HePV,
4221 HeSVKEY, HeSVKEY_force, HeSVKEY_set, HeVAL, HvNAME, hv_clear, hv_delete,
4222 hv_delete_ent, hv_exists, hv_exists_ent, hv_fetch, hv_fetch_ent,
4223 hv_iterinit, hv_iterkey, hv_iterkeysv, hv_iternext, hv_iternextsv,
4224 hv_iterval, hv_magic, hv_store, hv_store_ent, hv_undef, isALNUM, isALPHA,
4225 isDIGIT, isLOWER, isSPACE, isUPPER, is_utf8_char, is_utf8_string, items,
4226 ix, LEAVE, load_module, looks_like_number, MARK, mg_clear, mg_copy,
4227 mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set, Move, New, newAV,
4228 Newc, newCONSTSUB, newHV, newRV_inc, newRV_noinc, NEWSV, newSV, newSViv,
4229 newSVnv, newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv,
4230 newSVuv, newXS, newXSproto, Newz, new_vstring, Nullav, Nullch, Nullcv,
4231 Nullhv, Nullsv, ORIGMARK, perl_alloc, perl_clone, perl_construct,
4232 perl_destruct, perl_free, perl_parse, perl_run, PL_modglobal, PL_na,
4233 PL_sv_no, PL_sv_undef, PL_sv_yes, POPi, POPl, POPn, POPp, POPpbytex, POPpx,
4234 POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu, PUTBACK, Renew, Renewc,
4235 require_pv, RETVAL, Safefree, savepv, savepvn, SAVETMPS, scan_bin,
4236 scan_hex, scan_oct, sharedsv_find, sharedsv_init, sharedsv_lock,
4237 sharedsv_new, sharedsv_thrcnt_dec, sharedsv_thrcnt_inc, sharedsv_unlock,
4238 sortsv, SP, SPAGAIN, ST, strEQ, strGE, strGT, strLE, strLT, strNE, strnEQ,
4239 strnNE, StructCopy, SvCUR, SvCUR_set, SvEND, SvGETMAGIC, SvGROW, SvIOK,
4240 SvIOKp, SvIOK_notUV, SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV,
4241 SvIOK_UV, SvIV, SvIVX, SvIVx, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK,
4242 SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVx, SvNVX, SvOK, SvOOK,
4243 SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV,
4244 SvPVbyte, SvPVbytex, SvPVbytex_force, SvPVbyte_force, SvPVbyte_nolen,
4245 SvPVutf8, SvPVutf8x, SvPVutf8x_force, SvPVutf8_force, SvPVutf8_nolen,
4246 SvPVX, SvPVx, SvPV_force, SvPV_force_nomg, SvPV_nolen, SvREFCNT,
4247 SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off, SvROK_on, SvRV, SvSETMAGIC,
4248 SvSetMagicSV, SvSetMagicSV_nosteal, SvSetSV, SvSetSV_nosteal, SvSTASH,
4249 SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, svtype, SvTYPE,
4250 SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG, SvUOK,
4251 SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVx, SvUVX, sv_2bool,
4252 sv_2cv, sv_2io, sv_2iv, sv_2mortal, sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen,
4253 sv_2pvutf8, sv_2pvutf8_nolen, sv_2pv_flags, sv_2pv_nolen, sv_2uv,
4254 sv_backoff, sv_bless, sv_catpv, sv_catpvf, sv_catpvf_mg, sv_catpvn,
4255 sv_catpvn_flags, sv_catpvn_mg, sv_catpv_mg, sv_catsv, sv_catsv_flags,
4256 sv_catsv_mg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale, sv_collxfrm, sv_dec,
4257 sv_derived_from, sv_eq, sv_force_normal, sv_force_normal_flags, sv_free,
4258 sv_gets, sv_grow, sv_inc, sv_insert, sv_isa, sv_isobject, sv_iv, sv_len,
4259 sv_len_utf8, sv_magic, sv_mortalcopy, sv_newmortal, sv_newref, sv_nv,
4260 sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte, sv_pvbyten, sv_pvbyten_force,
4261 sv_pvn, sv_pvn_force, sv_pvn_force_flags, sv_pvutf8, sv_pvutf8n,
4262 sv_pvutf8n_force, sv_recode_to_utf8, sv_reftype, sv_replace,
4263 sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv,
4264 sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg,
4265 sv_setpvn, sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv,
4266 sv_setref_pv, sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags,
4267 sv_setsv_mg, sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true,
4268 sv_unmagic, sv_unref, sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn,
4269 sv_usepvn_mg, sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode,
4270 sv_utf8_upgrade, sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn,
4271 THIS, toLOWER, toUPPER, to_utf8_case, utf8n_to_uvchr, utf8n_to_uvuni,
4272 utf8_distance, utf8_hop, utf8_length, utf8_to_bytes, utf8_to_uvchr,
4273 utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8, warn, XPUSHi, XPUSHn, XPUSHp,
4274 XPUSHs, XPUSHu, XS, XSRETURN, XSRETURN_EMPTY, XSRETURN_IV, XSRETURN_NO,
4275 XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF, XSRETURN_YES, XST_mIV, XST_mNO,
4276 XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES, XS_VERSION, XS_VERSION_BOOTCHECK,
4277 Zero
4278
4279 =item AUTHORS
4280
4281 =item SEE ALSO
4282
4283 =back
4284
4285 =head2 perlintern - autogenerated documentation of purely B<internal>
4286                  Perl functions
4287
4288 =over 4
4289
4290 =item DESCRIPTION
4291
4292 djSP, is_gv_magical, LVRET, PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn,
4293 PL_last_in_gv, PL_ofs_sv, PL_rs, report_uninit, start_glob, sv_add_arena,
4294 sv_clean_all, sv_clean_objs, sv_free_arenas
4295
4296 =item AUTHORS
4297
4298 =item SEE ALSO
4299
4300 =back
4301
4302 =head2 perliol - C API for Perl's implementation of IO in Layers.
4303
4304 =over 4
4305
4306 =item SYNOPSIS
4307
4308 =item DESCRIPTION
4309
4310 =over 4
4311
4312 =item History and Background
4313
4314 =item Layers vs Disciplines
4315
4316 =item Data Structures
4317
4318 =item Functions and Attributes
4319
4320 =item Per-instance Data
4321
4322 =item Layers in action.
4323
4324 =item Per-instance flag bits
4325
4326 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4327 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4328 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4329 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4330
4331 =item Methods in Detail
4332
4333  IV             (*Pushed)(PerlIO *f,const char *mode, SV *arg);,  IV       
4334     (*Popped)(PerlIO *f);,  PerlIO *        (*Open)(...);, SV *            
4335 (*Getarg)(PerlIO *f);, IV       (*Fileno)(PerlIO *f);,  SSize_t
4336 (*Read)(PerlIO *f, void *vbuf, Size_t count);,  SSize_t (*Unread)(PerlIO
4337 *f, const void *vbuf, Size_t count);,  SSize_t (*Write)(PerlIO *f, const
4338 void *vbuf, Size_t count);,  IV               (*Seek)(PerlIO *f, Off_t
4339 offset, int whence);,  Off_t           (*Tell)(PerlIO *f);,  IV            
4340    (*Close)(PerlIO *f);,  IV               (*Flush)(PerlIO *f);,  IV       
4341        (*Fill)(PerlIO *f);,  IV                (*Eof)(PerlIO *f);,  IV     
4342    (*Error)(PerlIO *f);,  void             (*Clearerr)(PerlIO *f);,  void  
4343        (*Setlinebuf)(PerlIO *f);,  STDCHAR *   (*Get_base)(PerlIO *f);, 
4344 Size_t                (*Get_bufsiz)(PerlIO *f);,  STDCHAR *  
4345 (*Get_ptr)(PerlIO *f);,  SSize_t        (*Get_cnt)(PerlIO *f);,  void      
4346     (*Set_ptrcnt)(PerlIO *f,STDCHAR *ptr,SSize_t cnt);
4347
4348 =item Core Layers
4349
4350 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4351
4352 =item Extension Layers
4353
4354 ":encoding", ":Scalar", ":Object" or ":Perl"
4355
4356 =back
4357
4358 =back
4359
4360 =head2 perlapio - perl's IO abstraction interface.
4361
4362 =over 4
4363
4364 =item SYNOPSIS
4365
4366 =item DESCRIPTION
4367
4368 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4369 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4370 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4371 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4372 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4373 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4374 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4375 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4376 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4377 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4378 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4379
4380 =over 4
4381
4382 =item Co-existence with stdio
4383
4384 B<PerlIO_importFILE(f,flags)>, B<PerlIO_exportFILE(f,flags)>,
4385 B<PerlIO_findFILE(f)>, B<PerlIO_releaseFILE(p,f)>
4386
4387 =item "Fast gets" Functions
4388
4389 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4390 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4391 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4392 B<PerlIO_get_bufsiz(f)>
4393
4394 =item Other Functions
4395
4396 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4397 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4398
4399 =back
4400
4401 =back
4402
4403 =head2 perltodo - Perl TO-DO List
4404
4405 =over 4
4406
4407 =item DESCRIPTION
4408
4409 =item To do during 5.6.x
4410
4411 =over 4
4412
4413 =item Support for I/O disciplines
4414
4415 =item Autoload bytes.pm
4416
4417 =item Make "\u{XXXX}" et al work
4418
4419 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
4420
4421 =item Overloadable regex assertions
4422
4423 =item Unicode
4424
4425 =item use Thread for iThreads
4426
4427 =item make perl_clone optionally clone ops
4428
4429 =item Work out exit/die semantics for threads
4430
4431 =item Typed lexicals for compiler
4432
4433 =item Compiler workarounds for Win32
4434
4435 =item AUTOLOADing in the compiler
4436
4437 =item Fixing comppadlist when compiling
4438
4439 =item Cleaning up exported namespace
4440
4441 =item Complete signal handling
4442
4443 =item Out-of-source builds
4444
4445 =item POSIX realtime support
4446
4447 =item UNIX98 support
4448
4449 =item IPv6 Support
4450
4451 =item Long double conversion
4452
4453 =item Locales
4454
4455 =item Thread-safe regexes
4456
4457 =item Arithmetic on non-Arabic numerals
4458
4459 =item POSIX Unicode character classes
4460
4461 =item Factoring out common suffices/prefices in regexps (trie optimization)
4462
4463 =item Security audit shipped utilities
4464
4465 =item Custom opcodes
4466
4467 =item DLL Versioning
4468
4469 =item Introduce @( and @)
4470
4471 =item Floating point handling
4472
4473 =item IV/UV preservation
4474
4475 =item Replace pod2html with something using Pod::Parser
4476
4477 =item Automate module testing on CPAN
4478
4479 =item sendmsg and recvmsg
4480
4481 =item Rewrite perlre documentation
4482
4483 =item Convert example code to IO::Handle filehandles
4484
4485 =item Document Win32 choices
4486
4487 =item Check new modules
4488
4489 =item Make roffitall find pods and libs itself
4490
4491 =back
4492
4493 =item To do at some point
4494
4495 =over 4
4496
4497 =item Remove regular expression recursion
4498
4499 =item Memory leaks after failed eval
4500
4501 =item pack "(stuff)*"
4502
4503 =item bitfields in pack
4504
4505 =item Cross compilation
4506
4507 =item Perl preprocessor / macros
4508
4509 =item Perl lexer in Perl
4510
4511 =item Using POSIX calls internally
4512
4513 =item -i rename file when changed
4514
4515 =item All ARGV input should act like E<lt>E<gt>
4516
4517 =item Support for rerunning debugger
4518
4519 =item Test Suite for the Debugger
4520
4521 =item my sub foo { }
4522
4523 =item One-pass global destruction
4524
4525 =item Rewrite regexp parser
4526
4527 =item Cache recently used regexps
4528
4529 =item Re-entrant functions
4530
4531 =item Cross-compilation support
4532
4533 =item Bit-shifting bitvectors
4534
4535 =item debugger pragma
4536
4537 =item use less pragma
4538
4539 =item switch structures
4540
4541 =item Cache eval tree
4542
4543 =item rcatmaybe
4544
4545 =item Shrink opcode tables
4546
4547 =item Optimize away @_
4548
4549 =item Prototypes versus indirect objects
4550
4551 =item Install HTML
4552
4553 =item Prototype method calls
4554
4555 =item Return context prototype declarations
4556
4557 =item magic_setisa
4558
4559 =item Garbage collection
4560
4561 =item IO tutorial
4562
4563 =item pack/unpack tutorial
4564
4565 =item Rewrite perldoc
4566
4567 =item Install .3p manpages
4568
4569 =item Unicode tutorial
4570
4571 =item Update POSIX.pm for 1003.1-2
4572
4573 =item Retargetable installation
4574
4575 =item POSIX emulation on non-POSIX systems
4576
4577 =item Rename Win32 headers
4578
4579 =item Finish off lvalue functions
4580
4581 =item Update sprintf documentation
4582
4583 =item Use fchown/fchmod internally
4584
4585 =item Make v-strings overloaded objects
4586
4587 =back
4588
4589 =item Vague ideas
4590
4591 =over 4
4592
4593 =item ref() in list context
4594
4595 =item Make tr/// return histogram of characters in list context
4596
4597 =item Compile to real threaded code
4598
4599 =item Structured types
4600
4601 =item Modifiable $1 et al.
4602
4603 =item Procedural interfaces for IO::*, etc.
4604
4605 =item RPC modules
4606
4607 =item Attach/detach debugger from running program
4608
4609 =item Alternative RE syntax module
4610
4611 =item GUI::Native
4612
4613 =item foreach(reverse ...)
4614
4615 =item Constant function cache
4616
4617 =item Approximate regular expression matching
4618
4619 =back
4620
4621 =item Ongoing
4622
4623 =over 4
4624
4625 =item Update guts documentation
4626
4627 =item Add more tests
4628
4629 =item Update auxiliary tools
4630
4631 =back
4632
4633 =item Recently done things
4634
4635 =over 4
4636
4637 =item Safe signal handling
4638
4639 =item Tie Modules
4640
4641 =item gettimeofday
4642
4643 =item setitimer and getimiter
4644
4645 =item Testing __DIE__ hook
4646
4647 =item CPP equivalent in Perl
4648
4649 =item Explicit switch statements
4650
4651 =item autocroak
4652
4653 =item UTF/EBCDIC
4654
4655 =item UTF Regexes
4656
4657 =item perlcc to produce executable
4658
4659 =item END blocks saved in compiled output
4660
4661 =item Secure temporary file module
4662
4663 =item Integrate Time::HiRes
4664
4665 =item Turn Cwd into XS
4666
4667 =item Mmap for input
4668
4669 =item Byte to/from UTF8 and UTF8 to/from local conversion
4670
4671 =item Add sockatmark support
4672
4673 =item Mailing list archives
4674
4675 =item Bug tracking
4676
4677 =item Integrate MacPerl
4678
4679 =item Web "nerve center" for Perl
4680
4681 =item Regular expression tutorial
4682
4683 =item Debugging Tutorial
4684
4685 =item Integrate new modules
4686
4687 =item Integrate profiler
4688
4689 =item Y2K error detection
4690
4691 =item Regular expression debugger
4692
4693 =item POD checker
4694
4695 =item "Dynamic" lexicals
4696
4697 =item Cache precompiled modules
4698
4699 =back
4700
4701 =item Deprecated Wishes
4702
4703 =over 4
4704
4705 =item Loop control on do{}
4706
4707 =item Lexically scoped typeglobs
4708
4709 =item format BOTTOM
4710
4711 =item report HANDLE
4712
4713 =item Generalised want()/caller())
4714
4715 =item Named prototypes
4716
4717 =item Built-in globbing
4718
4719 =item Regression tests for suidperl
4720
4721 =item Cached hash values
4722
4723 =item Add compression modules
4724
4725 =item Reorganise documentation into tutorials/references
4726
4727 =item Remove distinction between functions and operators
4728
4729 =item Make XS easier to use
4730
4731 =item Make embedding easier to use
4732
4733 =item man for perl
4734
4735 =item my $Package::variable
4736
4737 =item "or" tests defined, not truth
4738
4739 =item "class"-based lexicals
4740
4741 =item byteperl
4742
4743 =item Lazy evaluation / tail recursion removal
4744
4745 =item Make "use utf8" the default
4746
4747 =item Unicode collation and normalization
4748
4749 =item Create debugging macros
4750
4751 =back
4752
4753 =back
4754
4755 =head2 perlhack - How to hack at the Perl internals
4756
4757 =over 4
4758
4759 =item DESCRIPTION
4760
4761 Does concept match the general goals of Perl?, Where is the
4762 implementation?, Backwards compatibility, Could it be a module instead?, Is
4763 the feature generic enough?, Does it potentially introduce new bugs?, Does
4764 it preclude other desirable features?, Is the implementation robust?, Is
4765 the implementation generic enough to be portable?, Is there enough
4766 documentation?, Is there another way to do it?, Does it create too much
4767 work?, Patches speak louder than words
4768
4769 =over 4
4770
4771 =item Keeping in sync
4772
4773 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4774 NFS, rsync'ing the patches
4775
4776 =item Why rsync the source tree
4777
4778 It's easier to rsync the source tree, It's more recent, It's more reliable
4779
4780 =item Why rsync the patches
4781
4782 It's easier to rsync the patches, It's a good reference, Finding a start
4783 point, Finding how to fix a bug, Finding the source of misbehaviour
4784
4785 =item Perlbug remote interface
4786
4787 1 http://bugs.perl.org, 2 bugdb@perl.org, 3
4788 commands_and_bugdids@bugs.perl.org, notes, patches, tests
4789
4790 =item Submitting patches
4791
4792 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4793 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4794
4795 =item Finding Your Way Around
4796
4797 Core modules, Tests, Documentation, Configure, Interpreter
4798
4799 =item Elements of the interpreter
4800
4801 Startup, Parsing, Optimization, Running
4802
4803 =item Internal Variable Types
4804
4805 =item Op Trees
4806
4807 =item Stacks
4808
4809 Argument stack, Mark stack, Save stack
4810
4811 =item Millions of Macros
4812
4813 =item Poking at Perl
4814
4815 =item Using a source-level debugger
4816
4817 run [args], break function_name, break source.c:xxx, step, next, continue,
4818 finish, 'enter', print
4819
4820 =item Dumping Perl Data Structures
4821
4822 =item Patching
4823
4824 =item Patching a core module
4825
4826 =item Adding a new function to the core
4827
4828 =item Writing a test
4829
4830 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
4831 F<t/pod/>, F<t/run/>, t/base t/comp, t/cmd t/run t/io t/op, t/lib ext lib
4832
4833 =back
4834
4835 =item EXTERNAL TOOLS FOR DEBUGGING PERL
4836
4837 =over 4
4838
4839 =item Rational Software's Purify
4840
4841 =item Purify on Unix
4842
4843 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
4844
4845 =item Purify on NT
4846
4847 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
4848
4849 =item Compaq's/Digital's Third Degree
4850
4851 =item PERL_DESTRUCT_LEVEL
4852
4853 =item Profiling
4854
4855 =item Gprof Profiling
4856
4857 -a, -b, -e routine, -f routine, -s, -z
4858
4859 =item GCC gcov Profiling
4860
4861 =item Pixie Profiling
4862
4863 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
4864 -z[ero]
4865
4866 =item CONCLUSION
4867
4868 I<The Road goes ever on and on, down from the door where it began.>
4869
4870 =back
4871
4872 =item AUTHOR
4873
4874 =back
4875
4876 =head2 perlhist - the Perl history records
4877
4878 =over 4
4879
4880 =item DESCRIPTION
4881
4882 =item INTRODUCTION
4883
4884 =item THE KEEPERS OF THE PUMPKIN
4885
4886 =over 4
4887
4888 =item PUMPKIN?
4889
4890 =back
4891
4892 =item THE RECORDS
4893
4894 =over 4
4895
4896 =item SELECTED RELEASE SIZES
4897
4898 =item SELECTED PATCH SIZES
4899
4900 =back
4901
4902 =item THE KEEPERS OF THE RECORDS
4903
4904 =back
4905
4906 =head2 perldelta - what will be new for perl v5.8.0
4907
4908 =over 4
4909
4910 =item DESCRIPTION
4911
4912 =item Reporting Bugs
4913
4914 =item SEE ALSO
4915
4916 =item HISTORY
4917
4918 =back
4919
4920 =head2 perl572delta - what's new for perl v5.7.2
4921
4922 =over 4
4923
4924 =item DESCRIPTION
4925
4926 =item Security Vulnerability Closed
4927
4928 =item Incompatible Changes
4929
4930 =over 4
4931
4932 =item 64-bit platforms and malloc
4933
4934 =item AIX Dynaloading
4935
4936 =item Socket Extension Dynamic in VMS
4937
4938 =item Different Definition of the Unicode Character Classes \p{In...}
4939
4940 =item Deprecations
4941
4942 =back
4943
4944 =item Core Enhancements
4945
4946 =item Modules and Pragmata
4947
4948 =over 4
4949
4950 =item New Modules and Distributions
4951
4952 =item Updated And Improved Modules and Pragmata
4953
4954 =back
4955
4956 =item Utility Changes
4957
4958 =item New Documentation
4959
4960 =item Installation and Configuration Improvements
4961
4962 =over 4
4963
4964 =item New Or Improved Platforms
4965
4966 =item Generic Improvements
4967
4968 =back
4969
4970 =item Selected Bug Fixes
4971
4972 =over 4
4973
4974 =item Platform Specific Changes and Fixes
4975
4976 =back
4977
4978 =item New or Changed Diagnostics
4979
4980 =item Source Code Enhancements
4981
4982 =over 4
4983
4984 =item MAGIC constants
4985
4986 =item Better commented code
4987
4988 =item Regex pre-/post-compilation items matched up
4989
4990 =item gcc -Wall
4991
4992 =back
4993
4994 =item New Tests
4995
4996 =item Known Problems
4997
4998 =over 4
4999
5000 =item AIX
5001
5002 =item Amiga Perl Invoking Mystery
5003
5004 =item lib/ftmp-security tests warn 'system possibly insecure'
5005
5006 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5007
5008 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5009
5010 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5011
5012 =item Linux With Sfio Fails op/misc Test 48
5013
5014 =item OS/390
5015
5016 =item op/sprintf tests 129 and 130
5017
5018 =item  Failure of Thread tests
5019
5020 =item UNICOS
5021
5022 =item UTS
5023
5024 =item VMS
5025
5026 =item Win32
5027
5028 =item Localising a Tied Variable Leaks Memory
5029
5030 =item Self-tying of Arrays and Hashes Is Forbidden
5031
5032 =item Variable Attributes are not Currently Usable for Tieing
5033
5034 =item Building Extensions Can Fail Because Of Largefiles
5035
5036 =item The Compiler Suite Is Still Experimental
5037
5038 =item The Long Double Support is Still Experimental
5039
5040 =back
5041
5042 =item Reporting Bugs
5043
5044 =item SEE ALSO
5045
5046 =item HISTORY
5047
5048 =back
5049
5050 =head2 perl571delta - what's new for perl v5.7.1
5051
5052 =over 4
5053
5054 =item DESCRIPTION
5055
5056 =item Security Vulnerability Closed
5057
5058 =item Incompatible Changes
5059
5060 =item Core Enhancements
5061
5062 =over 4
5063
5064 =item AUTOLOAD Is Now Lvaluable
5065
5066 =item PerlIO is Now The Default
5067
5068 =item Signals Are Now Safe
5069
5070 =back
5071
5072 =item Modules and Pragmata
5073
5074 =over 4
5075
5076 =item New Modules
5077
5078 =item Updated And Improved Modules and Pragmata
5079
5080 =back
5081
5082 =item Performance Enhancements
5083
5084 =item Utility Changes
5085
5086 =item New Documentation
5087
5088 =over 4
5089
5090 =item perlclib
5091
5092 =item perliol
5093
5094 =item README.aix
5095
5096 =item README.bs2000
5097
5098 =item README.macos
5099
5100 =item README.mpeix
5101
5102 =item README.solaris
5103
5104 =item README.vos
5105
5106 =item Porting/repository.pod
5107
5108 =back
5109
5110 =item Installation and Configuration Improvements
5111
5112 =over 4
5113
5114 =item New Or Improved Platforms
5115
5116 =item Generic Improvements
5117
5118 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5119 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5120 d_strtoq, d_u32align, d_ualarm, d_usleep
5121
5122 =back
5123
5124 =item Selected Bug Fixes
5125
5126 =over 4
5127
5128 =item Platform Specific Changes and Fixes
5129
5130 =back
5131
5132 =item New or Changed Diagnostics
5133
5134 =item Changed Internals
5135
5136 =item New Tests
5137
5138 =item Known Problems
5139
5140 =over 4
5141
5142 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5143
5144 =item lib/ftmp-security tests warn 'system possibly insecure'
5145
5146 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5147
5148 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5149
5150 =item lib/b test 19
5151
5152 =item Linux With Sfio Fails op/misc Test 48
5153
5154 =item sigaction test 13 in VMS
5155
5156 =item sprintf tests 129 and 130
5157
5158 =item  Failure of Thread tests
5159
5160 =item Localising a Tied Variable Leaks Memory
5161
5162 =item Self-tying of Arrays and Hashes Is Forbidden
5163
5164 =item Building Extensions Can Fail Because Of Largefiles
5165
5166 =item The Compiler Suite Is Still Experimental
5167
5168 =back
5169
5170 =item Reporting Bugs
5171
5172 =item SEE ALSO
5173
5174 =item HISTORY
5175
5176 =back
5177
5178 =head2 perl570delta - what's new for perl v5.7.0
5179
5180 =over 4
5181
5182 =item DESCRIPTION
5183
5184 =item Security Vulnerability Closed
5185
5186 =item Incompatible Changes
5187
5188 =item Core Enhancements
5189
5190 =item Modules and Pragmata
5191
5192 =over 4
5193
5194 =item New Modules
5195
5196 =item Updated And Improved Modules and Pragmata
5197
5198 =back
5199
5200 =item Utility Changes
5201
5202 =item New Documentation
5203
5204 =item Performance Enhancements
5205
5206 =item Installation and Configuration Improvements
5207
5208 =over 4
5209
5210 =item Generic Improvements
5211
5212 =back
5213
5214 =item Selected Bug Fixes
5215
5216 =over 4
5217
5218 =item Platform Specific Changes and Fixes
5219
5220 =back
5221
5222 =item New or Changed Diagnostics
5223
5224 =item Changed Internals
5225
5226 =item Known Problems
5227
5228 =over 4
5229
5230 =item Unicode Support Still Far From Perfect
5231
5232 =item EBCDIC Still A Lost Platform
5233
5234 =item Building Extensions Can Fail Because Of Largefiles
5235
5236 =item ftmp-security tests warn 'system possibly insecure'
5237
5238 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5239
5240 =item Long Doubles Still Don't Work In Solaris
5241
5242 =item Linux With Sfio Fails op/misc Test 48
5243
5244 =item Storable tests fail in some platforms
5245
5246 =item Threads Are Still Experimental
5247
5248 =item The Compiler Suite Is Still Experimental
5249
5250 =back
5251
5252 =item Reporting Bugs
5253
5254 =item SEE ALSO
5255
5256 =item HISTORY
5257
5258 =back
5259
5260 =head2 perl56delta, perldelta - what's new for perl v5.6.0
5261
5262 =over 4
5263
5264 =item DESCRIPTION
5265
5266 =item Core Enhancements
5267
5268 =over 4
5269
5270 =item Interpreter cloning, threads, and concurrency
5271
5272 =item Lexically scoped warning categories
5273
5274 =item Unicode and UTF-8 support
5275
5276 =item Support for interpolating named characters
5277
5278 =item "our" declarations
5279
5280 =item Support for strings represented as a vector of ordinals
5281
5282 =item Improved Perl version numbering system
5283
5284 =item New syntax for declaring subroutine attributes
5285
5286 =item File and directory handles can be autovivified
5287
5288 =item open() with more than two arguments
5289
5290 =item 64-bit support
5291
5292 =item Large file support
5293
5294 =item Long doubles
5295
5296 =item "more bits"
5297
5298 =item Enhanced support for sort() subroutines
5299
5300 =item C<sort $coderef @foo> allowed
5301
5302 =item File globbing implemented internally
5303
5304 =item Support for CHECK blocks
5305
5306 =item POSIX character class syntax [: :] supported
5307
5308 =item Better pseudo-random number generator
5309
5310 =item Improved C<qw//> operator
5311
5312 =item Better worst-case behavior of hashes
5313
5314 =item pack() format 'Z' supported
5315
5316 =item pack() format modifier '!' supported
5317
5318 =item pack() and unpack() support counted strings
5319
5320 =item Comments in pack() templates
5321
5322 =item Weak references
5323
5324 =item Binary numbers supported
5325
5326 =item Lvalue subroutines
5327
5328 =item Some arrows may be omitted in calls through references
5329
5330 =item Boolean assignment operators are legal lvalues
5331
5332 =item exists() is supported on subroutine names
5333
5334 =item exists() and delete() are supported on array elements
5335
5336 =item Pseudo-hashes work better
5337
5338 =item Automatic flushing of output buffers
5339
5340 =item Better diagnostics on meaningless filehandle operations
5341
5342 =item Where possible, buffered data discarded from duped input filehandle
5343
5344 =item eof() has the same old magic as <>
5345
5346 =item binmode() can be used to set :crlf and :raw modes
5347
5348 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
5349
5350 =item system(), backticks and pipe open now reflect exec() failure
5351
5352 =item Improved diagnostics
5353
5354 =item Diagnostics follow STDERR
5355
5356 =item More consistent close-on-exec behavior
5357
5358 =item syswrite() ease-of-use
5359
5360 =item Better syntax checks on parenthesized unary operators
5361
5362 =item Bit operators support full native integer width
5363
5364 =item Improved security features
5365
5366 =item More functional bareword prototype (*)
5367
5368 =item C<require> and C<do> may be overridden
5369
5370 =item $^X variables may now have names longer than one character
5371
5372 =item New variable $^C reflects C<-c> switch
5373
5374 =item New variable $^V contains Perl version as a string
5375
5376 =item Optional Y2K warnings
5377
5378 =item Arrays now always interpolate into double-quoted strings
5379
5380 =back
5381
5382 =item Modules and Pragmata
5383
5384 =over 4
5385
5386 =item Modules
5387
5388 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
5389 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
5390 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
5391 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
5392 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
5393 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
5394 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
5395 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
5396
5397 =item Pragmata
5398
5399 =back
5400
5401 =item Utility Changes
5402
5403 =over 4
5404
5405 =item dprofpp
5406
5407 =item find2perl
5408
5409 =item h2xs
5410
5411 =item perlcc
5412
5413 =item perldoc
5414
5415 =item The Perl Debugger
5416
5417 =back
5418
5419 =item Improved Documentation
5420
5421 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
5422 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
5423 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
5424 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
5425
5426 =item Performance enhancements
5427
5428 =over 4
5429
5430 =item Simple sort() using { $a <=> $b } and the like are optimized
5431
5432 =item Optimized assignments to lexical variables
5433
5434 =item Faster subroutine calls
5435
5436 =item delete(), each(), values() and hash iteration are faster
5437
5438 =back
5439
5440 =item Installation and Configuration Improvements
5441
5442 =over 4
5443
5444 =item -Dusethreads means something different
5445
5446 =item New Configure flags
5447
5448 =item Threadedness and 64-bitness now more daring
5449
5450 =item Long Doubles
5451
5452 =item -Dusemorebits
5453
5454 =item -Duselargefiles
5455
5456 =item installusrbinperl
5457
5458 =item SOCKS support
5459
5460 =item C<-A> flag
5461
5462 =item Enhanced Installation Directories
5463
5464 =back
5465
5466 =item Platform specific changes
5467
5468 =over 4
5469
5470 =item Supported platforms
5471
5472 =item DOS
5473
5474 =item OS390 (OpenEdition MVS)
5475
5476 =item VMS
5477
5478 =item Win32
5479
5480 =back
5481
5482 =item Significant bug fixes
5483
5484 =over 4
5485
5486 =item <HANDLE> on empty files
5487
5488 =item C<eval '...'> improvements
5489
5490 =item All compilation errors are true errors
5491
5492 =item Implicitly closed filehandles are safer
5493
5494 =item Behavior of list slices is more consistent
5495
5496 =item C<(\$)> prototype and C<$foo{a}>
5497
5498 =item C<goto &sub> and AUTOLOAD
5499
5500 =item C<-bareword> allowed under C<use integer>
5501
5502 =item Failures in DESTROY()
5503
5504 =item Locale bugs fixed
5505
5506 =item Memory leaks
5507
5508 =item Spurious subroutine stubs after failed subroutine calls
5509
5510 =item Taint failures under C<-U>
5511
5512 =item END blocks and the C<-c> switch
5513
5514 =item Potential to leak DATA filehandles
5515
5516 =back
5517
5518 =item New or Changed Diagnostics
5519
5520 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
5521 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
5522 / cannot take a count, / must be followed by a, A or Z, / must be followed
5523 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
5524 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
5525 passed through, /%s/ should probably be written as "%s", %s() called too
5526 early to check prototype, %s argument is not a HASH or ARRAY element, %s
5527 argument is not a HASH or ARRAY element or slice, %s argument is not a
5528 subroutine name, %s package attribute may clash with future reserved word:
5529 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
5530 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
5531 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
5532 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
5533 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
5534 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
5535 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
5536 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
5537 weaken a nonreference, Character class [:%s:] unknown, Character class
5538 syntax [%s] belongs inside character classes, Constant is not %s reference,
5539 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
5540 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
5541 "local" instead of "our"?), Document contains no data, entering effective
5542 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
5543 output, flock() on closed filehandle %s, Global symbol "%s" requires
5544 explicit package name, Hexadecimal number > 0xffffffff non-portable,
5545 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
5546 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
5547 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
5548 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
5549 separator character %s in attribute list, Invalid separator character %s in
5550 subroutine attribute list, leaving effective %s failed, Lvalue subs
5551 returning %s not implemented yet, Method %s not permitted, Missing
5552 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
5553 No %s specified for -%c, No package name allowed for variable %s in "our",
5554 No space allowed after -%c, no UTC offset information; assuming local time
5555 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
5556 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
5557 around "%s" list, Possible unintended interpolation of %s in string,
5558 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
5559 instead, Premature end of script headers, Repeat count in pack overflows,
5560 Repeat count in unpack overflows, realloc() of freed memory ignored,
5561 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
5562 zero-length expression, switching effective %s is not implemented, This
5563 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
5564 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
5565 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
5566 escape \\%c passed through, Unterminated attribute parameter in attribute
5567 list, Unterminated attribute list, Unterminated attribute parameter in
5568 subroutine attribute list, Unterminated subroutine attribute list, Value of
5569 CLI symbol "%s" too long, Version number must be a constant number
5570
5571 =item New tests
5572
5573 =item Incompatible Changes
5574
5575 =over 4
5576
5577 =item Perl Source Incompatibilities
5578
5579 CHECK is a new keyword, Treatment of list slices of undef has changed,
5580 Format of $English::PERL_VERSION is different, Literals of the form
5581 C<1.2.3> parse differently, Possibly changed pseudo-random number
5582 generator, Hashing function for hash keys has changed, C<undef> fails on
5583 read only values, Close-on-exec bit may be set on pipe and socket handles,
5584 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
5585 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
5586 Text of some diagnostic output has changed, C<%@> has been removed,
5587 Parenthesized not() behaves like a list operator, Semantics of bareword
5588 prototype C<(*)> have changed, Semantics of bit operators may have changed
5589 on 64-bit platforms, More builtins taint their results
5590
5591 =item C Source Incompatibilities
5592
5593 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
5594
5595 =item Compatible C Source API Changes
5596
5597 C<PATCHLEVEL> is now C<PERL_VERSION>
5598
5599 =item Binary Incompatibilities
5600
5601 =back
5602
5603 =item Known Problems
5604
5605 =over 4
5606
5607 =item Thread test failures
5608
5609 =item EBCDIC platforms not supported
5610
5611 =item In 64-bit HP-UX the lib/io_multihomed test may hang
5612
5613 =item NEXTSTEP 3.3 POSIX test failure
5614
5615 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
5616 gcc
5617
5618 =item UNICOS/mk CC failures during Configure run
5619
5620 =item Arrow operator and arrays
5621
5622 =item Experimental features
5623
5624 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
5625 pseudo-hash data type, The Compiler suite, Internal implementation of file
5626 globbing, The DB module, The regular expression code constructs:
5627
5628 =back
5629
5630 =item Obsolete Diagnostics
5631
5632 Character class syntax [: :] is reserved for future extensions, Ill-formed
5633 logical name |%s| in prime_env_iter, In string, @%s now must be written as
5634 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
5635 to mean "${$}<digit>" is deprecated
5636
5637 =item Reporting Bugs
5638
5639 =item SEE ALSO
5640
5641 =item HISTORY
5642
5643 =back
5644
5645 =head2 perl5005delta, perldelta - what's new for perl5.005
5646
5647 =over 4
5648
5649 =item DESCRIPTION
5650
5651 =item About the new versioning system
5652
5653 =item Incompatible Changes
5654
5655 =over 4
5656
5657 =item WARNING:  This version is not binary compatible with Perl 5.004.
5658
5659 =item Default installation structure has changed
5660
5661 =item Perl Source Compatibility
5662
5663 =item C Source Compatibility
5664
5665 =item Binary Compatibility
5666
5667 =item Security fixes may affect compatibility
5668
5669 =item Relaxed new mandatory warnings introduced in 5.004
5670
5671 =item Licensing
5672
5673 =back
5674
5675 =item Core Changes
5676
5677 =over 4
5678
5679 =item Threads
5680
5681 =item Compiler
5682
5683 =item Regular Expressions
5684
5685 Many new and improved optimizations, Many bug fixes, New regular expression
5686 constructs, New operator for precompiled regular expressions, Other
5687 improvements, Incompatible changes
5688
5689 =item   Improved malloc()
5690
5691 =item Quicksort is internally implemented
5692
5693 =item Reliable signals
5694
5695 =item Reliable stack pointers
5696
5697 =item More generous treatment of carriage returns
5698
5699 =item Memory leaks
5700
5701 =item Better support for multiple interpreters
5702
5703 =item Behavior of local() on array and hash elements is now well-defined
5704
5705 =item C<%!> is transparently tied to the L<Errno> module
5706
5707 =item Pseudo-hashes are supported
5708
5709 =item C<EXPR foreach EXPR> is supported
5710
5711 =item Keywords can be globally overridden
5712
5713 =item C<$^E> is meaningful on Win32
5714
5715 =item C<foreach (1..1000000)> optimized
5716
5717 =item C<Foo::> can be used as implicitly quoted package name
5718
5719 =item C<exists $Foo::{Bar::}> tests existence of a package
5720
5721 =item Better locale support
5722
5723 =item Experimental support for 64-bit platforms
5724
5725 =item prototype() returns useful results on builtins
5726
5727 =item Extended support for exception handling
5728
5729 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
5730
5731 =item All C<printf> format conversions are handled internally
5732
5733 =item New C<INIT> keyword
5734
5735 =item New C<lock> keyword
5736
5737 =item New C<qr//> operator
5738
5739 =item C<our> is now a reserved word
5740
5741 =item Tied arrays are now fully supported
5742
5743 =item Tied handles support is better
5744
5745 =item 4th argument to substr
5746
5747 =item Negative LENGTH argument to splice
5748
5749 =item Magic lvalues are now more magical
5750
5751 =item <> now reads in records
5752
5753 =back
5754
5755 =item Supported Platforms
5756
5757 =over 4
5758
5759 =item New Platforms
5760
5761 =item Changes in existing support
5762
5763 =back
5764
5765 =item Modules and Pragmata
5766
5767 =over 4
5768
5769 =item New Modules
5770
5771 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
5772 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
5773 Thread, attrs, fields, re
5774
5775 =item Changes in existing modules
5776
5777 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
5778 MakeMaker, CPAN, Cwd
5779
5780 =back
5781
5782 =item Utility Changes
5783
5784 =item Documentation Changes
5785
5786 =item New Diagnostics
5787
5788 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
5789 while coercing array into hash, Bareword "%s" refers to nonexistent
5790 package, Can't call method "%s" on an undefined value, Can't check
5791 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
5792 goto subroutine from an eval-string, Can't localize pseudo-hash element,
5793 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
5794 for "%s", Character class syntax [. .] is reserved for future extensions,
5795 Character class syntax [: :] is reserved for future extensions, Character
5796 class syntax [= =] is reserved for future extensions, %s: Eval-group in
5797 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
5798 Eval-group not allowed at run time, Explicit blessing to '' (assuming
5799 package main), Illegal hex digit ignored, No such array field, No such
5800 field "%s" in variable %s of type %s, Out of memory during ridiculously
5801 large request, Range iterator outside integer range, Recursive inheritance
5802 detected while looking for method '%s' %s, Reference found where even-sized
5803 list expected, Undefined value assigned to typeglob, Use of reserved word
5804 "%s" is deprecated, perl: warning: Setting locale failed
5805
5806 =item Obsolete Diagnostics
5807
5808 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
5809 temporary file, regexp too big
5810
5811 =item Configuration Changes
5812
5813 =item BUGS
5814
5815 =item SEE ALSO
5816
5817 =item HISTORY
5818
5819 =back
5820
5821 =head2 perl5004delta, perldelta - what's new for perl5.004
5822
5823 =over 4
5824
5825 =item DESCRIPTION
5826
5827 =item Supported Environments
5828
5829 =item Core Changes
5830
5831 =over 4
5832
5833 =item List assignment to %ENV works
5834
5835 =item Change to "Can't locate Foo.pm in @INC" error
5836
5837 =item Compilation option: Binary compatibility with 5.003
5838
5839 =item $PERL5OPT environment variable
5840
5841 =item Limitations on B<-M>, B<-m>, and B<-T> options
5842
5843 =item More precise warnings
5844
5845 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
5846
5847 =item Previously deprecated %OVERLOAD is no longer usable
5848
5849 =item Subroutine arguments created only when they're modified
5850
5851 =item Group vector changeable with C<$)>
5852
5853 =item Fixed parsing of $$<digit>, &$<digit>, etc.
5854
5855 =item Fixed localization of $<digit>, $&, etc.
5856
5857 =item No resetting of $. on implicit close
5858
5859 =item C<wantarray> may return undef
5860
5861 =item C<eval EXPR> determines value of EXPR in scalar context
5862
5863 =item Changes to tainting checks
5864
5865 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
5866 spawning if tainted $TERM doesn't look like a terminal name
5867
5868 =item New Opcode module and revised Safe module
5869
5870 =item Embedding improvements
5871
5872 =item Internal change: FileHandle class based on IO::* classes
5873
5874 =item Internal change: PerlIO abstraction interface
5875
5876 =item New and changed syntax
5877
5878 $coderef->(PARAMS)
5879
5880 =item New and changed builtin constants
5881
5882 __PACKAGE__
5883
5884 =item New and changed builtin variables
5885
5886 $^E, $^H, $^M
5887
5888 =item New and changed builtin functions
5889
5890 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
5891 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
5892 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
5893 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
5894 nested C<sub{}> closures work now, formats work right on changing lexicals
5895
5896 =item New builtin methods
5897
5898 isa(CLASS), can(METHOD), VERSION( [NEED] )
5899
5900 =item TIEHANDLE now supported
5901
5902 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
5903 LIST, READLINE this, GETC this, DESTROY this
5904
5905 =item Malloc enhancements
5906
5907 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
5908
5909 =item Miscellaneous efficiency enhancements
5910
5911 =back
5912
5913 =item Support for More Operating Systems
5914
5915 =over 4
5916
5917 =item Win32
5918
5919 =item Plan 9
5920
5921 =item QNX
5922
5923 =item AmigaOS
5924
5925 =back
5926
5927 =item Pragmata
5928
5929 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
5930 constant NAME => VALUE, use locale, use ops, use vmsish
5931
5932 =item Modules
5933
5934 =over 4
5935
5936 =item Required Updates
5937
5938 =item Installation directories
5939
5940 =item Module information summary
5941
5942 =item Fcntl
5943
5944 =item IO
5945
5946 =item Math::Complex
5947
5948 =item Math::Trig
5949
5950 =item DB_File
5951
5952 =item Net::Ping
5953
5954 =item Object-oriented overrides for builtin operators
5955
5956 =back
5957
5958 =item Utility Changes
5959
5960 =over 4
5961
5962 =item pod2html
5963
5964 Sends converted HTML to standard output
5965
5966 =item xsubpp
5967
5968 C<void> XSUBs now default to returning nothing
5969
5970 =back
5971
5972 =item C Language API Changes
5973
5974 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
5975 manipulating hashes
5976
5977 =item Documentation Changes
5978
5979 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
5980 L<perlmodlib>, L<perldebug>, L<perlsec>
5981
5982 =item New Diagnostics
5983
5984 "my" variable %s masks earlier declaration in same scope, %s argument is
5985 not a HASH element or slice, Allocation too large: %lx, Allocation too
5986 large, Applying %s to %s will act on scalar(%s), Attempt to free
5987 nonexistent shared string, Attempt to use reference as lvalue in substr,
5988 Bareword "%s" refers to nonexistent package, Can't redefine active sort
5989 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
5990 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
5991 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
5992 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
5993 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
5994 %s, Integer overflow in hex number, Integer overflow in octal number,
5995 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
5996 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
5997 possible typo, Null picture in formline, Offset outside string, Out of
5998 memory!, Out of memory during request for %s, panic: frexp, Possible
5999 attempt to put comments in qw() list, Possible attempt to separate words
6000 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
6001 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
6002 option, untie attempted while %d inner references still exist, Unrecognized
6003 character %s, Unsupported function fork, Use of "$$<digit>" to mean
6004 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
6005 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
6006 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
6007 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
6008 long, Process terminated by SIG%s
6009
6010 =item BUGS
6011
6012 =item SEE ALSO
6013
6014 =item HISTORY
6015
6016 =back
6017
6018 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
6019
6020 =over 4
6021
6022 =item DESCRIPTION
6023
6024 =over 4
6025
6026 =item Compiling Perl 5 on AIX
6027
6028 =item OS level
6029
6030 =item Building Dynamic Extensions on AIX
6031
6032 =item The IBM ANSI C Compiler
6033
6034 =item Using GNU's gcc for building perl
6035
6036 =item Using Large Files with Perl
6037
6038 =item Threaded Perl
6039
6040 =item 64-bit Perl
6041
6042 =item AIX 4.2 and extensions using C++ with statics
6043
6044 =back
6045
6046 =item AUTHOR
6047
6048 =item DATE
6049
6050 =back
6051
6052 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
6053
6054 =over 4
6055
6056 =item DESCRIPTION
6057
6058 =item AUTHOR
6059
6060 =back
6061
6062 =head2 perlamiga - Perl under Amiga OS
6063
6064 =over 4
6065
6066 =item SYNOPSIS
6067
6068 =back
6069
6070 =over 4
6071
6072 =item DESCRIPTION
6073
6074 =over 4
6075
6076 =item Prerequisites for Compiling Perl on AmigaOS
6077
6078 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
6079
6080 =item Starting Perl programs under AmigaOS
6081
6082 =item Shortcomings of Perl under AmigaOS
6083
6084 =back
6085
6086 =item INSTALLATION
6087
6088 =item Accessing documentation
6089
6090 =over 4
6091
6092 =item Manpages for Perl on AmigaOS
6093
6094 =item Perl HTML Documentation on AmigaOS
6095
6096 =item Perl GNU Info Files on AmigaOS
6097
6098 =item Perl LaTeX Documentation on AmigaOS
6099
6100 =back
6101
6102 =item BUILDING PERL ON AMIGAOS
6103
6104 =over 4
6105
6106 =item Build Prerequisites for Perl on AmigaOS
6107
6108 =item Getting the Perl Source for AmigaOS
6109
6110 =item Making Perl on AmigaOS
6111
6112 =item Testing Perl on AmigaOS
6113
6114 =item Installing the built Perl on AmigaOS
6115
6116 =back
6117
6118 =item AUTHORS
6119
6120 =item SEE ALSO
6121
6122 =back
6123
6124 =head2 perlbeos, README.beos - Perl version 5 on BeOS
6125
6126 =over 4
6127
6128 =item DESCRIPTION
6129
6130 =over 4
6131
6132 =item General Issues with Perl on BeOS
6133
6134 =item BeOS Release-specific Notes
6135
6136 R4 x86, R4 PPC
6137
6138 =item Contact Information
6139
6140 =back
6141
6142 =back
6143
6144 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
6145
6146 =over 4
6147
6148 =item SYNOPSIS
6149
6150 =item DESCRIPTION
6151
6152 =over 4
6153
6154 =item gzip on BS2000
6155
6156 =item bison on BS2000
6157
6158 =item Unpacking Perl Distribution on BS2000
6159
6160 =item Compiling Perl on BS2000
6161
6162 =item Testing Perl on BS2000
6163
6164 =item Installing Perl on BS2000
6165
6166 =item Using Perl in the Posix-Shell of BS2000
6167
6168 =item Using Perl in "native" BS2000
6169
6170 =item Floating point anomalies on BS2000
6171
6172 =back
6173
6174 =item AUTHORS
6175
6176 =item SEE ALSO
6177
6178 =over 4
6179
6180 =item Mailing list
6181
6182 =back
6183
6184 =item HISTORY
6185
6186 =back
6187
6188 =over 4
6189
6190 =item Name
6191
6192 =item Description
6193
6194 =item Build
6195
6196 =over 4
6197
6198 =item Tools & SDK
6199
6200 =item Make
6201
6202 =back
6203
6204 =item Acknowledgements
6205
6206 =item Author
6207
6208 =back
6209
6210 =head2 perlcygwin, README.cygwin - Perl for Cygwin
6211
6212 =over 4
6213
6214 =item SYNOPSIS
6215
6216 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
6217
6218 =over 4
6219
6220 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
6221
6222 =item Cygwin Configuration
6223
6224 C<PATH>, I<nroff>, Permissions
6225
6226 =back
6227
6228 =item CONFIGURE PERL ON CYGWIN
6229
6230 =over 4
6231
6232 =item Stripping Perl Binaries on Cygwin
6233
6234 =item Optional Libraries for Perl on Cygwin
6235
6236 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
6237 C<-lcygipc> (C<use IPC::SysV>)
6238
6239 =item Configure-time Options for Perl on Cygwin
6240
6241 C<-Uusedl>, C<-Uusemymalloc>, C<-Dusemultiplicity>, C<-Duseperlio>,
6242 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>
6243
6244 =item Suspicious Warnings on Cygwin
6245
6246 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
6247
6248 =back
6249
6250 =item MAKE ON CYGWIN
6251
6252 =over 4
6253
6254 =item Warnings on Cygwin
6255
6256 =item ld2 on Cygwin
6257
6258 =back
6259
6260 =item TEST ON CYGWIN
6261
6262 =over 4
6263
6264 =item File Permissions on Cygwin
6265
6266 =item Hard Links on Cygwin
6267
6268 =item Filetime Granularity on Cygwin
6269
6270 =item Tainting Checks on Cygwin
6271
6272 =item /etc/group on Cygwin
6273
6274 =item Script Portability on Cygwin
6275
6276 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
6277
6278 =back
6279
6280 =item INSTALL PERL ON CYGWIN
6281
6282 =item MANIFEST ON CYGWIN
6283
6284 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
6285 Source, Compiled Module Source, Perl Modules/Scripts
6286
6287 =item BUGS ON CYGWIN
6288
6289 =item AUTHORS
6290
6291 =item HISTORY
6292
6293 =back
6294
6295 =head2 perldgux - Perl under DG/UX.
6296
6297 =over 4
6298
6299 =item SYNOPSIS
6300
6301 =back
6302
6303 =over 4
6304
6305 =item DESCRIPTION
6306
6307 =item BUILDING PERL ON DG/UX
6308
6309 =over 4
6310
6311 =item Non-threaded Perl on DG/UX
6312
6313 =item Threaded Perl on DG/UX
6314
6315 =item Testing Perl on DG/UX
6316
6317 =item Installing the built perl on DG/UX
6318
6319 =back
6320
6321 =item AUTHOR
6322
6323 =item SEE ALSO
6324
6325 =back
6326
6327 =head2 perldos - Perl under DOS, W31, W95.
6328
6329 =over 4
6330
6331 =item SYNOPSIS
6332
6333 =item DESCRIPTION
6334
6335 =over 4
6336
6337 =item Prerequisites for Compiling Perl on DOS
6338
6339 DJGPP, Pthreads
6340
6341 =item Shortcomings of Perl under DOS
6342
6343 =item Building Perl on DOS
6344
6345 =item Testing Perl on DOS
6346
6347 =item Installation of Perl on DOS
6348
6349 =back
6350
6351 =item BUILDING AND INSTALLING MODULES ON DOS
6352
6353 =over 4
6354
6355 =item Building Prerequisites for Perl on DOS
6356
6357 =item Unpacking CPAN Modules on DOS
6358
6359 =item Building Non-XS Modules on DOS
6360
6361 =item Building XS Modules on DOS
6362
6363 =back
6364
6365 =item AUTHOR
6366
6367 =item SEE ALSO
6368
6369 =back
6370
6371 =head2 perlepoc, README.epoc - Perl for EPOC
6372
6373 =over 4
6374
6375 =item SYNOPSIS
6376
6377 =item INTRODUCTION
6378
6379 =item INSTALLING PERL ON EPOC
6380
6381 =item STARTING PERL ON EPOC
6382
6383 =item STOPPING PERL ON EPOC
6384
6385 =item USING PERL ON EPOC
6386
6387 =over 4
6388
6389 =item I/O Redirection on Epoc
6390
6391 =item PATH Names on Epoc
6392
6393 =item Editors on Epoc
6394
6395 =item Features of Perl on Epoc
6396
6397 =item Restrictions of Perl on Epoc
6398
6399 =item Compiling Perl 5 on the EPOC cross compiling environment
6400
6401 =back
6402
6403 =item SUPPORT STATUS OF PERL ON EPOC
6404
6405 =item AUTHOR
6406
6407 =item LAST UPDATE
6408
6409 =back
6410
6411 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
6412 (HP-UX) systems
6413
6414 =over 4
6415
6416 =item DESCRIPTION
6417
6418 =over 4
6419
6420 =item Using perl as shipped with HP-UX
6421
6422 =item Compiling Perl 5 on HP-UX
6423
6424 =item PA-RISC
6425
6426 =item PA-RISC 1.0
6427
6428 =item PA-RISC 1.1
6429
6430 =item PA-RISC 2.0
6431
6432 =item Itanium
6433
6434 =item Portability Between PA-RISC Versions
6435
6436 =item Itanium Processor Family and HP-UX
6437
6438 =item Building Dynamic Extensions on HP-UX
6439
6440 =item The HP ANSI C Compiler
6441
6442 =item Using Large Files with Perl on HP-UX
6443
6444 =item Threaded Perl on HP-UX
6445
6446 =item 64-bit Perl on HP-UX
6447
6448 =item GDBM and Threads on HP-UX
6449
6450 =item NFS filesystems and utime(2) on HP-UX
6451
6452 =item perl -P and // and HP-UX
6453
6454 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
6455
6456 =back
6457
6458 =item nss_delete core dump from op/pwent or op/grent
6459
6460 =item AUTHOR
6461
6462 =item DATE
6463
6464 =back
6465
6466 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
6467
6468 =over 4
6469
6470 =item DESCRIPTION
6471
6472 =over 4
6473
6474 =item Known Problems with Perl on Hurd 
6475
6476 =back
6477
6478 =item AUTHOR
6479
6480 =back
6481
6482 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
6483 systems
6484
6485 =over 4
6486
6487 =item DESCRIPTION
6488
6489 =over 4
6490
6491 =item Compiling Perl 5 on MachTen
6492
6493 =item Failures during C<make test> on MachTen
6494
6495 op/lexassign.t, pragma/warnings.t
6496
6497 =item Building external modules on MachTen
6498
6499 =back
6500
6501 =item AUTHOR
6502
6503 =item DATE
6504
6505 =back
6506
6507 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
6508
6509 =over 4
6510
6511 =item SYNOPSIS
6512
6513 =item DESCRIPTION
6514
6515 =item AUTHOR
6516
6517 =item DATE
6518
6519 =back
6520
6521 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
6522
6523 =over 4
6524
6525 =item DESCRIPTION
6526
6527 =item Known problems with Perl on MiNT
6528
6529 =item AUTHOR
6530
6531 =back
6532
6533 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
6534
6535 =over 4
6536
6537 =item SYNOPSIS
6538
6539 =item NOTE
6540
6541 =item What's New in Perl for MPE/iX
6542
6543 =item Welcome to Perl/iX
6544
6545 =item System Requirements for Perl/iX
6546
6547 =item How to Obtain Perl/iX
6548
6549 =item Perl/iX Distribution Contents Highlights
6550
6551 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
6552 public_html/feedback.cgi, src/perl-5.6.0-mpe
6553
6554 =item How to Compile Perl/iX
6555
6556  4,  6
6557
6558 =item Getting Started with Perl/iX
6559
6560 =item MPE/iX Implementation Considerations
6561
6562 =item Known Perl/iX Bugs Under Investigation
6563
6564 =item Perl/iX To-Do List
6565
6566 =item Perl/iX Change History
6567
6568 =item AUTHOR
6569
6570 =item Name
6571
6572 =item Description
6573
6574 =item Build
6575
6576 =over 4
6577
6578 =item Tools & SDK
6579
6580 =item Setup
6581
6582 Buildtype.bat, SetNWBld.bat, MPKBuild.bat
6583
6584 =item Make
6585
6586 =item Interpreter
6587
6588 =item Extensions
6589
6590 =back
6591
6592 =item Install
6593
6594 =item Build new extensions
6595
6596 =item Known Issues
6597
6598 =item Acknowledgements
6599
6600 =item Authors
6601
6602 =item Date
6603
6604 =back
6605
6606 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
6607
6608 =over 4
6609
6610 =item SYNOPSIS
6611
6612 =back
6613
6614 =over 4
6615
6616 =item DESCRIPTION
6617
6618 =over 4
6619
6620 =item Target
6621
6622 =item Other OSes
6623
6624 =item Prerequisites
6625
6626 EMX, RSX, HPFS, pdksh
6627
6628 =item Starting Perl programs under OS/2 (and DOS and...)
6629
6630 =item Starting OS/2 (and DOS) programs under Perl
6631
6632 =back
6633
6634 =item Frequently asked questions
6635
6636 =over 4
6637
6638 =item "It does not work"
6639
6640 =item I cannot run external programs
6641
6642 =item I cannot embed perl into my program, or use F<perl.dll> from my
6643 program. 
6644
6645 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
6646 L<ExtUtils::Embed>?
6647
6648 =item C<``> and pipe-C<open> do not work under DOS.
6649
6650 =item Cannot start C<find.exe "pattern" file>
6651
6652 =back
6653
6654 =item INSTALLATION
6655
6656 =over 4
6657
6658 =item Automatic binary installation
6659
6660 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
6661
6662 =item Manual binary installation
6663
6664 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
6665 (statically linked), Executables for Perl utilities, Main Perl library,
6666 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
6667 and utilities, Manpages for Perl modules, Source for Perl documentation,
6668 Perl manual in F<.INF> format, Pdksh
6669
6670 =item B<Warning>
6671
6672 =back
6673
6674 =item Accessing documentation
6675
6676 =over 4
6677
6678 =item OS/2 F<.INF> file
6679
6680 =item Plain text
6681
6682 =item Manpages
6683
6684 =item HTML
6685
6686 =item GNU C<info> files
6687
6688 =item F<.PDF> files
6689
6690 =item C<LaTeX> docs
6691
6692 =back
6693
6694 =item BUILD
6695
6696 =over 4
6697
6698 =item The short story
6699
6700 =item Prerequisites
6701
6702 =item Getting perl source
6703
6704 =item Application of the patches
6705
6706 =item Hand-editing
6707
6708 =item Making
6709
6710 =item Testing
6711
6712 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
6713 F<op/stat.t>
6714
6715 =item Installing the built perl
6716
6717 =item C<a.out>-style build
6718
6719 =back
6720
6721 =item Build FAQ
6722
6723 =over 4
6724
6725 =item Some C</> became C<\> in pdksh.
6726
6727 =item C<'errno'> - unresolved external
6728
6729 =item Problems with tr or sed
6730
6731 =item Some problem (forget which ;-)
6732
6733 =item Library ... not found
6734
6735 =item Segfault in make
6736
6737 =item op/sprintf test failure
6738
6739 =back
6740
6741 =item Specific (mis)features of OS/2 port
6742
6743 =over 4
6744
6745 =item C<setpriority>, C<getpriority>
6746
6747 =item C<system()>
6748
6749 =item C<extproc> on the first line
6750
6751 =item Additional modules:
6752
6753 =item Prebuilt methods:
6754
6755 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
6756  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
6757 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
6758 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
6759 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
6760 C<Cwd::extLibpath_set( path [, type ] )>,
6761 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
6762 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
6763 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
6764 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
6765 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
6766
6767 =item Prebuilt variables:
6768
6769 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
6770
6771 =item Misfeatures
6772
6773 =item Modifications
6774
6775 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
6776 C<flock>
6777
6778 =item Identifying DLLs
6779
6780 =item Centralized management of resources
6781
6782 C<HAB>, C<HMQ>
6783
6784 =back
6785
6786 =item Perl flavors
6787
6788 =over 4
6789
6790 =item F<perl.exe>
6791
6792 =item F<perl_.exe>
6793
6794 =item F<perl__.exe>
6795
6796 =item F<perl___.exe>
6797
6798 =item Why strange names?
6799
6800 =item Why dynamic linking?
6801
6802 =item Why chimera build?
6803
6804 =back
6805
6806 =item ENVIRONMENT
6807
6808 =over 4
6809
6810 =item C<PERLLIB_PREFIX>
6811
6812 =item C<PERL_BADLANG>
6813
6814 =item C<PERL_BADFREE>
6815
6816 =item C<PERL_SH_DIR>
6817
6818 =item C<USE_PERL_FLOCK>
6819
6820 =item C<TMP> or C<TEMP>
6821
6822 =back
6823
6824 =item Evolution
6825
6826 =over 4
6827
6828 =item Priorities
6829
6830 =item DLL name mangling: pre 5.6.2
6831
6832 =item DLL name mangling: 5.6.2 and beyond
6833
6834 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
6835 C<LIBPATH>
6836
6837 =item DLL forwarder generation
6838
6839 =item Threading
6840
6841 =item Calls to external programs
6842
6843 =item Memory allocation
6844
6845 =item Threads
6846
6847 C<COND_WAIT>, F<os2.c>
6848
6849 =back
6850
6851 =item BUGS
6852
6853 =back
6854
6855 =over 4
6856
6857 =item AUTHOR
6858
6859 =item SEE ALSO
6860
6861 =back
6862
6863 =head2 perlos390, README.os390 - building and installing Perl for OS/390.
6864
6865 =over 4
6866
6867 =item SYNOPSIS
6868
6869 =item DESCRIPTION
6870
6871 =over 4
6872
6873 =item Unpacking Perl distribution on OS/390
6874
6875 =item Setup and utilities for Perl on OS/390
6876
6877 =item Configure Perl on OS/390
6878
6879 =item Build, Test, Install Perl on OS/390
6880
6881 =item Build Anomalies with Perl on OS/390
6882
6883 =item Testing Anomalies with Perl on OS/390
6884
6885 =item Installation Anomalies with Perl on OS/390
6886
6887 =item Usage Hints for Perl on OS/390
6888
6889 =item Floating Point Anomalies with Perl on OS/390
6890
6891 =item Modules and Extensions for Perl on OS/390
6892
6893 =back
6894
6895 =item AUTHORS
6896
6897 =item SEE ALSO
6898
6899 =over 4
6900
6901 =item Mailing list for Perl on OS/390
6902
6903 =back
6904
6905 =item HISTORY
6906
6907 =back
6908
6909 =head2 perlqnx, README.qnx - Perl version 5 on QNX
6910
6911 =over 4
6912
6913 =item DESCRIPTION
6914
6915 =over 4
6916
6917 =item Required Software for Compiling Perl on QNX4
6918
6919 /bin/sh, ar, nm, cpp, make
6920
6921 =item Outstanding Issues with Perl on QNX4
6922
6923 =item QNX auxiliary files
6924
6925 qnx/ar, qnx/cpp
6926
6927 =item Outstanding issues with perl under QNX6
6928
6929 =back
6930
6931 =item AUTHOR
6932
6933 =back
6934
6935 =head2 perlplan9 - Plan 9-specific documentation for Perl
6936
6937 =over 4
6938
6939 =item DESCRIPTION
6940
6941 =over 4
6942
6943 =item Invoking Perl
6944
6945 =item What's in Plan 9 Perl
6946
6947 =item What's not in Plan 9 Perl
6948
6949 =item Perl5 Functions not currently supported in Plan 9 Perl
6950
6951 =item Signals in Plan 9 Perl
6952
6953 =back
6954
6955 =item COMPILING AND INSTALLING PERL ON PLAN 9
6956
6957 =over 4
6958
6959 =item Installing Perl Documentation on Plan 9
6960
6961 =back
6962
6963 =item BUGS
6964
6965 =item Revision date
6966
6967 =item AUTHOR
6968
6969 =back
6970
6971 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
6972
6973 =over 4
6974
6975 =item DESCRIPTION
6976
6977 =over 4
6978
6979 =item Solaris Version Numbers.
6980
6981 =back
6982
6983 =item RESOURCES
6984
6985 Solaris FAQ, Precompiled Binaries, Solaris Documentation
6986
6987 =item SETTING UP
6988
6989 =over 4
6990
6991 =item File Extraction Problems on Solaris.
6992
6993 =item Compiler and Related Tools on Solaris.
6994
6995 =item Environment for Compiling Perl on Solaris
6996
6997 =back
6998
6999 =item RUN CONFIGURE.
7000
7001 =over 4
7002
7003 =item 64-bit Issues with Perl on Solaris.
7004
7005 =item Threads in Perl on Solaris.
7006
7007 =item Malloc Issues with Perl on Solaris.
7008
7009 =back
7010
7011 =item MAKE PROBLEMS.
7012
7013 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
7014 relocation error:, dlopen: stub interception failed, #error "No
7015 DATAMODEL_NATIVE specified", sh: ar: not found
7016
7017 =item MAKE TEST
7018
7019 =over 4
7020
7021 =item op/stat.t test 4 in Solaris
7022
7023 =item nss_delete core dump from op/pwent or op/grent
7024
7025 =back
7026
7027 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
7028
7029 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
7030
7031 =over 4
7032
7033 =item Limits on Numbers of Open Files on Solaris.
7034
7035 =back
7036
7037 =item SOLARIS-SPECIFIC MODULES.
7038
7039 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
7040
7041 =over 4
7042
7043 =item Proc::ProcessTable on Solaris
7044
7045 =item BSD::Resource on Solaris
7046
7047 =item Net::SSLeay on Solaris
7048
7049 =back
7050
7051 =item AUTHOR
7052
7053 =item LAST MODIFIED
7054
7055 =back
7056
7057 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
7058 Digital UNIX formerly known as DEC OSF/1) systems
7059
7060 =over 4
7061
7062 =item DESCRIPTION
7063
7064 =over 4
7065
7066 =item Compiling Perl 5 on Tru64
7067
7068 =item Using Large Files with Perl on Tru64
7069
7070 =item Threaded Perl on Tru64
7071
7072 =item Long Doubles on Tru64
7073
7074 =item 64-bit Perl on Tru64
7075
7076 =item Warnings about floating-point overflow when compiling Perl on Tru64
7077
7078 =back
7079
7080 =item Testing Perl on Tru64
7081
7082 =item AUTHOR
7083
7084 =back
7085
7086 =head2 perluts - Perl under UTS
7087
7088 =over 4
7089
7090 =item SYNOPSIS
7091
7092 =item DESCRIPTION
7093
7094 =item BUILDING PERL ON UTS
7095
7096 =item Installing the built perl on UTS
7097
7098 =item AUTHOR
7099
7100 =back
7101
7102 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
7103
7104 =over 4
7105
7106 =item SYNOPSIS
7107
7108 =item DESCRIPTION
7109
7110 =over 4
7111
7112 =item Unpacking Perl Distribution on VM/ESA
7113
7114 =item Setup Perl and utilities on VM/ESA
7115
7116 =item Configure Perl on VM/ESA
7117
7118 =item Testing Anomalies of Perl on VM/ESA
7119
7120 =item Usage Hints for Perl on VM/ESA
7121
7122 =back
7123
7124 =item AUTHORS
7125
7126 =item SEE ALSO
7127
7128 =over 4
7129
7130 =item Mailing list for Perl on VM/ESA
7131
7132 =back
7133
7134 =back
7135
7136 =head2 perlvms - VMS-specific documentation for Perl
7137
7138 =over 4
7139
7140 =item DESCRIPTION
7141
7142 =item Installation
7143
7144 =item Organization of Perl Images
7145
7146 =over 4
7147
7148 =item Core Images
7149
7150 =item Perl Extensions
7151
7152 =item Installing static extensions
7153
7154 =item Installing dynamic extensions
7155
7156 =back
7157
7158 =item File specifications
7159
7160 =over 4
7161
7162 =item Syntax
7163
7164 =item Wildcard expansion
7165
7166 =item Pipes
7167
7168 =back
7169
7170 =item PERL5LIB and PERLLIB
7171
7172 =item Command line
7173
7174 =over 4
7175
7176 =item I/O redirection and backgrounding
7177
7178 =item Command line switches
7179
7180 -i, -S, -u
7181
7182 =back
7183
7184 =item Perl functions
7185
7186 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
7187 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
7188 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
7189 LIST, waitpid PID,FLAGS
7190
7191 =item Perl variables
7192
7193 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
7194
7195 =item Standard modules with VMS-specific differences
7196
7197 =over 4
7198
7199 =item SDBM_File
7200
7201 =back
7202
7203 =item Revision date
7204
7205 =item AUTHOR
7206
7207 =back
7208
7209 =head2 perlvos, README.vos - Perl for Stratus VOS
7210
7211 =over 4
7212
7213 =item SYNOPSIS
7214
7215 =over 4
7216
7217 =item Stratus POSIX Support
7218
7219 =back
7220
7221 =item INSTALLING PERL IN VOS
7222
7223 =over 4
7224
7225 =item Compiling Perl 5 on VOS
7226
7227 =item Installing Perl 5 on VOS
7228
7229 =back
7230
7231 =item USING PERL IN VOS
7232
7233 =over 4
7234
7235 =item Unimplemented Features of Perl on VOS
7236
7237 =item Restrictions of Perl on VOS
7238
7239 =back
7240
7241 =item SUPPORT STATUS
7242
7243 =item AUTHOR
7244
7245 =item LAST UPDATE
7246
7247 =back
7248
7249 =head2 perlwin32 - Perl under Win32
7250
7251 =over 4
7252
7253 =item SYNOPSIS
7254
7255 =item DESCRIPTION
7256
7257 =over 4
7258
7259 =item Setting Up Perl on Win32
7260
7261 Make, Command Shell, Borland C++, Microsoft Visual C++, Mingw32 with GCC
7262
7263 =item Building
7264
7265 =item Testing Perl on Win32
7266
7267 =item Installation of Perl on Win32
7268
7269 =item Usage Hints for Perl on Win32
7270
7271 Environment Variables, File Globbing, Using perl from the command line,
7272 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
7273 Extensions, Running Perl Scripts, Miscellaneous Things
7274
7275 =back
7276
7277 =item BUGS AND CAVEATS
7278
7279 =item AUTHORS
7280
7281 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
7282 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
7283 E<lt>nick@ing-simmons.netE<gt>
7284
7285 =item SEE ALSO
7286
7287 =item HISTORY
7288
7289 =back
7290
7291 =head1 PRAGMA DOCUMENTATION
7292
7293 =head2 attrs - set/get attributes of a subroutine (deprecated)
7294
7295 =over 4
7296
7297 =item SYNOPSIS
7298
7299 =item DESCRIPTION
7300
7301 method, locked
7302
7303 =back
7304
7305 =head2 re - Perl pragma to alter regular expression behaviour
7306
7307 =over 4
7308
7309 =item SYNOPSIS
7310
7311 =item DESCRIPTION
7312
7313 =back
7314
7315 =head2 threadshared::shared, threads::shared - Perl extension for sharing
7316 data structures between threads
7317
7318 =over 4
7319
7320 =item SYNOPSIS
7321
7322 =item DESCRIPTION
7323
7324 =item EXPORT
7325
7326 =item FUNCTIONS
7327
7328 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
7329 cond_signal VARIABLE, cond_broadcast VARIABLE
7330
7331 =item BUGS
7332
7333 =item AUTHOR
7334
7335 =item SEE ALSO
7336
7337 =back
7338
7339 =head2 threads - Perl extension allowing use of interpreter based threads
7340 from perl
7341
7342 =over 4
7343
7344 =item SYNOPSIS
7345
7346 =item DESCRIPTION
7347
7348 $thread = new(function, LIST), $thread->join, $thread->detach,
7349 threads->self, $thread->tid
7350
7351 =item TODO
7352
7353 Fix so the return value is returned when you join, Add join_all, Fix memory
7354 leaks!
7355
7356 =item AUTHOR and COPYRIGHT
7357
7358 =item BUGS
7359
7360 creating a thread from within a thread is unsafe under win32,
7361 PERL_OLD_SIGNALS are not threadsafe, will not be
7362
7363 =item SEE ALSO
7364
7365 =back
7366
7367 =head2 attributes - get/set subroutine or variable attributes
7368
7369 =over 4
7370
7371 =item SYNOPSIS
7372
7373 =item DESCRIPTION
7374
7375 =over 4
7376
7377 =item Built-in Attributes
7378
7379 locked, method, lvalue
7380
7381 =item Available Subroutines
7382
7383 get, reftype
7384
7385 =item Package-specific Attribute Handling
7386
7387 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
7388
7389 =item Syntax of Attribute Lists
7390
7391 =back
7392
7393 =item EXPORTS
7394
7395 =over 4
7396
7397 =item Default exports
7398
7399 =item Available exports
7400
7401 =item Export tags defined
7402
7403 =back
7404
7405 =item EXAMPLES
7406
7407 =item SEE ALSO
7408
7409 =back
7410
7411 =head2 attrs - set/get attributes of a subroutine (deprecated)
7412
7413 =over 4
7414
7415 =item SYNOPSIS
7416
7417 =item DESCRIPTION
7418
7419 method, locked
7420
7421 =back
7422
7423 =head2 autouse - postpone load of modules until a function is used
7424
7425 =over 4
7426
7427 =item SYNOPSIS
7428
7429 =item DESCRIPTION
7430
7431 =item WARNING
7432
7433 =item AUTHOR
7434
7435 =item SEE ALSO
7436
7437 =back
7438
7439 =head2 base - Establish IS-A relationship with base class at compile time
7440
7441 =over 4
7442
7443 =item SYNOPSIS
7444
7445 =item DESCRIPTION
7446
7447 =item HISTORY
7448
7449 =item SEE ALSO
7450
7451 =back
7452
7453 =head2 blib - Use MakeMaker's uninstalled version of a package
7454
7455 =over 4
7456
7457 =item SYNOPSIS
7458
7459 =item DESCRIPTION
7460
7461 =item BUGS
7462
7463 =item AUTHOR
7464
7465 =back
7466
7467 =head2 bytes - Perl pragma to force byte semantics rather than character
7468 semantics
7469
7470 =over 4
7471
7472 =item SYNOPSIS
7473
7474 =item DESCRIPTION
7475
7476 =item SEE ALSO
7477
7478 =back
7479
7480 =head2 charnames - define character names for C<\N{named}> string literal
7481 escapes.
7482
7483 =over 4
7484
7485 =item SYNOPSIS
7486
7487 =item DESCRIPTION
7488
7489 =item CUSTOM TRANSLATORS
7490
7491 =item charnames::viacode(code)
7492
7493 =item BUGS
7494
7495 =back
7496
7497 =head2 constant - Perl pragma to declare constants
7498
7499 =over 4
7500
7501 =item SYNOPSIS
7502
7503 =item DESCRIPTION
7504
7505 =item NOTES
7506
7507 =over 4
7508
7509 =item List constants
7510
7511 =item Defining multiple constants at once
7512
7513 =item Magic constants
7514
7515 =back
7516
7517 =item TECHNICAL NOTES
7518
7519 =item BUGS
7520
7521 =item AUTHOR
7522
7523 =item COPYRIGHT
7524
7525 =back
7526
7527 =head2 diagnostics - Perl compiler pragma to force verbose warning
7528 diagnostics
7529
7530 =over 4
7531
7532 =item SYNOPSIS
7533
7534 =item DESCRIPTION
7535
7536 =over 4
7537
7538 =item The C<diagnostics> Pragma
7539
7540 =item The I<splain> Program
7541
7542 =back
7543
7544 =item EXAMPLES
7545
7546 =item INTERNALS
7547
7548 =item BUGS
7549
7550 =item AUTHOR
7551
7552 =back
7553
7554 =head2 encoding - pragma to control the conversion of legacy data into
7555 Unicode
7556
7557 =over 4
7558
7559 =item SYNOPSIS
7560
7561 =item DESCRIPTION
7562
7563 =item KNOWN PROBLEMS
7564
7565 =item SEE ALSO
7566
7567 =back
7568
7569 =head2 fields - compile-time class fields
7570
7571 =over 4
7572
7573 =item SYNOPSIS
7574
7575 =item DESCRIPTION
7576
7577 new, phash
7578
7579 =item SEE ALSO
7580
7581 =back
7582
7583 =head2 filetest - Perl pragma to control the filetest permission operators
7584
7585 =over 4
7586
7587 =item SYNOPSIS
7588
7589 =item DESCRIPTION
7590
7591 =over 4
7592
7593 =item subpragma access
7594
7595 =back
7596
7597 =back
7598
7599 =head2 integer - Perl pragma to use integer arithmetic instead of floating
7600 point
7601
7602 =over 4
7603
7604 =item SYNOPSIS
7605
7606 =item DESCRIPTION
7607
7608 =back
7609
7610 =head2 less - perl pragma to request less of something from the compiler
7611
7612 =over 4
7613
7614 =item SYNOPSIS
7615
7616 =item DESCRIPTION
7617
7618 =back
7619
7620 =head2 lib - manipulate @INC at compile time
7621
7622 =over 4
7623
7624 =item SYNOPSIS
7625
7626 =item DESCRIPTION
7627
7628 =over 4
7629
7630 =item Adding directories to @INC
7631
7632 =item Deleting directories from @INC
7633
7634 =item Restoring original @INC
7635
7636 =back
7637
7638 =item SEE ALSO
7639
7640 =item AUTHOR
7641
7642 =back
7643
7644 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
7645 operations
7646
7647 =over 4
7648
7649 =item SYNOPSIS
7650
7651 =item DESCRIPTION
7652
7653 =back
7654
7655 =head2 open - perl pragma to set default disciplines for input and output
7656
7657 =over 4
7658
7659 =item SYNOPSIS
7660
7661 =item DESCRIPTION
7662
7663 =item NONPERLIO FUNCTIONALITY
7664
7665 =item IMPLEMENTATION DETAILS
7666
7667 =item SEE ALSO
7668
7669 =back
7670
7671 =head2 ops - Perl pragma to restrict unsafe operations when compiling
7672
7673 =over 4
7674
7675 =item SYNOPSIS  
7676
7677 =item DESCRIPTION
7678
7679 =item SEE ALSO
7680
7681 =back
7682
7683 =head2 overload - Package for overloading perl operations
7684
7685 =over 4
7686
7687 =item SYNOPSIS
7688
7689 =item DESCRIPTION
7690
7691 =over 4
7692
7693 =item Declaration of overloaded functions
7694
7695 =item Calling Conventions for Binary Operations
7696
7697 FALSE, TRUE, C<undef>
7698
7699 =item Calling Conventions for Unary Operations
7700
7701 =item Calling Conventions for Mutators
7702
7703 C<++> and C<-->, C<x=> and other assignment versions
7704
7705 =item Overloadable Operations
7706
7707 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
7708 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
7709 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
7710
7711 =item Inheritance and overloading
7712
7713 Strings as values of C<use overload> directive, Overloading of an operation
7714 is inherited by derived classes
7715
7716 =back
7717
7718 =item SPECIAL SYMBOLS FOR C<use overload>
7719
7720 =over 4
7721
7722 =item Last Resort
7723
7724 =item Fallback
7725
7726 C<undef>, TRUE, defined, but FALSE
7727
7728 =item Copy Constructor
7729
7730 B<Example>
7731
7732 =back
7733
7734 =item MAGIC AUTOGENERATION
7735
7736 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
7737 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
7738 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
7739 I<Copy operator>
7740
7741 =item Losing overloading
7742
7743 =item Run-time Overloading
7744
7745 =item Public functions
7746
7747 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
7748
7749 =item Overloading constants
7750
7751 integer, float, binary, q, qr
7752
7753 =item IMPLEMENTATION
7754
7755 =item Metaphor clash
7756
7757 =item Cookbook
7758
7759 =over 4
7760
7761 =item Two-face scalars
7762
7763 =item Two-face references
7764
7765 =item Symbolic calculator
7766
7767 =item I<Really> symbolic calculator
7768
7769 =back
7770
7771 =item AUTHOR
7772
7773 =item DIAGNOSTICS
7774
7775 Odd number of arguments for overload::constant, `%s' is not an overloadable
7776 type, `%s' is not a code reference
7777
7778 =item BUGS
7779
7780 =back
7781
7782 =head2 re - Perl pragma to alter regular expression behaviour
7783
7784 =over 4
7785
7786 =item SYNOPSIS
7787
7788 =item DESCRIPTION
7789
7790 =back
7791
7792 =head2 sigtrap - Perl pragma to enable simple signal handling
7793
7794 =over 4
7795
7796 =item SYNOPSIS
7797
7798 =item DESCRIPTION
7799
7800 =item OPTIONS
7801
7802 =over 4
7803
7804 =item SIGNAL HANDLERS
7805
7806 B<stack-trace>, B<die>, B<handler> I<your-handler>
7807
7808 =item SIGNAL LISTS
7809
7810 B<normal-signals>, B<error-signals>, B<old-interface-signals>
7811
7812 =item OTHER
7813
7814 B<untrapped>, B<any>, I<signal>, I<number>
7815
7816 =back
7817
7818 =item EXAMPLES
7819
7820 =back
7821
7822 =head2 strict - Perl pragma to restrict unsafe constructs
7823
7824 =over 4
7825
7826 =item SYNOPSIS
7827
7828 =item DESCRIPTION
7829
7830 C<strict refs>, C<strict vars>, C<strict subs>
7831
7832 =back
7833
7834 =head2 subs - Perl pragma to predeclare sub names
7835
7836 =over 4
7837
7838 =item SYNOPSIS
7839
7840 =item DESCRIPTION
7841
7842 =back
7843
7844 =head2 threads - Perl extension allowing use of interpreter based threads
7845 from perl
7846
7847 =over 4
7848
7849 =item SYNOPSIS
7850
7851 =item DESCRIPTION
7852
7853 $thread = new(function, LIST), $thread->join, $thread->detach,
7854 threads->self, $thread->tid
7855
7856 =item TODO
7857
7858 Fix so the return value is returned when you join, Add join_all, Fix memory
7859 leaks!
7860
7861 =item AUTHOR and COPYRIGHT
7862
7863 =item BUGS
7864
7865 creating a thread from within a thread is unsafe under win32,
7866 PERL_OLD_SIGNALS are not threadsafe, will not be
7867
7868 =item SEE ALSO
7869
7870 =back
7871
7872 =head2 threadshared, threads::shared - Perl extension for sharing data
7873 structures between threads
7874
7875 =over 4
7876
7877 =item SYNOPSIS
7878
7879 =item DESCRIPTION
7880
7881 =item EXPORT
7882
7883 =item FUNCTIONS
7884
7885 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
7886 cond_signal VARIABLE, cond_broadcast VARIABLE
7887
7888 =item BUGS
7889
7890 =item AUTHOR
7891
7892 =item SEE ALSO
7893
7894 =back
7895
7896 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
7897 code
7898
7899 =over 4
7900
7901 =item SYNOPSIS
7902
7903 =item DESCRIPTION
7904
7905 =over 4
7906
7907 =item Utility functions
7908
7909 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, CHECK]),
7910 utf8::encode($string), $flag = utf8::decode($string)
7911
7912 =back
7913
7914 =item SEE ALSO
7915
7916 =back
7917
7918 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
7919
7920 =over 4
7921
7922 =item SYNOPSIS
7923
7924 =item DESCRIPTION
7925
7926 =back
7927
7928 =head2 vmsish - Perl pragma to control VMS-specific language features
7929
7930 =over 4
7931
7932 =item SYNOPSIS
7933
7934 =item DESCRIPTION
7935
7936 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
7937
7938 =back
7939
7940 =head2 warnings - Perl pragma to control optional warnings
7941
7942 =over 4
7943
7944 =item SYNOPSIS
7945
7946 =item DESCRIPTION
7947
7948 use warnings::register, warnings::enabled(), warnings::enabled($category),
7949 warnings::enabled($object), warnings::warn($message),
7950 warnings::warn($category, $message), warnings::warn($object, $message),
7951 warnings::warnif($message), warnings::warnif($category, $message),
7952 warnings::warnif($object, $message)
7953
7954 =back
7955
7956 =head2 warnings::register - warnings import function
7957
7958 =over 4
7959
7960 =item SYNOPSIS
7961
7962 =item DESCRIPTION
7963
7964 =back
7965
7966 =head1 MODULE DOCUMENTATION
7967
7968 =head2 AnyDBM_File - provide framework for multiple DBMs
7969
7970 =over 4
7971
7972 =item SYNOPSIS
7973
7974 =item DESCRIPTION
7975
7976 =over 4
7977
7978 =item DBM Comparisons
7979
7980 [0], [1], [2], [3]
7981
7982 =back
7983
7984 =item SEE ALSO
7985
7986 =back
7987
7988 =head2 Attribute::Handlers - Simpler definition of attribute handlers
7989
7990 =over 4
7991
7992 =item VERSION
7993
7994 =item SYNOPSIS
7995
7996 =item DESCRIPTION
7997
7998 [0], [1], [2], [3], [4], [5]
7999
8000 =over 4
8001
8002 =item Typed lexicals
8003
8004 =item Type-specific attribute handlers
8005
8006 =item Non-interpretive attribute handlers
8007
8008 =item Phase-specific attribute handlers
8009
8010 =item Attributes as C<tie> interfaces
8011
8012 =back
8013
8014 =item EXAMPLES
8015
8016 =item DIAGNOSTICS
8017
8018 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
8019 attributes>, C<Declaration of %s attribute in package %s may clash with
8020 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
8021 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>
8022
8023 =item AUTHOR
8024
8025 =item BUGS
8026
8027 =item COPYRIGHT
8028
8029 =back
8030
8031 =head2 AutoLoader - load subroutines only on demand
8032
8033 =over 4
8034
8035 =item SYNOPSIS
8036
8037 =item DESCRIPTION
8038
8039 =over 4
8040
8041 =item Subroutine Stubs
8042
8043 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
8044
8045 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
8046
8047 =item Package Lexicals
8048
8049 =item Not Using AutoLoader
8050
8051 =item B<AutoLoader> vs. B<SelfLoader>
8052
8053 =back
8054
8055 =item CAVEATS
8056
8057 =item SEE ALSO
8058
8059 =back
8060
8061 =head2 AutoSplit - split a package for autoloading
8062
8063 =over 4
8064
8065 =item SYNOPSIS
8066
8067 =item DESCRIPTION
8068
8069 $keep, $check, $modtime
8070
8071 =over 4
8072
8073 =item Multiple packages
8074
8075 =back
8076
8077 =item DIAGNOSTICS
8078
8079 =back
8080
8081 =head2 B - The Perl Compiler
8082
8083 =over 4
8084
8085 =item SYNOPSIS
8086
8087 =item DESCRIPTION
8088
8089 =item OVERVIEW OF CLASSES
8090
8091 =over 4
8092
8093 =item SV-RELATED CLASSES
8094
8095 =item B::SV METHODS
8096
8097 REFCNT, FLAGS
8098
8099 =item B::IV METHODS
8100
8101 IV, IVX, UVX, int_value, needs64bits, packiv
8102
8103 =item B::NV METHODS
8104
8105 NV, NVX
8106
8107 =item B::RV METHODS
8108
8109 RV
8110
8111 =item B::PV METHODS
8112
8113 PV, PVX
8114
8115 =item B::PVMG METHODS
8116
8117 MAGIC, SvSTASH
8118
8119 =item B::MAGIC METHODS
8120
8121 MOREMAGIC, PRIVATE, TYPE, FLAGS, OBJ, PTR
8122
8123 =item B::PVLV METHODS
8124
8125 TARGOFF, TARGLEN, TYPE, TARG
8126
8127 =item B::BM METHODS
8128
8129 USEFUL, PREVIOUS, RARE, TABLE
8130
8131 =item B::GV METHODS
8132
8133 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
8134 LINE, FILE, FILEGV, GvREFCNT, FLAGS
8135
8136 =item B::IO METHODS
8137
8138 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
8139 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS
8140
8141 =item B::AV METHODS
8142
8143 FILL, MAX, OFF, ARRAY, AvFLAGS
8144
8145 =item B::CV METHODS
8146
8147 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
8148 CvFLAGS, const_sv
8149
8150 =item B::HV METHODS
8151
8152 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
8153
8154 =item OP-RELATED CLASSES
8155
8156 =item B::OP METHODS
8157
8158 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
8159
8160 =item B::UNOP METHOD
8161
8162 first
8163
8164 =item B::BINOP METHOD
8165
8166 last
8167
8168 =item B::LOGOP METHOD
8169
8170 other
8171
8172 =item B::LISTOP METHOD
8173
8174 children
8175
8176 =item B::PMOP METHODS
8177
8178 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmpermflags, precomp
8179
8180 =item B::SVOP METHOD
8181
8182 sv, gv
8183
8184 =item B::PADOP METHOD
8185
8186 padix
8187
8188 =item B::PVOP METHOD
8189
8190 pv
8191
8192 =item B::LOOP METHODS
8193
8194 redoop, nextop, lastop
8195
8196 =item B::COP METHODS
8197
8198 label, stash, file, cop_seq, arybase, line
8199
8200 =back
8201
8202 =item FUNCTIONS EXPORTED BY C<B>
8203
8204 main_cv, init_av, main_root, main_start, comppadlist, sv_undef, sv_yes,
8205 sv_no, amagic_generation, walkoptree(OP, METHOD), walkoptree_debug(DEBUG),
8206 walksymtable(SYMREF, METHOD, RECURSE, PREFIX), svref_2object(SV),
8207 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR), class(OBJ),
8208 threadsv_names
8209
8210 =item AUTHOR
8211
8212 =back
8213
8214 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
8215 bytecode
8216
8217 =over 4
8218
8219 =item SYNOPSIS
8220
8221 =item DESCRIPTION
8222
8223 =item AUTHOR
8224
8225 =back
8226
8227 =head2 B::Assembler - Assemble Perl bytecode
8228
8229 =over 4
8230
8231 =item SYNOPSIS
8232
8233 =item DESCRIPTION
8234
8235 =item AUTHORS
8236
8237 =back
8238
8239 =head2 B::Bblock - Walk basic blocks
8240
8241 =over 4
8242
8243 =item SYNOPSIS
8244
8245 =item DESCRIPTION
8246
8247 =item AUTHOR
8248
8249 =back
8250
8251 =head2 B::Bytecode - Perl compiler's bytecode backend
8252
8253 =over 4
8254
8255 =item SYNOPSIS
8256
8257 =item DESCRIPTION
8258
8259 =item OPTIONS
8260
8261 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
8262 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
8263 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
8264
8265 =item EXAMPLES
8266
8267 =item BUGS
8268
8269 =item AUTHORS
8270
8271 =back
8272
8273 =head2 B::C - Perl compiler's C backend
8274
8275 =over 4
8276
8277 =item SYNOPSIS
8278
8279 =item DESCRIPTION
8280
8281 =item OPTIONS
8282
8283 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
8284 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fno-cog>, B<-On>, B<-llimit>
8285
8286 =item EXAMPLES
8287
8288 =item BUGS
8289
8290 =item AUTHOR
8291
8292 =back
8293
8294 =head2 B::CC - Perl compiler's optimized C translation backend
8295
8296 =over 4
8297
8298 =item SYNOPSIS
8299
8300 =item DESCRIPTION
8301
8302 =item OPTIONS
8303
8304 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
8305 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
8306 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
8307
8308 =item EXAMPLES
8309
8310 =item BUGS
8311
8312 =item DIFFERENCES
8313
8314 =over 4
8315
8316 =item Loops
8317
8318 =item Context of ".."
8319
8320 =item Arithmetic
8321
8322 =item Deprecated features
8323
8324 =back
8325
8326 =item AUTHOR
8327
8328 =back
8329
8330 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
8331
8332 =over 4
8333
8334 =item SYNOPSIS
8335
8336 =item DESCRIPTION
8337
8338 =item OPTIONS
8339
8340 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
8341 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
8342 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
8343
8344 =item FORMATTING SPECIFICATIONS
8345
8346 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
8347 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
8348 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
8349 B<#classym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
8350 B<#flags>, B<#flagval>, B<#hyphenseq>, B<#label>, B<#lastaddr>, B<#name>,
8351 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
8352 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
8353 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
8354
8355 =item ABBREVIATIONS
8356
8357 =over 4
8358
8359 =item OP flags abbreviations
8360
8361 =item OP class abbreviations
8362
8363 =back
8364
8365 =item Using B::Concise outside of the O framework
8366
8367 =item AUTHOR
8368
8369 =back
8370
8371 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
8372
8373 =over 4
8374
8375 =item SYNOPSIS
8376
8377 =item DESCRIPTION
8378
8379 =item AUTHOR
8380
8381 =back
8382
8383 =head2 B::Deparse - Perl compiler backend to produce perl code
8384
8385 =over 4
8386
8387 =item SYNOPSIS
8388
8389 =item DESCRIPTION
8390
8391 =item OPTIONS
8392
8393 B<-l>, B<-p>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>, B<i>I<NUMBER>,
8394 B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
8395
8396 =item USING B::Deparse AS A MODULE
8397
8398 =over 4
8399
8400 =item Synopsis
8401
8402 =item Description
8403
8404 =item new
8405
8406 =item ambient_pragmas
8407
8408 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
8409
8410 =item coderef2text
8411
8412 =back
8413
8414 =item BUGS
8415
8416 =item AUTHOR
8417
8418 =back
8419
8420 =head2 B::Disassembler - Disassemble Perl bytecode
8421
8422 =over 4
8423
8424 =item SYNOPSIS
8425
8426 =item DESCRIPTION
8427
8428 =item AUTHOR
8429
8430 =back
8431
8432 =head2 B::Lint - Perl lint
8433
8434 =over 4
8435
8436 =item SYNOPSIS
8437
8438 =item DESCRIPTION
8439
8440 =item OPTIONS AND LINT CHECKS
8441
8442 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
8443 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
8444
8445 =item NON LINT-CHECK OPTIONS
8446
8447 B<-u Package>
8448
8449 =item BUGS
8450
8451 =item AUTHOR
8452
8453 =back
8454
8455 =head2 B::O, O - Generic interface to Perl Compiler backends
8456
8457 =over 4
8458
8459 =item SYNOPSIS
8460
8461 =item DESCRIPTION
8462
8463 =item CONVENTIONS
8464
8465 =item IMPLEMENTATION
8466
8467 =item AUTHOR
8468
8469 =back
8470
8471 =head2 B::Showlex - Show lexical variables used in functions or files
8472
8473 =over 4
8474
8475 =item SYNOPSIS
8476
8477 =item DESCRIPTION
8478
8479 =item AUTHOR
8480
8481 =back
8482
8483 =head2 B::Stackobj - Helper module for CC backend
8484
8485 =over 4
8486
8487 =item SYNOPSIS
8488
8489 =item DESCRIPTION
8490
8491 =item AUTHOR
8492
8493 =back
8494
8495 =head2 B::Stash - show what stashes are loaded
8496
8497 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
8498
8499 =over 4
8500
8501 =item SYNOPSIS
8502
8503 =item DESCRIPTION
8504
8505 =item AUTHOR
8506
8507 =back
8508
8509 =head2 B::Xref - Generates cross reference reports for Perl programs
8510
8511 =over 4
8512
8513 =item SYNOPSIS
8514
8515 =item DESCRIPTION
8516
8517 =item OPTIONS
8518
8519 C<-oFILENAME>, C<-r>, C<-D[tO]>
8520
8521 =item BUGS
8522
8523 =item AUTHOR
8524
8525 =back
8526
8527 =head2 Bblock, B::Bblock - Walk basic blocks
8528
8529 =over 4
8530
8531 =item SYNOPSIS
8532
8533 =item DESCRIPTION
8534
8535 =item AUTHOR
8536
8537 =back
8538
8539 =head2 Benchmark - benchmark running times of Perl code
8540
8541 =over 4
8542
8543 =item SYNOPSIS
8544
8545 =item DESCRIPTION
8546
8547 =over 4
8548
8549 =item Methods
8550
8551 new, debug, iters
8552
8553 =item Standard Exports
8554
8555 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
8556 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
8557 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
8558
8559 =item Optional Exports
8560
8561 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
8562 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
8563 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
8564
8565 =back
8566
8567 =item NOTES
8568
8569 =item EXAMPLES
8570
8571 =item INHERITANCE
8572
8573 =item CAVEATS
8574
8575 =item SEE ALSO
8576
8577 =item AUTHORS
8578
8579 =item MODIFICATION HISTORY
8580
8581 =back
8582
8583 =head2 ByteLoader - load byte compiled perl code
8584
8585 =over 4
8586
8587 =item SYNOPSIS
8588
8589 =item DESCRIPTION
8590
8591 =item AUTHOR
8592
8593 =item SEE ALSO
8594
8595 =back
8596
8597 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
8598
8599 =over 4
8600
8601 =item SYNOPSIS
8602
8603 =item DESCRIPTION
8604
8605 =item OPTIONS
8606
8607 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
8608 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
8609 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
8610
8611 =item EXAMPLES
8612
8613 =item BUGS
8614
8615 =item AUTHORS
8616
8617 =back
8618
8619 =head2 CGI - Simple Common Gateway Interface Class
8620
8621 =over 4
8622
8623 =item SYNOPSIS
8624
8625 =item ABSTRACT
8626
8627 =item DESCRIPTION
8628
8629 =over 4
8630
8631 =item PROGRAMMING STYLE
8632
8633 =item CALLING CGI.PM ROUTINES
8634
8635 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
8636
8637 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
8638
8639 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
8640
8641 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
8642
8643 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
8644
8645 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
8646
8647 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
8648
8649 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
8650
8651 =item DELETING A PARAMETER COMPLETELY:
8652
8653 =item DELETING ALL PARAMETERS:
8654
8655 =item DIRECT ACCESS TO THE PARAMETER LIST:
8656
8657 =item FETCHING THE PARAMETER LIST AS A HASH:
8658
8659 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
8660
8661 =item RETRIEVING CGI ERRORS
8662
8663 =item USING THE FUNCTION-ORIENTED INTERFACE
8664
8665 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:netscape>, B<:html>,
8666 B<:standard>, B<:all>
8667
8668 =item PRAGMAS
8669
8670 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
8671 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
8672 -private_tempfiles
8673
8674 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
8675
8676 1. start_table() (generates a <TABLE> tag), 2. end_table() (generates a
8677 </TABLE> tag), 3. start_ul() (generates a <UL> tag), 4. end_ul() (generates
8678 a </UL> tag)
8679
8680 =back
8681
8682 =item GENERATING DYNAMIC DOCUMENTS
8683
8684 =over 4
8685
8686 =item CREATING A STANDARD HTTP HEADER:
8687
8688 =item GENERATING A REDIRECTION HEADER
8689
8690 =item CREATING THE HTML DOCUMENT HEADER
8691
8692 B<Parameters:>, 4, 5, 6..
8693
8694 =item ENDING THE HTML DOCUMENT:
8695
8696 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
8697
8698 =item OBTAINING THE SCRIPT'S URL
8699
8700 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
8701 (B<-query_string>), B<-base>
8702
8703 =item MIXING POST AND URL PARAMETERS
8704
8705 =back
8706
8707 =item CREATING STANDARD HTML ELEMENTS:
8708
8709 =over 4
8710
8711 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
8712
8713 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
8714
8715 =item HTML SHORTCUTS AND LIST INTERPOLATION
8716
8717 =item NON-STANDARD HTML SHORTCUTS
8718
8719 =item AUTOESCAPING HTML
8720
8721 $escaped_string = escapeHTML("unescaped string");, $charset =
8722 charset([$charset]);, $flag = autoEscape([$flag]);
8723
8724 =item PRETTY-PRINTING HTML
8725
8726 =back
8727
8728 =item CREATING FILL-OUT FORMS:
8729
8730 =over 4
8731
8732 =item CREATING AN ISINDEX TAG
8733
8734 =item STARTING AND ENDING A FORM
8735
8736 B<application/x-www-form-urlencoded>, B<multipart/form-data>
8737
8738 =item CREATING A TEXT FIELD
8739
8740 B<Parameters>
8741
8742 =item CREATING A BIG TEXT FIELD
8743
8744 =item CREATING A PASSWORD FIELD
8745
8746 =item CREATING A FILE UPLOAD FIELD
8747
8748 B<Parameters>
8749
8750 =item CREATING A POPUP MENU
8751
8752 =item CREATING A SCROLLING LIST
8753
8754 B<Parameters:>
8755
8756 =item CREATING A GROUP OF RELATED CHECKBOXES
8757
8758 B<Parameters:>
8759
8760 =item CREATING A STANDALONE CHECKBOX
8761
8762 B<Parameters:>
8763
8764 =item CREATING A RADIO BUTTON GROUP
8765
8766 B<Parameters:>
8767
8768 =item CREATING A SUBMIT BUTTON 
8769
8770 B<Parameters:>
8771
8772 =item CREATING A RESET BUTTON
8773
8774 =item CREATING A DEFAULT BUTTON
8775
8776 =item CREATING A HIDDEN FIELD
8777
8778 B<Parameters:>
8779
8780 =item CREATING A CLICKABLE IMAGE BUTTON
8781
8782 B<Parameters:>, 3. The third option (-align, optional) is an alignment
8783 type, and may be TOP, BOTTOM or MIDDLE
8784
8785 =item CREATING A JAVASCRIPT ACTION BUTTON
8786
8787 =back
8788
8789 =item HTTP COOKIES
8790
8791 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
8792 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
8793
8794 =item WORKING WITH FRAMES
8795
8796 1. Create a <Frameset> document, 2. Specify the destination for the
8797 document in the HTTP header, 3. Specify the destination for the document in
8798 the <FORM> tag
8799
8800 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
8801
8802 =item DEBUGGING
8803
8804 =over 4
8805
8806 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
8807
8808 =back
8809
8810 =item FETCHING ENVIRONMENT VARIABLES
8811
8812 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
8813 B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
8814 name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
8815 ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
8816 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
8817 B<request_method()>, B<content_type()>, B<http()>, B<https()>
8818
8819 =item USING NPH SCRIPTS
8820
8821 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
8822 parameters
8823
8824 =item Server Push
8825
8826 multipart_init(), multipart_start(), multipart_end(), multipart_final()
8827
8828 =item Avoiding Denial of Service Attacks
8829
8830 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
8831 basis>, B<2. Globally for all scripts>
8832
8833 =item COMPATIBILITY WITH CGI-LIB.PL
8834
8835 =item AUTHOR INFORMATION
8836
8837 =item CREDITS
8838
8839 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
8840 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
8841 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
8842 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
8843 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
8844 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
8845 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
8846 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
8847 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
8848 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
8849 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
8850 ...and many many more..
8851
8852 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
8853
8854 =item BUGS
8855
8856 =item SEE ALSO
8857
8858 =back
8859
8860 =head2 CGI::Apache - Backward compatibility module for CGI.pm
8861
8862 =over 4
8863
8864 =item SYNOPSIS
8865
8866 =item ABSTRACT
8867
8868 =item DESCRIPTION
8869
8870 =item AUTHOR INFORMATION
8871
8872 =item BUGS
8873
8874 =item SEE ALSO
8875
8876 =back
8877
8878 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
8879 other) error log
8880
8881 =over 4
8882
8883 =item SYNOPSIS
8884
8885 =item DESCRIPTION
8886
8887 =item REDIRECTING ERROR MESSAGES
8888
8889 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
8890
8891 =over 4
8892
8893 =item Changing the default message
8894
8895 =back
8896
8897 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
8898
8899 =item CHANGE LOG
8900
8901 =item AUTHORS
8902
8903 =item SEE ALSO
8904
8905 =back
8906
8907 =head2 CGI::Cookie - Interface to Netscape Cookies
8908
8909 =over 4
8910
8911 =item SYNOPSIS
8912
8913 =item DESCRIPTION
8914
8915 =item USING CGI::Cookie
8916
8917 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
8918
8919 =over 4
8920
8921 =item Creating New Cookies
8922
8923 =item Sending the Cookie to the Browser
8924
8925 =item Recovering Previous Cookies
8926
8927 =item Manipulating Cookies
8928
8929 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
8930
8931 =back
8932
8933 =item AUTHOR INFORMATION
8934
8935 =item BUGS
8936
8937 =item SEE ALSO
8938
8939 =back
8940
8941 =head2 CGI::Fast - CGI Interface for Fast CGI
8942
8943 =over 4
8944
8945 =item SYNOPSIS
8946
8947 =item DESCRIPTION
8948
8949 =item OTHER PIECES OF THE PUZZLE
8950
8951 =item WRITING FASTCGI PERL SCRIPTS
8952
8953 =item INSTALLING FASTCGI SCRIPTS
8954
8955 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
8956
8957 =item EXTERNAL FASTCGI SERVER INVOCATION
8958
8959 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
8960
8961 =item CAVEATS
8962
8963 =item AUTHOR INFORMATION
8964
8965 =item BUGS
8966
8967 =item SEE ALSO
8968
8969 =back
8970
8971 =head2 CGI::Pretty - module to produce nicely formatted HTML code
8972
8973 =over 4
8974
8975 =item SYNOPSIS
8976
8977 =item DESCRIPTION
8978
8979 =over 4
8980
8981 =item Tags that won't be formatted
8982
8983 =item Customizing the Indenting
8984
8985 =back
8986
8987 =item BUGS
8988
8989 =item AUTHOR
8990
8991 =item SEE ALSO
8992
8993 =back
8994
8995 =head2 CGI::Push - Simple Interface to Server Push
8996
8997 =over 4
8998
8999 =item SYNOPSIS
9000
9001 =item DESCRIPTION
9002
9003 =item USING CGI::Push
9004
9005 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
9006
9007 =over 4
9008
9009 =item Heterogeneous Pages
9010
9011 =item Changing the Page Delay on the Fly
9012
9013 =back
9014
9015 =item INSTALLING CGI::Push SCRIPTS
9016
9017 =item AUTHOR INFORMATION
9018
9019 =item BUGS
9020
9021 =item SEE ALSO
9022
9023 =back
9024
9025 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
9026
9027 =over 4
9028
9029 =item SYNOPSIS
9030
9031 =item ABSTRACT
9032
9033 =item DESCRIPTION
9034
9035 =item AUTHOR INFORMATION
9036
9037 =item BUGS
9038
9039 =item SEE ALSO
9040
9041 =back
9042
9043 =head2 CGI::Util - Internal utilities used by CGI module
9044
9045 =over 4
9046
9047 =item SYNOPSIS
9048
9049 =item DESCRIPTION
9050
9051 =item AUTHOR INFORMATION
9052
9053 =item SEE ALSO
9054
9055 =back
9056
9057 =head2 CPAN - query, download and build perl modules from CPAN sites
9058
9059 =over 4
9060
9061 =item SYNOPSIS
9062
9063 =item DESCRIPTION
9064
9065 =over 4
9066
9067 =item Interactive Mode
9068
9069 Searching for authors, bundles, distribution files and modules, make, test,
9070 install, clean  modules or distributions, get, readme, look module or
9071 distribution, ls author, Signals
9072
9073 =item CPAN::Shell
9074
9075 =item autobundle
9076
9077 =item recompile
9078
9079 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
9080
9081 =item Programmer's interface
9082
9083 expand($type,@things), expandany(@things), Programming Examples
9084
9085 =item Methods in the other Classes
9086
9087 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
9088 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
9089 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
9090 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
9091 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
9092 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
9093 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
9094 CPAN::Bundle::readme(), CPAN::Bundle::test(),
9095 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
9096 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
9097 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
9098 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
9099 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
9100 CPAN::Distribution::look(), CPAN::Distribution::make(),
9101 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
9102 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
9103 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
9104 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
9105 CPAN::Module::clean(), CPAN::Module::cpan_file(),
9106 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
9107 CPAN::Module::description(), CPAN::Module::force($method,@args),
9108 CPAN::Module::get(), CPAN::Module::inst_file(),
9109 CPAN::Module::inst_version(), CPAN::Module::install(),
9110 CPAN::Module::look(), CPAN::Module::make(),
9111 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
9112 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
9113
9114 =item Cache Manager
9115
9116 =item Bundles
9117
9118 =item Prerequisites
9119
9120 =item Finding packages and VERSION
9121
9122 =item Debugging
9123
9124 =item Floppy, Zip, Offline Mode
9125
9126 =back
9127
9128 =item CONFIGURATION
9129
9130 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
9131 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
9132 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
9133 [unshift|push|splice] E<lt>listE<gt>>
9134
9135 =over 4
9136
9137 =item Note on urllist parameter's format
9138
9139 =item urllist parameter has CD-ROM support
9140
9141 =back
9142
9143 =item SECURITY
9144
9145 =item EXPORT
9146
9147 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
9148
9149 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
9150
9151 =over 4
9152
9153 =item Three basic types of firewalls
9154
9155 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
9156
9157 =item Configuring lynx or ncftp for going through a firewall
9158
9159 =back
9160
9161 =item FAQ
9162
9163 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
9164
9165 =item BUGS
9166
9167 =item AUTHOR
9168
9169 =item TRANSLATIONS
9170
9171 =item SEE ALSO
9172
9173 =back
9174
9175 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
9176
9177 =over 4
9178
9179 =item SYNOPSIS
9180
9181 =item DESCRIPTION
9182
9183 =back
9184
9185 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
9186 module
9187
9188 =over 4
9189
9190 =item SYNOPSIS
9191
9192 =item DESCRIPTION
9193
9194 =item  SEE ALSO
9195
9196 =back
9197
9198 =head2 Carp, carp    - warn of errors (from perspective of caller)
9199
9200 =over 4
9201
9202 =item SYNOPSIS
9203
9204 =item DESCRIPTION
9205
9206 =over 4
9207
9208 =item Forcing a Stack Trace
9209
9210 =back
9211
9212 =item BUGS
9213
9214 =back
9215
9216 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
9217
9218 =head2 Class::ISA -- report the search path for a class's ISA tree
9219
9220 =over 4
9221
9222 =item SYNOPSIS
9223
9224 =item DESCRIPTION
9225
9226 =item FUNCTIONS
9227
9228 the function Class::ISA::super_path($CLASS), the function
9229 Class::ISA::self_and_super_path($CLASS), the function
9230 Class::ISA::self_and_super_versions($CLASS)
9231
9232 =item CAUTIONARY NOTES
9233
9234 =item COPYRIGHT
9235
9236 =item AUTHOR
9237
9238 =back
9239
9240 =head2 Class::Struct - declare struct-like datatypes as Perl classes
9241
9242 =over 4
9243
9244 =item SYNOPSIS
9245
9246 =item DESCRIPTION
9247
9248 =over 4
9249
9250 =item The C<struct()> function
9251
9252 =item Class Creation at Compile Time
9253
9254 =item Element Types and Accessor Methods
9255
9256 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
9257 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
9258
9259 =item Initializing with C<new>
9260
9261 =back
9262
9263 =item EXAMPLES
9264
9265 Example 1, Example 2, Example 3
9266
9267 =item Author and Modification History
9268
9269 =back
9270
9271 =head2 Config - access Perl configuration information
9272
9273 =over 4
9274
9275 =item SYNOPSIS
9276
9277 =item DESCRIPTION
9278
9279 myconfig(), config_sh(), config_vars(@names)
9280
9281 =item EXAMPLE
9282
9283 =item WARNING
9284
9285 =item GLOSSARY
9286
9287 =over 4
9288
9289 =item _
9290
9291 C<_a>, C<_exe>, C<_o>
9292
9293 =item a
9294
9295 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
9296 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
9297 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
9298 C<awk>
9299
9300 =item b
9301
9302 C<baserev>, C<bash>, C<bin>, C<bincompat5005>, C<binexp>, C<bison>,
9303 C<byacc>, C<byteorder>
9304
9305 =item c
9306
9307 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
9308 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
9309 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
9310 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
9311 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
9312 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<cryptlib>, C<csh>
9313
9314 =item d
9315
9316 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
9317 C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>, C<d_bcopy>,
9318 C<d_bincompat5005>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>,
9319 C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>,
9320 C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>,
9321 C<d_crypt>, C<d_csh>, C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>,
9322 C<d_difftime>, C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>,
9323 C<d_dosuid>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>, C<d_endgrent>,
9324 C<d_endhent>, C<d_endnent>, C<d_endpent>, C<d_endpwent>, C<d_endsent>,
9325 C<d_eofnblk>, C<d_eunice>, C<d_fchdir>, C<d_fchmod>, C<d_fchown>,
9326 C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>,
9327 C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>,
9328 C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>,
9329 C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>,
9330 C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>,
9331 C<d_fsync>, C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>,
9332 C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>, C<d_getgrps>,
9333 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
9334 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getmnt>,
9335 C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>,
9336 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
9337 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
9338 C<d_getprior>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
9339 C<d_getsbyname>, C<d_getsbyport>, C<d_getsent>, C<d_getservprotos>,
9340 C<d_getspnam>, C<d_gettimeod>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
9341 C<d_htonl>, C<d_index>, C<d_inetaton>, C<d_int64_t>, C<d_isascii>,
9342 C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>, C<d_killpg>,
9343 C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_locconv>, C<d_lockf>,
9344 C<d_longdbl>, C<d_longlong>, C<d_lseekproto>, C<d_lstat>, C<d_madvise>,
9345 C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>,
9346 C<d_memcpy>, C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>,
9347 C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>,
9348 C<d_modfl>, C<d_modfl_pow32_bug>, C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>,
9349 C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>, C<d_msg_proxy>,
9350 C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>, C<d_msgsnd>,
9351 C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>, C<d_nl_langinfo>,
9352 C<d_nv_preserves_uv>, C<d_nv_preserves_uv_bits>, C<d_off64_t>,
9353 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
9354 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
9355 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
9356 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
9357 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
9358 C<d_PRIx64>, C<d_PRIXU64>, C<d_pthread_atfork>, C<d_pthread_yield>,
9359 C<d_pwage>, C<d_pwchange>, C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>,
9360 C<d_pwgecos>, C<d_pwpasswd>, C<d_pwquota>, C<d_qgcvt>, C<d_quad>,
9361 C<d_readdir>, C<d_readlink>, C<d_readv>, C<d_recvmsg>, C<d_rename>,
9362 C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>, C<d_sanemcmp>,
9363 C<d_sbrkproto>, C<d_sched_yield>, C<d_scm_rights>, C<d_SCNfldbl>,
9364 C<d_seekdir>, C<d_select>, C<d_sem>, C<d_semctl>, C<d_semctl_semid_ds>,
9365 C<d_semctl_semun>, C<d_semget>, C<d_semop>, C<d_sendmsg>, C<d_setegid>,
9366 C<d_seteuid>, C<d_setgrent>, C<d_setgrps>, C<d_sethent>, C<d_setitimer>,
9367 C<d_setlinebuf>, C<d_setlocale>, C<d_setnent>, C<d_setpent>, C<d_setpgid>,
9368 C<d_setpgrp2>, C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>,
9369 C<d_setpwent>, C<d_setregid>, C<d_setresgid>, C<d_setresuid>,
9370 C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>, C<d_setsid>,
9371 C<d_setvbuf>, C<d_sfio>, C<d_shm>, C<d_shmat>, C<d_shmatprototype>,
9372 C<d_shmctl>, C<d_shmdt>, C<d_shmget>, C<d_sigaction>, C<d_sigprocmask>,
9373 C<d_sigsetjmp>, C<d_sockatmark>, C<d_sockatmarkproto>, C<d_socket>,
9374 C<d_socklen_t>, C<d_sockpair>, C<d_socks5_init>, C<d_sqrtl>,
9375 C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
9376 C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
9377 C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
9378 C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
9379 C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strftime>,
9380 C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>, C<d_strtoq>,
9381 C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>,
9382 C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
9383 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
9384 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
9385 C<d_truncate>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
9386 C<d_uname>, C<d_union_semun>, C<d_unordered>, C<d_usleep>,
9387 C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>, C<d_vendorbin>,
9388 C<d_vendorlib>, C<d_vfork>, C<d_void_closedir>, C<d_voidsig>, C<d_voidtty>,
9389 C<d_volatile>, C<d_vprintf>, C<d_wait4>, C<d_waitpid>, C<d_wcstombs>,
9390 C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>, C<db_hashtype>,
9391 C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
9392 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
9393 C<doublesize>, C<drand01>, C<dynamic_ext>
9394
9395 =item e
9396
9397 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<eunicefix>,
9398 C<exe_ext>, C<expr>, C<extensions>, C<extras>
9399
9400 =item f
9401
9402 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
9403 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
9404 C<full_sed>
9405
9406 =item g
9407
9408 C<gccosandvers>, C<gccversion>, C<gidformat>, C<gidsign>, C<gidsize>,
9409 C<gidtype>, C<glibpth>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
9410
9411 =item h
9412
9413 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
9414
9415 =item i
9416
9417 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
9418 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_db>, C<i_dbm>,
9419 C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>, C<i_fp>,
9420 C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
9421 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
9422 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
9423 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
9424 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
9425 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
9426 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
9427 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
9428 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
9429 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
9430 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
9431 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
9432 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
9433 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
9434 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
9435 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installman1dir>,
9436 C<installman3dir>, C<installprefix>, C<installprefixexp>,
9437 C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
9438 C<installsitelib>, C<installstyle>, C<installusrbinperl>,
9439 C<installvendorarch>, C<installvendorbin>, C<installvendorlib>, C<intsize>,
9440 C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
9441
9442 =item k
9443
9444 C<known_extensions>, C<ksh>
9445
9446 =item l
9447
9448 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
9449 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
9450 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
9451 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
9452 C<locincpth>, C<loclibpth>, C<longdblsize>, C<longlongsize>, C<longsize>,
9453 C<lp>, C<lpr>, C<ls>, C<lseeksize>, C<lseektype>
9454
9455 =item m
9456
9457 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
9458 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
9459 C<man3direxp>, C<man3ext>
9460
9461 =item M
9462
9463 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
9464 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
9465
9466 =item n
9467
9468 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
9469 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
9470 C<nonxs_ext>, C<nroff>, C<nveformat>, C<nvEUformat>, C<nvfformat>,
9471 C<nvFUformat>, C<nvgformat>, C<nvGUformat>, C<nvsize>, C<nvtype>
9472
9473 =item o
9474
9475 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
9476 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
9477
9478 =item p
9479
9480 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
9481 C<perl>, C<perl_patchlevel>
9482
9483 =item P
9484
9485 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
9486 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
9487 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
9488 C<privlibexp>, C<prototype>, C<ptrsize>
9489
9490 =item q
9491
9492 C<quadkind>, C<quadtype>
9493
9494 =item r
9495
9496 C<randbits>, C<randfunc>, C<randseedtype>, C<ranlib>, C<rd_nodata>,
9497 C<revision>, C<rm>, C<rmail>, C<run>, C<runnm>
9498
9499 =item s
9500
9501 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
9502 C<selectminbits>, C<selecttype>, C<sendmail>, C<sh>, C<shar>, C<sharpbang>,
9503 C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>, C<sig_count>,
9504 C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>, C<sig_size>,
9505 C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>, C<sitebinexp>,
9506 C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
9507 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
9508 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
9509 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
9510 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
9511 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<src>, C<sSCNfldbl>, C<ssizetype>,
9512 C<startperl>, C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>,
9513 C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>,
9514 C<stdio_stream_array>, C<strings>, C<submit>, C<subversion>, C<sysman>
9515
9516 =item t
9517
9518 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
9519 C<timetype>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>
9520
9521 =item u
9522
9523 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
9524 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
9525 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
9526 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<useithreads>,
9527 C<uselargefiles>, C<uselongdouble>, C<usemorebits>, C<usemultiplicity>,
9528 C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>, C<useposix>,
9529 C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>, C<usethreads>,
9530 C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
9531 C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
9532
9533 =item v
9534
9535 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
9536 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
9537 C<vendorprefixexp>, C<version>, C<version_patchlevel_string>,
9538 C<versiononly>, C<vi>, C<voidflags>
9539
9540 =item x
9541
9542 C<xlibpth>, C<xs_apiversion>
9543
9544 =item y
9545
9546 C<yacc>, C<yaccflags>
9547
9548 =item z
9549
9550 C<zcat>, C<zip>
9551
9552 =back
9553
9554 =item NOTE
9555
9556 =back
9557
9558 =head2 Cwd - get pathname of current working directory
9559
9560 =over 4
9561
9562 =item SYNOPSIS
9563
9564 =item DESCRIPTION
9565
9566 =over 4
9567
9568 =item getcwd and friends
9569
9570 getcwd, cwd, fastcwd, fastgetcwd
9571
9572 =item abs_path and friends
9573
9574 abs_path, realpath, fast_abs_path
9575
9576 =item $ENV{PWD}
9577
9578 =back
9579
9580 =item NOTES
9581
9582 =item SEE ALSO
9583
9584 =back
9585
9586 =head2 DB - programmatic interface to the Perl debugging API (draft,
9587 subject to
9588 change)
9589
9590 =over 4
9591
9592 =item SYNOPSIS
9593
9594 =item DESCRIPTION
9595
9596 =over 4
9597
9598 =item Global Variables
9599
9600  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
9601 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
9602 $DB::lineno
9603
9604 =item API Methods
9605
9606 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
9607 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
9608
9609 =item Client Callback Methods
9610
9611 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
9612 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
9613 CLIENT->output(LIST)
9614
9615 =back
9616
9617 =item BUGS
9618
9619 =item AUTHOR
9620
9621 =back
9622
9623 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
9624
9625 =over 4
9626
9627 =item SYNOPSIS
9628
9629 =item DESCRIPTION
9630
9631 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
9632
9633 =over 4
9634
9635 =item Using DB_File with Berkeley DB version 2 or greater
9636
9637 =item Interface to Berkeley DB
9638
9639 =item Opening a Berkeley DB Database File
9640
9641 =item Default Parameters
9642
9643 =item In Memory Databases
9644
9645 =back
9646
9647 =item DB_HASH
9648
9649 =over 4
9650
9651 =item A Simple Example
9652
9653 =back
9654
9655 =item DB_BTREE
9656
9657 =over 4
9658
9659 =item Changing the BTREE sort order
9660
9661 =item Handling Duplicate Keys 
9662
9663 =item The get_dup() Method
9664
9665 =item The find_dup() Method
9666
9667 =item The del_dup() Method
9668
9669 =item Matching Partial Keys 
9670
9671 =back
9672
9673 =item DB_RECNO
9674
9675 =over 4
9676
9677 =item The 'bval' Option
9678
9679 =item A Simple Example
9680
9681 =item Extra RECNO Methods
9682
9683 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
9684 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
9685 length, elements);>
9686
9687 =item Another Example
9688
9689 =back
9690
9691 =item THE API INTERFACE
9692
9693 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
9694 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
9695 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
9696 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
9697
9698 =item DBM FILTERS
9699
9700 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
9701 B<filter_fetch_value>
9702
9703 =over 4
9704
9705 =item The Filter
9706
9707 =item An Example -- the NULL termination problem.
9708
9709 =item Another Example -- Key is a C int.
9710
9711 =back
9712
9713 =item HINTS AND TIPS 
9714
9715 =over 4
9716
9717 =item Locking: The Trouble with fd
9718
9719 =item Safe ways to lock a database
9720
9721 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
9722
9723 =item Sharing Databases With C Applications
9724
9725 =item The untie() Gotcha
9726
9727 =back
9728
9729 =item COMMON QUESTIONS
9730
9731 =over 4
9732
9733 =item Why is there Perl source in my database?
9734
9735 =item How do I store complex data structures with DB_File?
9736
9737 =item What does "Invalid Argument" mean?
9738
9739 =item What does "Bareword 'DB_File' not allowed" mean? 
9740
9741 =back
9742
9743 =item REFERENCES
9744
9745 =item HISTORY
9746
9747 =item BUGS
9748
9749 =item AVAILABILITY
9750
9751 =item COPYRIGHT
9752
9753 =item SEE ALSO
9754
9755 =item AUTHOR
9756
9757 =back
9758
9759 =head2 Data::Dumper - stringified perl data structures, suitable for both
9760 printing and C<eval>
9761
9762 =over 4
9763
9764 =item SYNOPSIS
9765
9766 =item DESCRIPTION
9767
9768 =over 4
9769
9770 =item Methods
9771
9772 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
9773 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
9774 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
9775 I<$OBJ>->Reset
9776
9777 =item Functions
9778
9779 Dumper(I<LIST>)
9780
9781 =item Configuration Variables or Methods
9782
9783 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
9784 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
9785 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
9786 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
9787 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
9788 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
9789 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
9790 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
9791 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
9792 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
9793 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
9794 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>),
9795 $Data::Dumper::Useperl  I<or>  $I<OBJ>->Useperl(I<[NEWVAL]>),
9796 $Data::Dumper::Sortkeys  I<or>  $I<OBJ>->Sortkeys(I<[NEWVAL]>),
9797 $Data::Dumper::Deparse  I<or>  $I<OBJ>->Deparse(I<[NEWVAL]>)
9798
9799 =item Exports
9800
9801 Dumper
9802
9803 =back
9804
9805 =item EXAMPLES
9806
9807 =item BUGS
9808
9809 =item AUTHOR
9810
9811 =item VERSION
9812
9813 =item SEE ALSO
9814
9815 =back
9816
9817 =head2 Devel::DProf - a Perl code profiler
9818
9819 =over 4
9820
9821 =item SYNOPSIS
9822
9823 =item DESCRIPTION
9824
9825 =item PROFILE FORMAT
9826
9827 =item AUTOLOAD
9828
9829 =item ENVIRONMENT
9830
9831 =item BUGS
9832
9833 =item SEE ALSO
9834
9835 =back
9836
9837 =head2 Devel::Peek - A data debugging tool for the XS programmer
9838
9839 =over 4
9840
9841 =item SYNOPSIS
9842
9843 =item DESCRIPTION
9844
9845 =over 4
9846
9847 =item Runtime debugging
9848
9849 =item Memory footprint debugging
9850
9851 =back
9852
9853 =item EXAMPLES
9854
9855 =over 4
9856
9857 =item A simple scalar string
9858
9859 =item A simple scalar number
9860
9861 =item A simple scalar with an extra reference
9862
9863 =item A reference to a simple scalar
9864
9865 =item A reference to an array
9866
9867 =item A reference to a hash
9868
9869 =item Dumping a large array or hash
9870
9871 =item A reference to an SV which holds a C pointer
9872
9873 =item A reference to a subroutine
9874
9875 =back
9876
9877 =item EXPORTS
9878
9879 =item BUGS
9880
9881 =item AUTHOR
9882
9883 =item SEE ALSO
9884
9885 =back
9886
9887 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
9888
9889 =over 4
9890
9891 =item SYNOPSIS
9892
9893 =item DESCRIPTION
9894
9895 =back
9896
9897 =head2 Digest:: - Modules that calculate message digests
9898
9899 =over 4
9900
9901 =item SYNOPSIS
9902
9903 =item DESCRIPTION
9904
9905 I<binary>, I<hex>, I<base64>
9906
9907 =item OO INTERFACE
9908
9909 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
9910 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
9911 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
9912
9913 =item SEE ALSO
9914
9915 =item AUTHOR
9916
9917 =back
9918
9919 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
9920
9921 =over 4
9922
9923 =item SYNOPSIS
9924
9925 =item DESCRIPTION
9926
9927 =item FUNCTIONS
9928
9929 md5($data,...), md5_hex($data,...), md5_base64($data,...)
9930
9931 =item METHODS
9932
9933 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
9934 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
9935
9936 =item EXAMPLES
9937
9938 =item SEE ALSO
9939
9940 =item COPYRIGHT
9941
9942 =item AUTHORS
9943
9944 =back
9945
9946 =head2 DirHandle - supply object methods for directory handles
9947
9948 =over 4
9949
9950 =item SYNOPSIS
9951
9952 =item DESCRIPTION
9953
9954 =item NOTES
9955
9956 =back
9957
9958 =head2 Dumpvalue - provides screen dump of Perl data.
9959
9960 =over 4
9961
9962 =item SYNOPSIS
9963
9964 =item DESCRIPTION
9965
9966 =over 4
9967
9968 =item Creation
9969
9970 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
9971 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
9972 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
9973 stopDbSignal
9974
9975 =item Methods
9976
9977 dumpValue, dumpValues, dumpvars, set_quote, set_unctrl, compactDump,
9978 veryCompact, set, get
9979
9980 =back
9981
9982 =back
9983
9984 =head2 DynaLoader - Dynamically load C libraries into Perl code
9985
9986 =over 4
9987
9988 =item SYNOPSIS
9989
9990 =item DESCRIPTION
9991
9992 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
9993 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
9994 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
9995 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
9996 bootstrap()
9997
9998 =item AUTHOR
9999
10000 =back
10001
10002 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
10003 Perl code
10004
10005 =over 4
10006
10007 =item SYNOPSIS
10008
10009 =item DESCRIPTION
10010
10011 =item AUTHOR
10012
10013 =back
10014
10015 =head2 Encode - character encodings
10016
10017 =over 4
10018
10019 =item SYNOPSIS
10020
10021 =item DESCRIPTION
10022
10023 =over 4
10024
10025 =item TERMINOLOGY
10026
10027 =back
10028
10029 =item ENCODINGS
10030
10031 =over 4
10032
10033 =item Characteristics of an Encoding
10034
10035 =item Types of Encodings
10036
10037 Fixed length 8-bit (or less) encodings, Fixed length 16-bit encodings,
10038 Fixed length 32-bit encodings, Multi-byte encodings, "Escape" encodings
10039
10040 =item Specifying Encodings
10041
10042 1. By name, 2. As an object
10043
10044 =item Encoding Names
10045
10046 The MIME name as defined in IETF RFCs, The name in the IANA registry, The
10047 name used by the organization that defined it
10048
10049 =back
10050
10051 =item PERL ENCODING API
10052
10053 =over 4
10054
10055 =item Generic Encoding Interface
10056
10057 =item Handling Malformed Data
10058
10059 Scheme 1, Scheme 2, Other Schemes
10060
10061 =item UTF-8 / utf8
10062
10063 =item Other Encodings of Unicode
10064
10065 =item Listing available encodings
10066
10067 =item Defining Aliases
10068
10069 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
10070 reference, e.g.:
10071
10072 =item Defining Encodings
10073
10074 =back
10075
10076 =item Encoding and IO
10077
10078 =item Encoding How to ...
10079
10080 IO with mixed content (faking iso-2020-*), MIME's Content-Length:, UTF-8
10081 strings in binary data, Perl/Encode wrappers on non-Unicode XS modules
10082
10083 =item Messing with Perl's Internals
10084
10085 is_utf8(STRING [, CHECK]), valid_utf8(STRING)
10086
10087 =item IMPLEMENTATION CLASSES
10088
10089 -E<gt>name, -E<gt>new_sequence, -E<gt>encode($string,$check),
10090 -E<gt>decode($octets,$check)
10091
10092 =over 4
10093
10094 =item Compiled Encodings
10095
10096 .enc, .ucm, .ucm, .c, .xs, ascii and iso-8859-*, IBM-1047 and two other
10097 variants of EBCDIC, symbol and dingbats as used by Tk on X11
10098
10099 =back
10100
10101 =item SEE ALSO
10102
10103 =back
10104
10105 =head2 Encode::EncodeFormat, EncodeFormat - the format of encoding tables
10106 of the Encode extension
10107
10108 =over 4
10109
10110 =item DESCRIPTION
10111
10112 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
10113
10114 =item KEYWORDS
10115
10116 =item COPYRIGHT
10117
10118 =back
10119
10120 =head2 Encode::Tcl - Tcl encodings
10121
10122 =head2 EncodeFormat - the format of encoding tables of the Encode extension
10123
10124 =over 4
10125
10126 =item DESCRIPTION
10127
10128 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
10129
10130 =item KEYWORDS
10131
10132 =item COPYRIGHT
10133
10134 =back
10135
10136 =head2 English - use nice English (or awk) names for ugly punctuation
10137 variables
10138
10139 =over 4
10140
10141 =item SYNOPSIS
10142
10143 =item DESCRIPTION
10144
10145 =item PERFORMANCE
10146
10147 =back
10148
10149 =head2 Env - perl module that imports environment variables as scalars or
10150 arrays
10151
10152 =over 4
10153
10154 =item SYNOPSIS
10155
10156 =item DESCRIPTION
10157
10158 =item LIMITATIONS
10159
10160 =item AUTHOR
10161
10162 =back
10163
10164 =head2 Errno - System errno constants
10165
10166 =over 4
10167
10168 =item SYNOPSIS
10169
10170 =item DESCRIPTION
10171
10172 =item CAVEATS
10173
10174 =item AUTHOR
10175
10176 =item COPYRIGHT
10177
10178 =back
10179
10180 =head2 Exporter - Implements default import method for modules
10181
10182 =over 4
10183
10184 =item SYNOPSIS
10185
10186 =item DESCRIPTION
10187
10188 =over 4
10189
10190 =item How to Export
10191
10192 =item Selecting What To Export
10193
10194 =item Specialised Import Lists
10195
10196 =item Exporting without using Export's import method
10197
10198 =item Module Version Checking
10199
10200 =item Managing Unknown Symbols
10201
10202 =item Tag Handling Utility Functions
10203
10204 =back
10205
10206 =back
10207
10208 =head2 Exporter::Heavy - Exporter guts
10209
10210 =over 4
10211
10212 =item SYNOPIS
10213
10214 =item DESCRIPTION
10215
10216 =back
10217
10218 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
10219 Makefiles etc.
10220
10221 =over 4
10222
10223 =item SYNOPSIS
10224
10225 =item DESCRIPTION
10226
10227 =back
10228
10229 cat
10230
10231 eqtime src dst
10232
10233 rm_rf files...
10234
10235 rm_f files...
10236
10237 touch files ..
10238
10239 mv source... destination
10240
10241 cp source... destination
10242
10243 chmod mode files..
10244
10245 mkpath directory..
10246
10247 test_f file
10248
10249 =over 4
10250
10251 =item BUGS
10252
10253 =item SEE ALSO 
10254
10255 =item AUTHOR
10256
10257 =back
10258
10259 =head2 ExtUtils::Constant - generate XS code to import C header constants
10260
10261 =over 4
10262
10263 =item SYNOPSIS
10264
10265 =item DESCRIPTION
10266
10267 =item USAGE
10268
10269 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
10270
10271 =item FUNCTIONS
10272
10273 =back
10274
10275 C_stringify NAME
10276
10277 constant_types
10278
10279 memEQ_clause NAME, CHECKED_AT, INDENT
10280
10281 assign INDENT, TYPE, PRE, POST, VALUE..
10282
10283 return_clause
10284
10285 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
10286
10287 params WHAT
10288
10289 dump_names
10290
10291 dogfood
10292
10293 C_constant, name, type, value, macro, default, pre, post, def_pre =item
10294 def_post
10295
10296 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
10297
10298 autoload PACKAGE, VERSION, AUTOLOADER
10299
10300 WriteMakefileSnippet
10301
10302 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
10303 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
10304
10305 =over 4
10306
10307 =item AUTHOR
10308
10309 =back
10310
10311 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
10312
10313 =over 4
10314
10315 =item SYNOPSIS
10316
10317 =item DESCRIPTION
10318
10319 =item @EXPORT
10320
10321 =item FUNCTIONS
10322
10323 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
10324 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
10325
10326 =item EXAMPLES
10327
10328 =item SEE ALSO
10329
10330 =item AUTHOR
10331
10332 =back
10333
10334 =head2 ExtUtils::Install - install files from here to there
10335
10336 =over 4
10337
10338 =item SYNOPSIS
10339
10340 =item DESCRIPTION
10341
10342 =back
10343
10344 =head2 ExtUtils::Installed - Inventory management of installed modules
10345
10346 =over 4
10347
10348 =item SYNOPSIS
10349
10350 =item DESCRIPTION
10351
10352 =item USAGE
10353
10354 =item FUNCTIONS
10355
10356 new(), modules(), files(), directories(), directory_tree(), validate(),
10357 packlist(), version()
10358
10359 =item EXAMPLE
10360
10361 =item AUTHOR
10362
10363 =back
10364
10365 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
10366
10367 =over 4
10368
10369 =item SYNOPSIS
10370
10371 =item DESCRIPTION
10372
10373 For static extensions, For dynamic extensions, For dynamic extensions
10374
10375 =over 4
10376
10377 =item EXTRALIBS
10378
10379 =item LDLOADLIBS and LD_RUN_PATH
10380
10381 =item BSLOADLIBS
10382
10383 =back
10384
10385 =item PORTABILITY
10386
10387 =over 4
10388
10389 =item VMS implementation
10390
10391 =item Win32 implementation
10392
10393 =back
10394
10395 =item SEE ALSO
10396
10397 =back
10398
10399 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
10400 ExtUtils::MakeMaker
10401
10402 =over 4
10403
10404 =item SYNOPSIS
10405
10406 =item DESCRIPTION
10407
10408 canonpath, cflags, manifypods, perl_archive
10409
10410 =back
10411
10412 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
10413 ExtUtils::MakeMaker
10414
10415 =over 4
10416
10417 =item SYNOPSIS
10418
10419 =item DESCRIPTION
10420
10421 =back
10422
10423 catfile
10424
10425 constants (o)
10426
10427 static_lib (o)
10428
10429 dynamic_bs (o)
10430
10431 dynamic_lib (o)
10432
10433 canonpath
10434
10435 perl_script
10436
10437 pm_to_blib
10438
10439 test_via_harness (o)
10440
10441 tool_autosplit (override)
10442
10443 tools_other (o)
10444
10445 xs_o (o)
10446
10447 top_targets (o)
10448
10449 htmlifypods (o)
10450
10451 manifypods (o)
10452
10453 dist_ci (o)
10454
10455 dist_core (o)
10456
10457 pasthru (o)
10458
10459 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
10460 ExtUtils::MakeMaker
10461
10462 =over 4
10463
10464 =item SYNOPSIS
10465
10466 =item DESCRIPTION
10467
10468 =item METHODS
10469
10470 =back
10471
10472 perl_archive_after
10473
10474 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
10475
10476 =over 4
10477
10478 =item SYNOPSIS
10479
10480 =item DESCRIPTION
10481
10482 =item METHODS
10483
10484 =over 4
10485
10486 =item Preloaded methods
10487
10488 canonpath
10489
10490 =back
10491
10492 =back
10493
10494 catdir
10495
10496 catfile
10497
10498 curdir
10499
10500 rootdir
10501
10502 updir
10503
10504 =over 4
10505
10506 =item SelfLoaded methods
10507
10508 c_o (o)
10509
10510 =back
10511
10512 cflags (o)
10513
10514 clean (o)
10515
10516 const_cccmd (o)
10517
10518 const_config (o)
10519
10520 const_loadlibs (o)
10521
10522 constants (o)
10523
10524 depend (o)
10525
10526 dir_target (o)
10527
10528 dist (o)
10529
10530 dist_basics (o)
10531
10532 dist_ci (o)
10533
10534 dist_core (o)
10535
10536 dist_dir (o)
10537
10538 dist_test (o)
10539
10540 dlsyms (o)
10541
10542 dynamic (o)
10543
10544 dynamic_bs (o)
10545
10546 dynamic_lib (o)
10547
10548 exescan
10549
10550 extliblist
10551
10552 file_name_is_absolute
10553
10554 find_perl
10555
10556 =over 4
10557
10558 =item Methods to actually produce chunks of text for the Makefile
10559
10560 fixin
10561
10562 =back
10563
10564 force (o)
10565
10566 guess_name
10567
10568 has_link_code
10569
10570 htmlifypods (o)
10571
10572 init_dirscan
10573
10574 init_main
10575
10576 init_others
10577
10578 install (o)
10579
10580 installbin (o)
10581
10582 libscan (o)
10583
10584 linkext (o)
10585
10586 lsdir
10587
10588 macro (o)
10589
10590 makeaperl (o)
10591
10592 makefile (o)
10593
10594 manifypods (o)
10595
10596 maybe_command
10597
10598 maybe_command_in_dirs
10599
10600 needs_linking (o)
10601
10602 nicetext
10603
10604 parse_version
10605
10606 parse_abstract
10607
10608 pasthru (o)
10609
10610 path
10611
10612 perl_script
10613
10614 perldepend (o)
10615
10616 ppd
10617
10618 perm_rw (o)
10619
10620 perm_rwx (o)
10621
10622 pm_to_blib
10623
10624 post_constants (o)
10625
10626 post_initialize (o)
10627
10628 postamble (o)
10629
10630 prefixify
10631
10632 processPL (o)
10633
10634 quote_paren
10635
10636 realclean (o)
10637
10638 replace_manpage_separator
10639
10640 static (o)
10641
10642 static_lib (o)
10643
10644 staticmake (o)
10645
10646 subdir_x (o)
10647
10648 subdirs (o)
10649
10650 test (o)
10651
10652 test_via_harness (o)
10653
10654 test_via_script (o)
10655
10656 tool_autosplit (o)
10657
10658 tools_other (o)
10659
10660 tool_xsubpp (o)
10661
10662 top_targets (o)
10663
10664 writedoc
10665
10666 xs_c (o)
10667
10668 xs_cpp (o)
10669
10670 xs_o (o)
10671
10672 perl_archive
10673
10674 perl_archive_after
10675
10676 export_list
10677
10678 =over 4
10679
10680 =item SEE ALSO
10681
10682 =back
10683
10684 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
10685 ExtUtils::MakeMaker
10686
10687 =over 4
10688
10689 =item SYNOPSIS
10690
10691 =item DESCRIPTION
10692
10693 =over 4
10694
10695 =item Methods always loaded
10696
10697 wraplist
10698
10699 =back
10700
10701 =back
10702
10703 rootdir (override)
10704
10705 =over 4
10706
10707 =item SelfLoaded methods
10708
10709 guess_name (override)
10710
10711 =back
10712
10713 find_perl (override)
10714
10715 path (override)
10716
10717 maybe_command (override)
10718
10719 maybe_command_in_dirs (override)
10720
10721 perl_script (override)
10722
10723 file_name_is_absolute (override)
10724
10725 replace_manpage_separator
10726
10727 init_others (override)
10728
10729 constants (override)
10730
10731 cflags (override)
10732
10733 const_cccmd (override)
10734
10735 pm_to_blib (override)
10736
10737 tool_autosplit (override)
10738
10739 tool_sxubpp (override)
10740
10741 xsubpp_version (override)
10742
10743 tools_other (override)
10744
10745 dist (override)
10746
10747 c_o (override)
10748
10749 xs_c (override)
10750
10751 xs_o (override)
10752
10753 top_targets (override)
10754
10755 dlsyms (override)
10756
10757 dynamic_lib (override)
10758
10759 dynamic_bs (override)
10760
10761 static_lib (override)
10762
10763 manifypods (override)
10764
10765 processPL (override)
10766
10767 installbin (override)
10768
10769 subdir_x (override)
10770
10771 clean (override)
10772
10773 realclean (override)
10774
10775 dist_basics (override)
10776
10777 dist_core (override)
10778
10779 dist_dir (override)
10780
10781 dist_test (override)
10782
10783 install (override)
10784
10785 perldepend (override)
10786
10787 makefile (override)
10788
10789 test (override)
10790
10791 test_via_harness (override)
10792
10793 test_via_script (override)
10794
10795 makeaperl (override)
10796
10797 nicetext (override)
10798
10799 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
10800 ExtUtils::MakeMaker
10801
10802 =over 4
10803
10804 =item SYNOPSIS
10805
10806 =item DESCRIPTION
10807
10808 =back
10809
10810 catfile
10811
10812 constants (o)
10813
10814 static_lib (o)
10815
10816 dynamic_bs (o)
10817
10818 dynamic_lib (o)
10819
10820 canonpath
10821
10822 perl_script
10823
10824 pm_to_blib
10825
10826 test_via_harness (o)
10827
10828 tool_autosplit (override)
10829
10830 tools_other (o)
10831
10832 xs_o (o)
10833
10834 top_targets (o)
10835
10836 htmlifypods (o)
10837
10838 manifypods (o)
10839
10840 dist_ci (o)
10841
10842 dist_core (o)
10843
10844 pasthru (o)
10845
10846 =head2 ExtUtils::MakeMaker - create an extension Makefile
10847
10848 =over 4
10849
10850 =item SYNOPSIS
10851
10852 =item DESCRIPTION
10853
10854 =over 4
10855
10856 =item How To Write A Makefile.PL
10857
10858 =item Default Makefile Behaviour
10859
10860 =item make test
10861
10862 =item make testdb
10863
10864 =item make install
10865
10866 =item PREFIX and LIB attribute
10867
10868 =item AFS users
10869
10870 =item Static Linking of a new Perl Binary
10871
10872 =item Determination of Perl Library and Installation Locations
10873
10874 =item Which architecture dependent directory?
10875
10876 =item Using Attributes and Parameters
10877
10878 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
10879 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
10880 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FUNCLIST, H, HTMLLIBPODS,
10881 HTMLSCRIPTPODS, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
10882 INSTALLDIRS, INSTALLHTMLPRIVLIBDIR, INSTALLHTMLSCRIPTDIR,
10883 INSTALLHTMLSITELIBDIR, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
10884 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITELIB, INST_ARCHLIB, INST_BIN,
10885 INST_EXE, INST_HTMLLIBDIR, INST_HTMLSCRIPTDIR, INST_LIB, INST_MAN1DIR,
10886 INST_MAN3DIR, INST_SCRIPT, LDFROM, LIB, LIBPERL_A, LIBS, LINKTYPE,
10887 MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
10888 NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE, PERL, PERL_CORE,
10889 PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERLRUN, PERM_RW,
10890 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
10891 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_PM, PREREQ_FATAL, PREREQ_PRINT,
10892 PRINT_PREREQ, SKIP, TEST_LIBS, VERSION, VERSION_FROM, XS, XSOPT,
10893 XSPROTOARG, XS_VERSION
10894
10895 =item Additional lowercase attributes
10896
10897 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
10898 tool_autosplit
10899
10900 =item Overriding MakeMaker Methods
10901
10902 =item Hintsfile support
10903
10904 =item Distribution Support
10905
10906    make distcheck,    make skipcheck,    make distclean,    make manifest, 
10907   make distdir,    make tardist,    make dist,    make uutardist,    make
10908 shdist,    make zipdist,    make ci
10909
10910 =item Disabling an extension
10911
10912 =back
10913
10914 =item ENVIRONMENT
10915
10916 PERL_MM_OPT, PERL_MM_USE_DEFAULT
10917
10918 =item SEE ALSO
10919
10920 =item AUTHORS
10921
10922 =back
10923
10924 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
10925
10926 =over 4
10927
10928 =item SYNOPSIS
10929
10930 =item DESCRIPTION
10931
10932 =item MANIFEST.SKIP
10933
10934 =item EXPORT_OK
10935
10936 =item GLOBAL VARIABLES
10937
10938 =item DIAGNOSTICS
10939
10940 C<Not in MANIFEST:> I<file>, C<No such file:> I<file>, C<MANIFEST:> I<$!>,
10941 C<Added to MANIFEST:> I<file>
10942
10943 =item ENVIRONMENT
10944
10945 B<PERL_MM_MANIFEST_DEBUG>
10946
10947 =item SEE ALSO
10948
10949 =item AUTHOR
10950
10951 =back
10952
10953 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
10954
10955 =over 4
10956
10957 =item SYNOPSIS
10958
10959 =item DESCRIPTION
10960
10961 =item SEE ALSO
10962
10963 =back
10964
10965 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
10966
10967 =over 4
10968
10969 =item SYNOPSIS
10970
10971 =item DESCRIPTION
10972
10973 =back
10974
10975 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
10976 extension
10977
10978 =over 4
10979
10980 =item SYNOPSIS
10981
10982 =item DESCRIPTION
10983
10984 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
10985
10986 =item AUTHOR
10987
10988 =item REVISION
10989
10990 =back
10991
10992 =head2 ExtUtils::Packlist - manage .packlist files
10993
10994 =over 4
10995
10996 =item SYNOPSIS
10997
10998 =item DESCRIPTION
10999
11000 =item USAGE
11001
11002 =item FUNCTIONS
11003
11004 new(), read(), write(), validate(), packlist_file()
11005
11006 =item EXAMPLE
11007
11008 =item AUTHOR
11009
11010 =back
11011
11012 =head2 ExtUtils::testlib - add blib/* directories to @INC
11013
11014 =over 4
11015
11016 =item SYNOPSIS
11017
11018 =item DESCRIPTION
11019
11020 =back
11021
11022 =head2 Fatal - replace functions with equivalents which succeed or die
11023
11024 =over 4
11025
11026 =item SYNOPSIS
11027
11028 =item DESCRIPTION
11029
11030 =item AUTHOR
11031
11032 =back
11033
11034 =head2 Fcntl - load the C Fcntl.h defines
11035
11036 =over 4
11037
11038 =item SYNOPSIS
11039
11040 =item DESCRIPTION
11041
11042 =item NOTE
11043
11044 =item EXPORTED SYMBOLS
11045
11046 =back
11047
11048 =head2 File::Basename, fileparse - split a pathname into pieces
11049
11050 =over 4
11051
11052 =item SYNOPSIS
11053
11054 =item DESCRIPTION
11055
11056 fileparse_set_fstype, fileparse
11057
11058 =item EXAMPLES
11059
11060 C<basename>, C<dirname>
11061
11062 =back
11063
11064 =head2 File::CheckTree, validate - run many filetest checks on a tree
11065
11066 =over 4
11067
11068 =item SYNOPSIS
11069
11070 =item DESCRIPTION
11071
11072 =back
11073
11074 =head2 File::Compare - Compare files or filehandles
11075
11076 =over 4
11077
11078 =item SYNOPSIS
11079
11080 =item DESCRIPTION
11081
11082 =item RETURN
11083
11084 =item AUTHOR
11085
11086 =back
11087
11088 =head2 File::Copy - Copy files or filehandles
11089
11090 =over 4
11091
11092 =item SYNOPSIS
11093
11094 =item DESCRIPTION
11095
11096 =over 4
11097
11098 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
11099
11100 rmscopy($from,$to[,$date_flag])
11101
11102 =back
11103
11104 =item RETURN
11105
11106 =item NOTES
11107
11108 =item AUTHOR
11109
11110 =back
11111
11112 =head2 File::DosGlob - DOS like globbing and then some
11113
11114 =over 4
11115
11116 =item SYNOPSIS
11117
11118 =item DESCRIPTION
11119
11120 =item NOTES
11121
11122 =item EXPORTS (by request only)
11123
11124 =item BUGS
11125
11126 =item AUTHOR
11127
11128 =item HISTORY
11129
11130 =item SEE ALSO
11131
11132 =back
11133
11134 =head2 File::Find, find - traverse a file tree
11135
11136 =over 4
11137
11138 =item SYNOPSIS
11139
11140 =item DESCRIPTION
11141
11142 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
11143 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
11144 C<untaint>, C<untaint_pattern>, C<untaint_skip>
11145
11146 =item WARNINGS
11147
11148 =item CAVEAT
11149
11150 $dont_use_nlink, symlinks
11151
11152 =item NOTES
11153
11154 =item HISTORY
11155
11156 =back
11157
11158 =head2 File::Glob - Perl extension for BSD glob routine
11159
11160 =over 4
11161
11162 =item SYNOPSIS
11163
11164 =item DESCRIPTION
11165
11166 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
11167 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
11168 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
11169
11170 =item DIAGNOSTICS
11171
11172 C<GLOB_NOSPACE>, C<GLOB_ABEND>
11173
11174 =item NOTES
11175
11176 =item AUTHOR
11177
11178 =back
11179
11180 =head2 File::Path - create or remove directory trees
11181
11182 =over 4
11183
11184 =item SYNOPSIS
11185
11186 =item DESCRIPTION
11187
11188 =item AUTHORS
11189
11190 =back
11191
11192 =head2 File::Spec - portably perform operations on file names
11193
11194 =over 4
11195
11196 =item SYNOPSIS
11197
11198 =item DESCRIPTION
11199
11200 =item METHODS
11201
11202 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
11203 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
11204 splitdir, catpath(), abs2rel, rel2abs()
11205
11206 =item SEE ALSO
11207
11208 =item AUTHORS
11209
11210 =back
11211
11212 =head2 File::Spec::Epoc - methods for Epoc file specs
11213
11214 =over 4
11215
11216 =item SYNOPSIS
11217
11218 =item DESCRIPTION
11219
11220 devnull
11221
11222 =back
11223
11224 tmpdir
11225
11226 path
11227
11228 canonpath()
11229
11230 splitpath
11231
11232 splitdir
11233
11234 catpath
11235
11236 abs2rel
11237
11238 rel2abs()
11239
11240 =over 4
11241
11242 =item SEE ALSO
11243
11244 =back
11245
11246 =head2 File::Spec::Functions - portably perform operations on file names
11247
11248 =over 4
11249
11250 =item SYNOPSIS
11251
11252 =item DESCRIPTION
11253
11254 =over 4
11255
11256 =item Exports
11257
11258 =back
11259
11260 =item SEE ALSO
11261
11262 =back
11263
11264 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
11265
11266 =over 4
11267
11268 =item SYNOPSIS
11269
11270 =item DESCRIPTION
11271
11272 =item METHODS
11273
11274 canonpath
11275
11276 =back
11277
11278 catdir()
11279
11280 catfile
11281
11282 curdir
11283
11284 devnull
11285
11286 rootdir
11287
11288 tmpdir
11289
11290 updir
11291
11292 file_name_is_absolute
11293
11294 path
11295
11296 splitpath
11297
11298 splitdir
11299
11300 catpath
11301
11302 abs2rel
11303
11304 rel2abs
11305
11306 =over 4
11307
11308 =item AUTHORS
11309
11310 =item SEE ALSO
11311
11312 =back
11313
11314 =head2 File::Spec::OS2 - methods for OS/2 file specs
11315
11316 =over 4
11317
11318 =item SYNOPSIS
11319
11320 =item DESCRIPTION
11321
11322 =back
11323
11324 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
11325 modules
11326
11327 =over 4
11328
11329 =item SYNOPSIS
11330
11331 =item DESCRIPTION
11332
11333 =item METHODS
11334
11335 canonpath()
11336
11337 =back
11338
11339 catdir()
11340
11341 catfile
11342
11343 curdir
11344
11345 devnull
11346
11347 rootdir
11348
11349 tmpdir
11350
11351 updir
11352
11353 no_upwards
11354
11355 case_tolerant
11356
11357 file_name_is_absolute
11358
11359 path
11360
11361 join
11362
11363 splitpath
11364
11365 splitdir
11366
11367 catpath()
11368
11369 abs2rel
11370
11371 rel2abs()
11372
11373 =over 4
11374
11375 =item SEE ALSO
11376
11377 =back
11378
11379 =head2 File::Spec::VMS - methods for VMS file specs
11380
11381 =over 4
11382
11383 =item SYNOPSIS
11384
11385 =item DESCRIPTION
11386
11387 eliminate_macros
11388
11389 =back
11390
11391 fixpath
11392
11393 =over 4
11394
11395 =item Methods always loaded
11396
11397 canonpath (override)
11398
11399 =back
11400
11401 catdir
11402
11403 catfile
11404
11405 curdir (override)
11406
11407 devnull (override)
11408
11409 rootdir (override)
11410
11411 tmpdir (override)
11412
11413 updir (override)
11414
11415 case_tolerant (override)
11416
11417 path (override)
11418
11419 file_name_is_absolute (override)
11420
11421 splitpath (override)
11422
11423 splitdir (override)
11424
11425 catpath (override)
11426
11427 abs2rel (override)
11428
11429 rel2abs (override)
11430
11431 =over 4
11432
11433 =item SEE ALSO
11434
11435 =back
11436
11437 =head2 File::Spec::Win32 - methods for Win32 file specs
11438
11439 =over 4
11440
11441 =item SYNOPSIS
11442
11443 =item DESCRIPTION
11444
11445 devnull
11446
11447 =back
11448
11449 tmpdir
11450
11451 catfile
11452
11453 canonpath
11454
11455 splitpath
11456
11457 splitdir
11458
11459 catpath
11460
11461 =over 4
11462
11463 =item SEE ALSO
11464
11465 =back
11466
11467 =head2 File::Temp - return name and handle of a temporary file safely
11468
11469 =over 4
11470
11471 =item PORTABILITY
11472
11473 =item SYNOPSIS
11474
11475 =item DESCRIPTION
11476
11477 =back
11478
11479 =over 4
11480
11481 =item FUNCTIONS
11482
11483 B<tempfile>
11484
11485 =back
11486
11487 B<tempdir>
11488
11489 =over 4
11490
11491 =item MKTEMP FUNCTIONS
11492
11493 B<mkstemp>
11494
11495 =back
11496
11497 B<mkstemps>
11498
11499 B<mkdtemp>
11500
11501 B<mktemp>
11502
11503 =over 4
11504
11505 =item POSIX FUNCTIONS
11506
11507 B<tmpnam>
11508
11509 =back
11510
11511 B<tmpfile>
11512
11513 =over 4
11514
11515 =item ADDITIONAL FUNCTIONS
11516
11517 B<tempnam>
11518
11519 =back
11520
11521 =over 4
11522
11523 =item UTILITY FUNCTIONS
11524
11525 B<unlink0>
11526
11527 =back
11528
11529 =over 4
11530
11531 =item PACKAGE VARIABLES
11532
11533 B<safe_level>, STANDARD, MEDIUM, HIGH
11534
11535 =back
11536
11537 TopSystemUID
11538
11539 =over 4
11540
11541 =item WARNING
11542
11543 =over 4
11544
11545 =item Temporary files and NFS
11546
11547 =back
11548
11549 =item HISTORY
11550
11551 =item SEE ALSO
11552
11553 =item AUTHOR
11554
11555 =back
11556
11557 =head2 File::stat - by-name interface to Perl's built-in stat() functions
11558
11559 =over 4
11560
11561 =item SYNOPSIS
11562
11563 =item DESCRIPTION
11564
11565 =item NOTE
11566
11567 =item AUTHOR
11568
11569 =back
11570
11571 =head2 FileCache - keep more files open than the system permits
11572
11573 =over 4
11574
11575 =item SYNOPSIS
11576
11577 =item DESCRIPTION
11578
11579 =item BUGS
11580
11581 =back
11582
11583 =head2 FileHandle - supply object methods for filehandles
11584
11585 =over 4
11586
11587 =item SYNOPSIS
11588
11589 =item DESCRIPTION
11590
11591 $fh->print, $fh->printf, $fh->getline, $fh->getlines
11592
11593 =item SEE ALSO
11594
11595 =back
11596
11597 =head2 Filter::Simple - Simplified source filtering
11598
11599 =over 4
11600
11601 =item SYNOPSIS
11602
11603 =item DESCRIPTION
11604
11605 =over 4
11606
11607 =item The Problem
11608
11609 =item A Solution
11610
11611 =item Disabling or changing <no> behaviour
11612
11613 =item All-in-one interface
11614
11615 =item Filtering only specific components of source code
11616
11617 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
11618 C<"all">
11619
11620 =item Filtering only the code parts of source code
11621
11622 Most source code ceases to be grammatically correct when it is broken up
11623 into the pieces between string literals and regexes. So the C<'code'>
11624 component filter behaves slightly differently from the other partial
11625 filters
11626 described in the previous section.
11627
11628 =item Using Filter::Simple and Exporter together
11629
11630 =item How it works
11631
11632 =back
11633
11634 =item AUTHOR
11635
11636 =item COPYRIGHT
11637
11638 =back
11639
11640 =head2 Filter::Util::Call - Perl Source Filter Utility Module
11641
11642 =over 4
11643
11644 =item SYNOPSIS
11645
11646 =item DESCRIPTION
11647
11648 =over 4
11649
11650 =item B<use Filter::Util::Call>
11651
11652 =item B<import()>
11653
11654 =item B<filter() and anonymous sub>
11655
11656 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
11657
11658 =back
11659
11660 =item EXAMPLES
11661
11662 =over 4
11663
11664 =item Example 1: A simple filter.
11665
11666 =item Example 2: Using the context
11667
11668 =item Example 3: Using the context within the filter
11669
11670 =item Example 4: Using filter_del
11671
11672 =back
11673
11674 =item Filter::Simple
11675
11676 =item AUTHOR
11677
11678 =item DATE
11679
11680 =back
11681
11682 =head2 FindBin - Locate directory of original perl script
11683
11684 =over 4
11685
11686 =item SYNOPSIS
11687
11688 =item DESCRIPTION
11689
11690 =item EXPORTABLE VARIABLES
11691
11692 =item KNOWN ISSUES
11693
11694 =item KNOWN BUGS
11695
11696 =item AUTHORS
11697
11698 =item COPYRIGHT
11699
11700 =back
11701
11702 =head2 GDBM_File - Perl5 access to the gdbm library.
11703
11704 =over 4
11705
11706 =item SYNOPSIS
11707
11708 =item DESCRIPTION
11709
11710 =item AVAILABILITY
11711
11712 =item BUGS
11713
11714 =item SEE ALSO
11715
11716 =back
11717
11718 =head2 Getopt::Long - Extended processing of command line options
11719
11720 =over 4
11721
11722 =item SYNOPSIS
11723
11724 =item DESCRIPTION
11725
11726 =item Command Line Options, an Introduction
11727
11728 =item Getting Started with Getopt::Long
11729
11730 =over 4
11731
11732 =item Simple options
11733
11734 =item A little bit less simple options
11735
11736 =item Mixing command line option with other arguments
11737
11738 =item Options with values
11739
11740 =item Options with multiple values
11741
11742 =item Options with hash values
11743
11744 =item User-defined subroutines to handle options
11745
11746 =item Options with multiple names
11747
11748 =item Case and abbreviations
11749
11750 =item Summary of Option Specifications
11751
11752 !, +, s, i, o, f, : I<type> [ I<desttype> ]
11753
11754 =back
11755
11756 =item Advanced Possibilities
11757
11758 =over 4
11759
11760 =item Object oriented interface
11761
11762 =item Documentation and help texts
11763
11764 =item Storing options in a hash
11765
11766 =item Bundling
11767
11768 =item The lonesome dash
11769
11770 =item Argument callback
11771
11772 =back
11773
11774 =item Configuring Getopt::Long
11775
11776 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
11777 require_order, permute, bundling (default: disabled), bundling_override
11778 (default: disabled), ignore_case  (default: enabled), ignore_case_always
11779 (default: disabled), pass_through (default: disabled), prefix,
11780 prefix_pattern, debug (default: disabled)
11781
11782 =item Return values and Errors
11783
11784 =item Legacy
11785
11786 =over 4
11787
11788 =item Default destinations
11789
11790 =item Alternative option starters
11791
11792 =item Configuration variables
11793
11794 =back
11795
11796 =item Trouble Shooting
11797
11798 =over 4
11799
11800 =item Warning: Ignoring '!' modifier for short option
11801
11802 =item GetOptions does not return a false result when an option is not
11803 supplied
11804
11805 =item GetOptions does not split the command line correctly
11806
11807 =item How do I put a "-?" option into a Getopt::Long?
11808
11809 =back
11810
11811 =item AUTHOR
11812
11813 =item COPYRIGHT AND DISCLAIMER
11814
11815 =back
11816
11817 =head2 Getopt::Std, getopt - Process single-character switches with switch
11818 clustering
11819
11820 =over 4
11821
11822 =item SYNOPSIS
11823
11824 =item DESCRIPTION
11825
11826 =back
11827
11828 =head2 I18N::Collate - compare 8-bit scalar data according to the current
11829 locale
11830
11831 =over 4
11832
11833 =item SYNOPSIS
11834
11835 =item DESCRIPTION
11836
11837 =back
11838
11839 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
11840 tags
11841
11842 =over 4
11843
11844 =item SYNOPSIS
11845
11846 =item DESCRIPTION
11847
11848 =back
11849
11850 the function is_language_tag($lang1)
11851
11852 the function extract_language_tags($whatever)
11853
11854 the function same_language_tag($lang1, $lang2)
11855
11856 the function similarity_language_tag($lang1, $lang2)
11857
11858 the function is_dialect_of($lang1, $lang2)
11859
11860 the function super_languages($lang1)
11861
11862 the function locale2language_tag($locale_identifier)
11863
11864 the function encode_language_tag($lang1)
11865
11866 the function alternate_language_tags($lang1)
11867
11868 the function @langs = panic_languages(@accept_languages)
11869
11870 =over 4
11871
11872 =item ABOUT LOWERCASING
11873
11874 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
11875
11876 =item SEE ALSO
11877
11878 =item COPYRIGHT
11879
11880 =item AUTHOR
11881
11882 =back
11883
11884 =head2 I18N::LangTags::List -- tags and names for human languages
11885
11886 =over 4
11887
11888 =item SYNOPSIS
11889
11890 =item DESCRIPTION
11891
11892 =item ABOUT LANGUAGE TAGS
11893
11894 =item LIST OF LANGUAGES
11895
11896 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {aa} :
11897 Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} : Afro-Asiatic (Other)],
11898 {aka} : Akan, {akk} : Akkadian, {sq} : Albanian, {ale} : Aleut, [{alg} :
11899 Algonquian languages], [{tut} : Altaic (Other)], {am} : Amharic, {i-ami} :
11900 Ami, [{apa} : Apache languages], {ar} : Arabic, {arc} : Aramaic, {arp} :
11901 Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy} : Armenian, [{art} :
11902 Artificial (Other)], {as} : Assamese, [{ath} : Athapascan languages],
11903 [{aus} : Australian languages], [{map} : Austronesian (Other)], {ava} :
11904 Avaric, {ae} : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani,
11905 {ban} : Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bam} :
11906 Bambara, [{bai} : Bamileke languages], {bad} : Banda, [{bnt} : Bantu
11907 (Other)], {bas} : Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak
11908 (Indonesia), {bej} : Beja, {be} : Belarusian, {bem} : Bemba, {bn} :
11909 Bengali, [{ber} : Berber (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} :
11910 Bikol, {bin} : Bini, {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} :
11911 Breton, {bug} : Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} :
11912 Buriat, {my} : Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan,
11913 [{cau} : Caucasian (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)],
11914 [{cai} : Central American Indian (Other)], {chg} : Chagatai, [{cmc} :
11915 Chamic languages], {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy}
11916 : Cheyenne, {chb} : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} :
11917 Chinook Jargon, {chp} : Chipewyan, {cho} : Choctaw, {cu} : Church Slavic,
11918 {chk} : Chuukese, {cv} : Chuvash, {cop} : Coptic, {kw} : Cornish, {co} :
11919 Corsican, {cre} : Cree, {mus} : Creek, [{cpe} : English-based Creoles and
11920 pidgins (Other)], [{cpf} : French-based Creoles and pidgins (Other)],
11921 [{cpp} : Portuguese-based Creoles and pidgins (Other)], [{crp} : Creoles
11922 and pidgins (Other)], {hr} : Croatian, [{cus} : Cushitic (Other)], {cs} :
11923 Czech, {dak} : Dakota, {da} : Danish, {day} : Dayak, {i-default} : Default
11924 (Fallthru) Language, {del} : Delaware, {din} : Dinka, {div} : Divehi, {doi}
11925 : Dogri, {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} :
11926 Dutch, {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha,
11927 {efi} : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite,
11928 {en} : English, {enm} : Old English (1100-1500), {ang} : Old English
11929 (ca.450-1100), {eo} : Esperanto, {et} : Estonian, {ewe} : Ewe, {ewo} :
11930 Ewondo, {fan} : Fang, {fat} : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} :
11931 Finnish, [{fiu} : Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm}
11932 : Middle French (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} :
11933 Frisian, {fur} : Friulian, {ful} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic,
11934 {gl} : Gallegan, {lug} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez,
11935 {ka} : Georgian, {de} : German, {gmh} : Middle High German (ca.1050-1500),
11936 {goh} : Old High German (ca.750-1050), [{gem} : Germanic (Other)], {gil} :
11937 Gilbertese, {gon} : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} :
11938 Grebo, {grc} : Ancient Greek, {el} : Modern Greek, {gn} : Guarani, {gu} :
11939 Gujarati, {gwi} : Gwich'in, {hai} : Haida, {ha} : Hausa, {haw} : Hawaiian,
11940 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
11941 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
11942 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {ibo} : Igbo, {ijo} : Ijo,
11943 {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European (Other)],
11944 {id} : Indonesian, {ia} : Interlingua (International Auxiliary Language
11945 Association), {ie} : Interlingue, {iu} : Inuktitut, {ik} : Inupiaq, [{ira}
11946 : Iranian (Other)], {ga} : Irish, {mga} : Middle Irish (900-1200), {sga} :
11947 Old Irish (to 900), [{iro} : Iroquoian languages], {it} : Italian, {ja} :
11948 Japanese, {jw} : Javanese, {jrb} : Judeo-Arabic, {jpr} : Judeo-Persian,
11949 {kab} : Kabyle, {kac} : Kachin, {kl} : Kalaallisut, {kam} : Kamba, {kn} :
11950 Kannada, {kau} : Kanuri, {kaa} : Kara-Kalpak, {kar} : Karen, {ks} :
11951 Kashmiri, {kaw} : Kawi, {kk} : Kazakh, {kha} : Khasi, {km} : Khmer, [{khi}
11952 : Khoisan (Other)], {kho} : Khotanese, {ki} : Kikuyu, {kmb} : Kimbundu,
11953 {rw} : Kinyarwanda, {ky} : Kirghiz, {i-klingon} : Klingon, {kv} : Komi,
11954 {kon} : Kongo, {kok} : Konkani, {ko} : Korean, {kos} : Kosraean, {kpe} :
11955 Kpelle, {kro} : Kru, {kj} : Kuanyama, {kum} : Kumyk, {ku} : Kurdish, {kru}
11956 : Kurukh, {kut} : Kutenai, {lad} : Ladino, {lah} : Lahnda, {lam} : Lamba,
11957 {lo} : Lao, {la} : Latin, {lv} : Latvian, {lb} : Letzeburgesch, {lez} :
11958 Lezghian, {ln} : Lingala, {lt} : Lithuanian, {nds} : Low German, {loz} :
11959 Lozi, {lub} : Luba-Katanga, {lua} : Luba-Lulua, {lui} : Luiseno, {lun} :
11960 Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai, {mk} : Macedonian,
11961 {mad} : Madurese, {mag} : Magahi, {mai} : Maithili, {mak} : Makasar, {mg} :
11962 Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} : Maltese, {mnc} : Manchu,
11963 {mdr} : Mandar, {man} : Mandingo, {mni} : Manipuri, [{mno} : Manobo
11964 languages], {gv} : Manx, {mi} : Maori, {mr} : Marathi, {chm} : Mari, {mh} :
11965 Marshall, {mwr} : Marwari, {mas} : Masai, [{myn} : Mayan languages], {men}
11966 : Mende, {mic} : Micmac, {min} : Minangkabau, {i-mingo} : Mingo, [{mis} :
11967 Miscellaneous languages], {moh} : Mohawk, {mo} : Moldavian, [{mkh} :
11968 Mon-Khmer (Other)], {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul}
11969 : Multiple languages], [{mun} : Munda languages], {nah} : Nahuatl, {na} :
11970 Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele, {ng} :
11971 Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
11972 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
11973 {non} : Old Norse, [{nai} : North American Indian], {se} : Northern Sami,
11974 {no} : Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub}
11975 : Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro,
11976 {nzi} : Nzima, {oc} : Occitan (post 1500), {oji} : Ojibwa, {or} : Oriya,
11977 {om} : Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
11978 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
11979 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
11980 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
11981 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
11982 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
11983 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
11984 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
11985 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
11986 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
11987 languages], {sam} : Samaritan Aramaic, [{smi} : Sami languages (Other)],
11988 {sm} : Samoan, {sad} : Sandawe, {sg} : Sango, {sa} : Sanskrit, {sat} :
11989 Santali, {sc} : Sardinian, {sas} : Sasak, {sco} : Scots, {sel} : Selkup,
11990 [{sem} : Semitic (Other)], {sr} : Serbian, {srr} : Serer, {shn} : Shan,
11991 {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign Languages, {bla} : Siksika,
11992 {sd} : Sindhi, {si} : Sinhalese, [{sit} : Sino-Tibetan (Other)], [{sio} :
11993 Siouan languages], {den} : Slave (Athapascan), [{sla} : Slavic (Other)],
11994 {sk} : Slovak, {sl} : Slovenian, {sog} : Sogdian, {so} : Somali, {son} :
11995 Songhai, {snk} : Soninke, {wen} : Sorbian languages, {nso} : Northern
11996 Sotho, {st} : Southern Sotho, [{sai} : South American Indian (Other)], {es}
11997 : Spanish, {suk} : Sukuma, {sux} : Sumerian, {su} : Sundanese, {sus} :
11998 Susu, {sw} : Swahili, {ss} : Swati, {sv} : Swedish, {syr} : Syriac, {tl} :
11999 Tagalog, {ty} : Tahitian, [{tai} : Tai (Other)], {tg} : Tajik, {tmh} :
12000 Tamashek, {ta} : Tamil, {i-tao} : Tao, {tt} : Tatar, {i-tay} : Tayal, {te}
12001 : Telugu, {ter} : Tereno, {tet} : Tetum, {th} : Thai, {bo} : Tibetan, {tig}
12002 : Tigre, {ti} : Tigrinya, {tem} : Timne, {tiv} : Tiv, {tli} : Tlingit,
12003 {tpi} : Tok Pisin, {tkl} : Tokelau, {tog} : Tonga (Nyasa), {to} : Tonga
12004 (Tonga Islands), {tsi} : Tsimshian, {ts} : Tsonga, {i-tsu} : Tsou, {tn} :
12005 Tswana, {tum} : Tumbuka, {tr} : Turkish, {ota} : Ottoman Turkish
12006 (1500-1928), {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} : Twi,
12007 {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian, {umb} : Umbundu, {und} :
12008 Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} : Vai, {ven} : Venda, {vi} :
12009 Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak} : Wakashan languages],
12010 {wal} : Walamo, {war} : Waray, {was} : Washo, {cy} : Welsh, {wo} : Wolof,
12011 {x-...} : Unregistered (Semi-Private Use), {xh} : Xhosa, {sah} : Yakut,
12012 {yao} : Yao, {yap} : Yapese, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik
12013 languages], {znd} : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} :
12014 Zhuang, {zu} : Zulu, {zun} : Zuni
12015
12016 =item SEE ALSO
12017
12018 =item COPYRIGHT AND DISCLAIMER
12019
12020 =item AUTHOR
12021
12022 =back
12023
12024 =head2 I18N::Langinfo - query locale information
12025
12026 =over 4
12027
12028 =item SYNOPSIS
12029
12030 =item DESCRIPTION
12031
12032 =over 4
12033
12034 =item EXPORT
12035
12036 =back
12037
12038 =item SEE ALSO
12039
12040 =item AUTHOR
12041
12042 =item COPYRIGHT AND LICENSE
12043
12044 =back
12045
12046 =head2 IO - load various IO modules
12047
12048 =over 4
12049
12050 =item SYNOPSIS
12051
12052 =item DESCRIPTION
12053
12054 =back
12055
12056 =head2 IO::Dir - supply object methods for directory handles
12057
12058 =over 4
12059
12060 =item SYNOPSIS
12061
12062 =item DESCRIPTION
12063
12064 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
12065 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
12066
12067 =item SEE ALSO
12068
12069 =item AUTHOR
12070
12071 =item COPYRIGHT
12072
12073 =back
12074
12075 =head2 IO::File - supply object methods for filehandles
12076
12077 =over 4
12078
12079 =item SYNOPSIS
12080
12081 =item DESCRIPTION
12082
12083 =item CONSTRUCTOR
12084
12085 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
12086
12087 =item METHODS
12088
12089 open( FILENAME [,MODE [,PERMS]] )
12090
12091 =item SEE ALSO
12092
12093 =item HISTORY
12094
12095 =back
12096
12097 =head2 IO::Handle - supply object methods for I/O handles
12098
12099 =over 4
12100
12101 =item SYNOPSIS
12102
12103 =item DESCRIPTION
12104
12105 =item CONSTRUCTOR
12106
12107 new (), new_from_fd ( FD, MODE )
12108
12109 =item METHODS
12110
12111 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
12112 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
12113 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
12114 $io->blocking ( [ BOOL ] ), $io->untaint
12115
12116 =item NOTE
12117
12118 =item SEE ALSO
12119
12120 =item BUGS
12121
12122 =item HISTORY
12123
12124 =back
12125
12126 =head2 IO::Pipe - supply object methods for pipes
12127
12128 =over 4
12129
12130 =item SYNOPSIS
12131
12132 =item DESCRIPTION
12133
12134 =item CONSTRUCTOR
12135
12136 new ( [READER, WRITER] )
12137
12138 =item METHODS
12139
12140 reader ([ARGS]), writer ([ARGS]), handles ()
12141
12142 =item SEE ALSO
12143
12144 =item AUTHOR
12145
12146 =item COPYRIGHT
12147
12148 =back
12149
12150 =head2 IO::Poll - Object interface to system poll call
12151
12152 =over 4
12153
12154 =item SYNOPSIS
12155
12156 =item DESCRIPTION
12157
12158 =item METHODS
12159
12160 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
12161 IO ), handles( [ EVENT_MASK ] )
12162
12163 =item SEE ALSO
12164
12165 =item AUTHOR
12166
12167 =item COPYRIGHT
12168
12169 =back
12170
12171 =head2 IO::Seekable - supply seek based methods for I/O objects
12172
12173 =over 4
12174
12175 =item SYNOPSIS
12176
12177 =item DESCRIPTION
12178
12179 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
12180 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
12181 $io->tell
12182
12183 =item SEE ALSO
12184
12185 =item HISTORY
12186
12187 =back
12188
12189 =head2 IO::Select - OO interface to the select system call
12190
12191 =over 4
12192
12193 =item SYNOPSIS
12194
12195 =item DESCRIPTION
12196
12197 =item CONSTRUCTOR
12198
12199 new ( [ HANDLES ] )
12200
12201 =item METHODS
12202
12203 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
12204 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
12205 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
12206
12207 =item EXAMPLE
12208
12209 =item AUTHOR
12210
12211 =item COPYRIGHT
12212
12213 =back
12214
12215 =head2 IO::Socket - Object interface to socket communications
12216
12217 =over 4
12218
12219 =item SYNOPSIS
12220
12221 =item DESCRIPTION
12222
12223 =item CONSTRUCTOR
12224
12225 new ( [ARGS] )
12226
12227 =item METHODS
12228
12229 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
12230 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
12231
12232 =item SEE ALSO
12233
12234 =item AUTHOR
12235
12236 =item COPYRIGHT
12237
12238 =back
12239
12240 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
12241
12242 =over 4
12243
12244 =item SYNOPSIS
12245
12246 =item DESCRIPTION
12247
12248 =item CONSTRUCTOR
12249
12250 new ( [ARGS] )
12251
12252 =over 4
12253
12254 =item METHODS
12255
12256 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
12257 ()
12258
12259 =back
12260
12261 =item SEE ALSO
12262
12263 =item AUTHOR
12264
12265 =item COPYRIGHT
12266
12267 =back
12268
12269 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
12270
12271 =over 4
12272
12273 =item SYNOPSIS
12274
12275 =item DESCRIPTION
12276
12277 =item CONSTRUCTOR
12278
12279 new ( [ARGS] )
12280
12281 =item METHODS
12282
12283 hostpath(), peerpath()
12284
12285 =item SEE ALSO
12286
12287 =item AUTHOR
12288
12289 =item COPYRIGHT
12290
12291 =back
12292
12293 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
12294 handles
12295
12296 =over 4
12297
12298 =item SYNOPSIS
12299
12300 =item DESCRIPTION
12301
12302 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
12303 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
12304
12305 =item SEE ALSO
12306
12307 =item AUTHOR
12308
12309 =item COPYRIGHT
12310
12311 =back
12312
12313 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
12314
12315 =over 4
12316
12317 =item SYNOPSIS
12318
12319 =item DESCRIPTION
12320
12321 =item CONSTRUCTOR
12322
12323 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
12324
12325 =item METHODS
12326
12327 open( FILENAME [,MODE [,PERMS]] )
12328
12329 =item SEE ALSO
12330
12331 =item HISTORY
12332
12333 =back
12334
12335 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
12336 handles
12337
12338 =over 4
12339
12340 =item SYNOPSIS
12341
12342 =item DESCRIPTION
12343
12344 =item CONSTRUCTOR
12345
12346 new (), new_from_fd ( FD, MODE )
12347
12348 =item METHODS
12349
12350 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
12351 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
12352 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
12353 $io->blocking ( [ BOOL ] ), $io->untaint
12354
12355 =item NOTE
12356
12357 =item SEE ALSO
12358
12359 =item BUGS
12360
12361 =item HISTORY
12362
12363 =back
12364
12365 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
12366
12367 =over 4
12368
12369 =item SYNOPSIS
12370
12371 =item DESCRIPTION
12372
12373 =item CONSTRUCTOR
12374
12375 new ( [READER, WRITER] )
12376
12377 =item METHODS
12378
12379 reader ([ARGS]), writer ([ARGS]), handles ()
12380
12381 =item SEE ALSO
12382
12383 =item AUTHOR
12384
12385 =item COPYRIGHT
12386
12387 =back
12388
12389 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
12390
12391 =over 4
12392
12393 =item SYNOPSIS
12394
12395 =item DESCRIPTION
12396
12397 =item METHODS
12398
12399 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
12400 IO ), handles( [ EVENT_MASK ] )
12401
12402 =item SEE ALSO
12403
12404 =item AUTHOR
12405
12406 =item COPYRIGHT
12407
12408 =back
12409
12410 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
12411 I/O objects
12412
12413 =over 4
12414
12415 =item SYNOPSIS
12416
12417 =item DESCRIPTION
12418
12419 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
12420 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
12421 $io->tell
12422
12423 =item SEE ALSO
12424
12425 =item HISTORY
12426
12427 =back
12428
12429 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
12430 call
12431
12432 =over 4
12433
12434 =item SYNOPSIS
12435
12436 =item DESCRIPTION
12437
12438 =item CONSTRUCTOR
12439
12440 new ( [ HANDLES ] )
12441
12442 =item METHODS
12443
12444 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
12445 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
12446 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
12447
12448 =item EXAMPLE
12449
12450 =item AUTHOR
12451
12452 =item COPYRIGHT
12453
12454 =back
12455
12456 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
12457 communications
12458
12459 =over 4
12460
12461 =item SYNOPSIS
12462
12463 =item DESCRIPTION
12464
12465 =item CONSTRUCTOR
12466
12467 new ( [ARGS] )
12468
12469 =item METHODS
12470
12471 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
12472 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
12473
12474 =item SEE ALSO
12475
12476 =item AUTHOR
12477
12478 =item COPYRIGHT
12479
12480 =back
12481
12482 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
12483 AF_INET domain sockets
12484
12485 =over 4
12486
12487 =item SYNOPSIS
12488
12489 =item DESCRIPTION
12490
12491 =item CONSTRUCTOR
12492
12493 new ( [ARGS] )
12494
12495 =over 4
12496
12497 =item METHODS
12498
12499 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
12500 ()
12501
12502 =back
12503
12504 =item SEE ALSO
12505
12506 =item AUTHOR
12507
12508 =item COPYRIGHT
12509
12510 =back
12511
12512 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
12513 AF_UNIX domain sockets
12514
12515 =over 4
12516
12517 =item SYNOPSIS
12518
12519 =item DESCRIPTION
12520
12521 =item CONSTRUCTOR
12522
12523 new ( [ARGS] )
12524
12525 =item METHODS
12526
12527 hostpath(), peerpath()
12528
12529 =item SEE ALSO
12530
12531 =item AUTHOR
12532
12533 =item COPYRIGHT
12534
12535 =back
12536
12537 =head2 IPC::Msg - SysV Msg IPC object class
12538
12539 =over 4
12540
12541 =item SYNOPSIS
12542
12543 =item DESCRIPTION
12544
12545 =item METHODS
12546
12547 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
12548 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
12549 FLAGS ] ), stat
12550
12551 =item SEE ALSO
12552
12553 =item AUTHOR
12554
12555 =item COPYRIGHT
12556
12557 =back
12558
12559 =head2 IPC::Open2, open2 - open a process for both reading and writing
12560
12561 =over 4
12562
12563 =item SYNOPSIS
12564
12565 =item DESCRIPTION
12566
12567 =item WARNING 
12568
12569 =item SEE ALSO
12570
12571 =back
12572
12573 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
12574 handling
12575
12576 =over 4
12577
12578 =item SYNOPSIS
12579
12580 =item DESCRIPTION
12581
12582 =item WARNING
12583
12584 =back
12585
12586 =head2 IPC::Semaphore - SysV Semaphore IPC object class
12587
12588 =over 4
12589
12590 =item SYNOPSIS
12591
12592 =item DESCRIPTION
12593
12594 =item METHODS
12595
12596 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
12597 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
12598 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
12599 , VALUE ), stat
12600
12601 =item SEE ALSO
12602
12603 =item AUTHOR
12604
12605 =item COPYRIGHT
12606
12607 =back
12608
12609 =head2 IPC::SysV - SysV IPC constants
12610
12611 =over 4
12612
12613 =item SYNOPSIS
12614
12615 =item DESCRIPTION
12616
12617 ftok( PATH, ID )
12618
12619 =item SEE ALSO
12620
12621 =item AUTHORS
12622
12623 =item COPYRIGHT
12624
12625 =back
12626
12627 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
12628
12629 =over 4
12630
12631 =item SYNOPSIS
12632
12633 =item DESCRIPTION
12634
12635 =item METHODS
12636
12637 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
12638 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
12639 FLAGS ] ), stat
12640
12641 =item SEE ALSO
12642
12643 =item AUTHOR
12644
12645 =item COPYRIGHT
12646
12647 =back
12648
12649 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
12650 class
12651
12652 =over 4
12653
12654 =item SYNOPSIS
12655
12656 =item DESCRIPTION
12657
12658 =item METHODS
12659
12660 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
12661 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
12662 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
12663 , VALUE ), stat
12664
12665 =item SEE ALSO
12666
12667 =item AUTHOR
12668
12669 =item COPYRIGHT
12670
12671 =back
12672
12673 =head2 List::Util - A selection of general-utility list subroutines
12674
12675 =over 4
12676
12677 =item SYNOPSIS
12678
12679 =item DESCRIPTION
12680
12681 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
12682 BLOCK LIST, shuffle LIST, sum LIST
12683
12684 =item SUGGESTED ADDITIONS
12685
12686 =item COPYRIGHT
12687
12688 =back
12689
12690 =head2 List::Utilib::List::Util, List::Util - A selection of
12691 general-utility list subroutines
12692
12693 =over 4
12694
12695 =item SYNOPSIS
12696
12697 =item DESCRIPTION
12698
12699 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
12700 BLOCK LIST, shuffle LIST, sum LIST
12701
12702 =item SUGGESTED ADDITIONS
12703
12704 =item COPYRIGHT
12705
12706 =back
12707
12708 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
12709 general-utility scalar subroutines
12710
12711 =over 4
12712
12713 =item SYNOPSIS
12714
12715 =item DESCRIPTION
12716
12717 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
12718 EXPR, tainted EXPR, weaken REF
12719
12720 =item COPYRIGHT
12721
12722 =item BLATANT PLUG
12723
12724 =back
12725
12726 =head2 Locale::Constants - constants for Locale codes
12727
12728 =over 4
12729
12730 =item SYNOPSIS
12731
12732 =item DESCRIPTION
12733
12734 =item KNOWN BUGS AND LIMITATIONS
12735
12736 =item SEE ALSO
12737
12738 Locale::Language, Locale::Country, Locale::Currency
12739
12740 =item AUTHOR
12741
12742 =item COPYRIGHT
12743
12744 =back
12745
12746 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
12747
12748 =over 4
12749
12750 =item SYNOPSIS
12751
12752 =back
12753
12754 =over 4
12755
12756 =item DESCRIPTION
12757
12758 B<alpha-2>, B<alpha-3>, B<numeric>
12759
12760 =back
12761
12762 =over 4
12763
12764 =item CONVERSION ROUTINES
12765
12766 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
12767 country_code2code( CODE, CODESET, CODESET )
12768
12769 =back
12770
12771 =over 4
12772
12773 =item QUERY ROUTINES
12774
12775 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
12776
12777 =back
12778
12779 =over 4
12780
12781 =item CODE ALIASING
12782
12783 =back
12784
12785 =over 4
12786
12787 =item EXAMPLES
12788
12789 =item DOMAIN NAMES
12790
12791 =item KNOWN BUGS AND LIMITATIONS
12792
12793 =item SEE ALSO
12794
12795 Locale::Language, Locale::Currency, ISO 3166,
12796 http://www.din.de/gremien/nas/nabd/iso3166ma/,
12797 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
12798 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
12799
12800 =item AUTHOR
12801
12802 =item COPYRIGHT
12803
12804 =back
12805
12806 =head2 Locale::Currency - ISO three letter codes for currency
12807 identification (ISO 4217)
12808
12809 =over 4
12810
12811 =item SYNOPSIS
12812
12813 =back
12814
12815 =over 4
12816
12817 =item DESCRIPTION
12818
12819 XTS, XXX
12820
12821 =back
12822
12823 =over 4
12824
12825 =item CONVERSION ROUTINES
12826
12827 code2currency(), currency2code()
12828
12829 =back
12830
12831 =over 4
12832
12833 =item QUERY ROUTINES
12834
12835 C<all_currency_codes()>, C<all_currency_names()>
12836
12837 =back
12838
12839 =over 4
12840
12841 =item EXAMPLES
12842
12843 =item KNOWN BUGS AND LIMITATIONS
12844
12845 =item SEE ALSO
12846
12847 Locale::Country, ISO 4217:1995, http://www.bsi-global.com/iso4217currency
12848
12849 =item AUTHOR
12850
12851 =item COPYRIGHT
12852
12853 =back
12854
12855 =head2 Locale::Language - ISO two letter codes for language identification
12856 (ISO 639)
12857
12858 =over 4
12859
12860 =item SYNOPSIS
12861
12862 =back
12863
12864 =over 4
12865
12866 =item DESCRIPTION
12867
12868 =back
12869
12870 =over 4
12871
12872 =item CONVERSION ROUTINES
12873
12874 code2language(), language2code()
12875
12876 =back
12877
12878 =over 4
12879
12880 =item QUERY ROUTINES
12881
12882 C<all_language_codes()>, C<all_language_names()>
12883
12884 =back
12885
12886 =over 4
12887
12888 =item EXAMPLES
12889
12890 =item KNOWN BUGS AND LIMITATIONS
12891
12892 =item SEE ALSO
12893
12894 Locale::Country, Locale::Currency, ISO 639:1988 (E/F),
12895 http://lcweb.loc.gov/standards/iso639-2/langhome.html
12896
12897 =item AUTHOR
12898
12899 =item COPYRIGHT
12900
12901 =back
12902
12903 =head2 Locale::Maketext -- framework for localization
12904
12905 =over 4
12906
12907 =item SYNOPSIS
12908
12909 =item DESCRIPTION
12910
12911 =item QUICK OVERVIEW
12912
12913 =item METHODS
12914
12915 =over 4
12916
12917 =item Construction Methods
12918
12919 =item The "maketext" Method
12920
12921 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
12922
12923 =item Utility Methods
12924
12925 $language->quant($number, $singular), $language->quant($number, $singular,
12926 $plural), $language->quant($number, $singular, $plural, $negative),
12927 $language->numf($number), $language->sprintf($format, @items),
12928 $language->language_tag(), $language->encoding()
12929
12930 =item Language Handle Attributes and Internals
12931
12932 =back
12933
12934 =item LANGUAGE CLASS HIERARCHIES
12935
12936 =item ENTRIES IN EACH LEXICON
12937
12938 =item BRACKET NOTATION
12939
12940 =item AUTO LEXICONS
12941
12942 =item CONTROLLING LOOKUP FAILURE
12943
12944 =item HOW TO USE MAKETEXT
12945
12946 =item SEE ALSO
12947
12948 =item COPYRIGHT AND DISCLAIMER
12949
12950 =item AUTHOR
12951
12952 =back
12953
12954 =head2 Locale::Maketext::TPJ13 -- article about software localization
12955
12956 =over 4
12957
12958 =item SYNOPSIS
12959
12960 =item DESCRIPTION
12961
12962 =item Localization and Perl: gettext breaks, Maketext fixes
12963
12964 =over 4
12965
12966 =item A Localization Horror Story: It Could Happen To You
12967
12968 =item The Linguistic View
12969
12970 =item Breaking gettext
12971
12972 =item Replacing gettext
12973
12974 =item Buzzwords: Abstraction and Encapsulation
12975
12976 =item Buzzword: Isomorphism
12977
12978 =item Buzzword: Inheritance
12979
12980 =item Buzzword: Concision
12981
12982 =item The Devil in the Details
12983
12984 =item The Proof in the Pudding: Localizing Web Sites
12985
12986 =item References
12987
12988 =back
12989
12990 =back
12991
12992 =head2 MIME::Base64 - Encoding and decoding of base64 strings
12993
12994 =over 4
12995
12996 =item SYNOPSIS
12997
12998 =item DESCRIPTION
12999
13000 encode_base64($str, [$eol]), decode_base64($str)
13001
13002 =item DIAGNOSTICS
13003
13004 Premature end of base64 data, Premature padding of base64 data
13005
13006 =item EXAMPLES
13007
13008 =item COPYRIGHT
13009
13010 =back
13011
13012 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
13013 of quoted-printable strings
13014
13015 =over 4
13016
13017 =item SYNOPSIS
13018
13019 =item DESCRIPTION
13020
13021 encode_qp($str), decode_qp($str);
13022
13023 =item COPYRIGHT
13024
13025 =back
13026
13027 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
13028 strings
13029
13030 =over 4
13031
13032 =item SYNOPSIS
13033
13034 =item DESCRIPTION
13035
13036 encode_qp($str), decode_qp($str);
13037
13038 =item COPYRIGHT
13039
13040 =back
13041
13042 =head2 Math::BigFloat - Arbitrary size floating point math package
13043
13044 =over 4
13045
13046 =item SYNOPSIS
13047
13048 =item DESCRIPTION
13049
13050 =over 4
13051
13052 =item Canonical notation
13053
13054 =item Output
13055
13056 =item C<mantissa()>, C<exponent()> and C<parts()>
13057
13058 =item Accuracy vs. Precision
13059
13060 =item Rounding
13061
13062 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
13063 ), fround  ( -$scale ) and fround ( 0 )
13064
13065 =back
13066
13067 =item EXAMPLES
13068
13069   # not ready yet
13070
13071 =item Autocreating constants
13072
13073 =item BUGS
13074
13075 =item CAVEAT
13076
13077 stringify, bstr(), bdiv, Modifying and =, bpow
13078
13079 =item LICENSE
13080
13081 =item AUTHORS
13082
13083 =back
13084
13085 =head2 Math::BigInt - Arbitrary size integer math package
13086
13087 =over 4
13088
13089 =item SYNOPSIS
13090
13091 =item DESCRIPTION
13092
13093 Canonical notation, Input, Output
13094
13095 =item ACCURACY and PRECISION
13096
13097 =over 4
13098
13099 =item Precision P
13100
13101 =item Accuracy A
13102
13103 =item Fallback F
13104
13105 =item Rounding mode R
13106
13107 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
13108 (significant digits), Setting/Accessing, Creating numbers, Usage,
13109 Precedence, Overriding globals, Local settings, Rounding, Default values,
13110 Remarks
13111
13112 =back
13113
13114 =item INTERNALS
13115
13116 =over 4
13117
13118 =item MATH LIBRARY
13119
13120 =item SIGN
13121
13122 =item mantissa(), exponent() and parts()
13123
13124 =back
13125
13126 =item EXAMPLES
13127
13128   use Math::BigInt qw(bstr);
13129
13130 =item Autocreating constants
13131
13132 =item PERFORMANCE
13133
13134 =over 4
13135
13136 =item Alternative math libraries
13137
13138 =back
13139
13140 =item BUGS
13141
13142 Out of Memory!, Fails to load Calc on Perl prior 5.6.0
13143
13144 =item CAVEATS
13145
13146 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
13147 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
13148 types, bsqrt()
13149
13150 =item LICENSE
13151
13152 =item SEE ALSO
13153
13154 =item AUTHORS
13155
13156 =back
13157
13158 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
13159
13160 =over 4
13161
13162 =item SYNOPSIS
13163
13164 =item DESCRIPTION
13165
13166 =item EXPORT
13167
13168 =item WRAP YOUR OWN
13169
13170 =item LICENSE
13171
13172 This program is free software; you may redistribute it and/or modify it
13173 under
13174 the same terms as Perl itself. 
13175
13176 =item AUTHORS
13177
13178 =item SEE ALSO
13179
13180 =back
13181
13182 =head2 Math::Complex - complex numbers and associated mathematical
13183 functions
13184
13185 =over 4
13186
13187 =item SYNOPSIS
13188
13189 =item DESCRIPTION
13190
13191 =item OPERATIONS
13192
13193 =item CREATION
13194
13195 =item STRINGIFICATION
13196
13197 =over 4
13198
13199 =item CHANGED IN PERL 5.6
13200
13201 =back
13202
13203 =item USAGE
13204
13205 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
13206
13207 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
13208
13209 =item BUGS
13210
13211 =item AUTHORS
13212
13213 =back
13214
13215 =head2 Math::Trig - trigonometric functions
13216
13217 =over 4
13218
13219 =item SYNOPSIS
13220
13221 =item DESCRIPTION
13222
13223 =item TRIGONOMETRIC FUNCTIONS
13224
13225 B<tan>
13226
13227 =over 4
13228
13229 =item ERRORS DUE TO DIVISION BY ZERO
13230
13231 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
13232
13233 =back
13234
13235 =item PLANE ANGLE CONVERSIONS
13236
13237 =item RADIAL COORDINATE CONVERSIONS
13238
13239 =over 4
13240
13241 =item COORDINATE SYSTEMS
13242
13243 =item 3-D ANGLE CONVERSIONS
13244
13245 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
13246 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
13247
13248 =back
13249
13250 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
13251
13252 =item EXAMPLES
13253
13254 =over 4
13255
13256 =item CAVEAT FOR GREAT CIRCLE FORMULAS
13257
13258 =back
13259
13260 =item BUGS
13261
13262 =item AUTHORS
13263
13264 =back
13265
13266 =head2 Memoize - Make your functions faster by trading space for time
13267
13268 =over 4
13269
13270 =item SYNOPSIS
13271
13272 =item DESCRIPTION
13273
13274 =item DETAILS
13275
13276 =item OPTIONS
13277
13278 =over 4
13279
13280 =item INSTALL
13281
13282 =item NORMALIZER
13283
13284 =item C<SCALAR_CACHE>, C<LIST_CACHE>
13285
13286 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
13287
13288 =back
13289
13290 =item OTHER FACILITIES
13291
13292 =over 4
13293
13294 =item C<unmemoize>
13295
13296 =item C<flush_cache>
13297
13298 =back
13299
13300 =item CAVEATS
13301
13302 =item PERSISTENT CACHE SUPPORT
13303
13304 =item EXPIRATION SUPPORT
13305
13306 =item BUGS
13307
13308 =item MAILING LIST
13309
13310 =item AUTHOR
13311
13312 =item COPYRIGHT AND LICENSE
13313
13314 =item THANK YOU
13315
13316 =back
13317
13318 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
13319 Storable use
13320
13321 =over 4
13322
13323 =item DESCRIPTION
13324
13325 =back
13326
13327 =head2 Memoize::Expire - Plug-in module for automatic expiration of
13328 memoized values
13329
13330 =over 4
13331
13332 =item SYNOPSIS
13333
13334 =item DESCRIPTION
13335
13336 =item INTERFACE
13337
13338  TIEHASH,  EXISTS,  STORE
13339
13340 =item ALTERNATIVES
13341
13342 =item CAVEATS
13343
13344 =item AUTHOR
13345
13346 =item SEE ALSO
13347
13348 =back
13349
13350 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
13351
13352 =over 4
13353
13354 =item DESCRIPTION
13355
13356 =back
13357
13358 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
13359
13360 =over 4
13361
13362 =item DESCRIPTION
13363
13364 =back
13365
13366 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
13367 Storable use
13368
13369 =over 4
13370
13371 =item DESCRIPTION
13372
13373 =back
13374
13375 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
13376 Storable use
13377
13378 =over 4
13379
13380 =item DESCRIPTION
13381
13382 =back
13383
13384 =head2 Memoize::Saves - Plug-in module to specify which return values
13385 should be memoized
13386
13387 =over 4
13388
13389 =item SYNOPSIS
13390
13391 =item DESCRIPTION
13392
13393 =item CAVEATS
13394
13395 =item AUTHOR
13396
13397 =item SEE ALSO
13398
13399 =back
13400
13401 =head2 Memoize::Storable - store Memoized data in Storable database
13402
13403 =over 4
13404
13405 =item DESCRIPTION
13406
13407 =back
13408
13409 =head2 NDBM_File - Tied access to ndbm files
13410
13411 =over 4
13412
13413 =item SYNOPSIS
13414
13415 =item DESCRIPTION
13416
13417 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
13418
13419 =item DIAGNOSTICS
13420
13421 =over 4
13422
13423 =item C<ndbm store returned -1, errno 22, key "..." at ...>
13424
13425 =back
13426
13427 =item BUGS AND WARNINGS
13428
13429 =back
13430
13431 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
13432
13433 =over 4
13434
13435 =item SYNOPSIS
13436
13437 =item DESCRIPTION
13438
13439 =item AUTHOR
13440
13441 =item BUGS AND IRRITATIONS
13442
13443 =item COPYRIGHT
13444
13445 =back
13446
13447 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
13448
13449 =over 4
13450
13451 =item SYNOPSIS
13452
13453 =item DESCRIPTION
13454
13455 =item USER METHODS
13456
13457 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
13458 dataend ()
13459
13460 =item CLASS METHODS
13461
13462 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
13463 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
13464 ungetline ( TEXT ), read_until_dot ()
13465
13466 =item EXPORTS
13467
13468 =item AUTHOR
13469
13470 =item COPYRIGHT
13471
13472 =back
13473
13474 =head2 Net::Config - Local configuration data for libnet
13475
13476 =over 4
13477
13478 =item SYNOPSYS
13479
13480 =item DESCRIPTION
13481
13482 =item METHODS
13483
13484 requires_firewall HOST
13485
13486 =item NetConfig VALUES
13487
13488 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
13489 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
13490 ftp_int_pasive, local_netmask, test_hosts, test_exists
13491
13492 =back
13493
13494 =head2 Net::Domain - Attempt to evaluate the current host's internet name
13495 and domain
13496
13497 =over 4
13498
13499 =item SYNOPSIS
13500
13501 =item DESCRIPTION
13502
13503 hostfqdn (), hostname (), hostdomain ()
13504
13505 =item AUTHOR
13506
13507 =item COPYRIGHT
13508
13509 =back
13510
13511 =head2 Net::FTP - FTP Client class
13512
13513 =over 4
13514
13515 =item SYNOPSIS
13516
13517 =item DESCRIPTION
13518
13519 =item OVERVIEW
13520
13521 =item CONSTRUCTOR
13522
13523 new (HOST [,OPTIONS])
13524
13525 =item METHODS
13526
13527 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
13528 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
13529 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
13530 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
13531 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), dir ( [ DIR ] ), get (
13532 REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put ( LOCAL_FILE [, REMOTE_FILE ]
13533 ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ), append ( LOCAL_FILE [,
13534 REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size ( FILE ), supported (
13535 CMD ), hash ( [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR
13536 ] ), list ( [ DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe (
13537 FILE ), port ( [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [,
13538 DEST_FILE ] ), pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
13539 pasv_wait ( NON_PASV_SERVER ), abort (), quit ()
13540
13541 =over 4
13542
13543 =item Methods for the adventurous
13544
13545 quot (CMD [,ARGS])
13546
13547 =back
13548
13549 =item THE dataconn CLASS
13550
13551 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
13552 bytes_read (), abort (), close ()
13553
13554 =item UNIMPLEMENTED
13555
13556 B<ALLO>, B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
13557
13558 =item REPORTING BUGS
13559
13560 =item AUTHOR
13561
13562 =item SEE ALSO
13563
13564 =item USE EXAMPLES
13565
13566 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
13567
13568 =item CREDITS
13569
13570 =item COPYRIGHT
13571
13572 =back
13573
13574 =head2 Net::NNTP - NNTP Client class
13575
13576 =over 4
13577
13578 =item SYNOPSIS
13579
13580 =item DESCRIPTION
13581
13582 =item CONSTRUCTOR
13583
13584 new ( [ HOST ] [, OPTIONS ])
13585
13586 =item METHODS
13587
13588 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
13589 [ MSGID|MSGNUM ], [FH] ), nntpstat ( [ MSGID|MSGNUM ] ), group ( [ GROUP ]
13590 ), ihave ( MSGID [, MESSAGE ]), last (), date (), postok (), authinfo (
13591 USER, PASS ), list (), newgroups ( SINCE [, DISTRIBUTIONS ]), newnews (
13592 SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (), post ( [ MESSAGE ] ), slave
13593 (), quit ()
13594
13595 =over 4
13596
13597 =item Extension methods
13598
13599 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
13600 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
13601 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
13602 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
13603 GROUP ] ), reader
13604
13605 =back
13606
13607 =item UNSUPPORTED
13608
13609 =item DEFINITIONS
13610
13611 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
13612
13613 =item SEE ALSO
13614
13615 =item AUTHOR
13616
13617 =item COPYRIGHT
13618
13619 =back
13620
13621 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1081)
13622
13623 =over 4
13624
13625 =item SYNOPSIS
13626
13627 =item DESCRIPTION
13628
13629 =item EXAMPLES
13630
13631 =item CONSTRUCTOR
13632
13633 new ( [ HOST, ] [ OPTIONS ] )
13634
13635 =item METHODS
13636
13637 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( USER,
13638 PASS ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM [,
13639 FH ] ), last (), popstat (), ping ( USER ), uidl ( [ MSGNUM ] ), delete (
13640 MSGNUM ), reset (), quit ()
13641
13642 =item NOTES
13643
13644 =item SEE ALSO
13645
13646 =item AUTHOR
13647
13648 =item COPYRIGHT
13649
13650 =back
13651
13652 =head2 Net::Ping - check a remote host for reachability
13653
13654 =over 4
13655
13656 =item SYNOPSIS
13657
13658 =item DESCRIPTION
13659
13660 icmp, udp, tcp, stream, external
13661
13662 =over 4
13663
13664 =item Functions
13665
13666 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);, $p->ping($host [,
13667 $timeout]);, $p->open($host);, $p->close();, pingecho($host [, $timeout]);
13668
13669 =back
13670
13671 =item NOTES
13672
13673 =back
13674
13675 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
13676
13677 =over 4
13678
13679 =item SYNOPSIS
13680
13681 =item DESCRIPTION
13682
13683 =item EXAMPLES
13684
13685 =item CONSTRUCTOR
13686
13687 new Net::SMTP [ HOST, ] [ OPTIONS ]
13688
13689 =item METHODS
13690
13691 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), mail ( ADDRESS [,
13692 OPTIONS] ), send ( ADDRESS ), send_or_mail ( ADDRESS ), send_and_mail (
13693 ADDRESS ), reset (), recipient ( ADDRESS [, ADDRESS [ ...]] [, OPTIONS ] ),
13694 to ( ADDRESS [, ADDRESS [...]] ), cc ( ADDRESS [, ADDRESS [...]] ), bcc (
13695 ADDRESS [, ADDRESS [...]] ), data ( [ DATA ] ), expand ( ADDRESS ), verify
13696 ( ADDRESS ), help ( [ $subject ] ), quit ()
13697
13698 =item SEE ALSO
13699
13700 =item AUTHOR
13701
13702 =item COPYRIGHT
13703
13704 =back
13705
13706 =head2 Net::Time - time and daytime network client interface
13707
13708 =over 4
13709
13710 =item SYNOPSIS
13711
13712 =item DESCRIPTION
13713
13714 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
13715 PROTOCOL [, TIMEOUT]]])
13716
13717 =item AUTHOR
13718
13719 =item COPYRIGHT
13720
13721 =back
13722
13723 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
13724 functions
13725
13726 =over 4
13727
13728 =item SYNOPSIS
13729
13730 =item DESCRIPTION
13731
13732 =item EXAMPLES
13733
13734 =item NOTE
13735
13736 =item AUTHOR
13737
13738 =back
13739
13740 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
13741
13742 =over 4
13743
13744 =item DESCRIPTION
13745
13746 =over 4
13747
13748 =item Where to get this document
13749
13750 =item How to contribute to this document
13751
13752 =back
13753
13754 =item Author and Copyright Information
13755
13756 =over 4
13757
13758 =item Disclaimer
13759
13760 =back
13761
13762 =item Obtaining and installing libnet
13763
13764 =over 4
13765
13766 =item What is libnet ?
13767
13768 =item Which version of perl do I need ?
13769
13770 =item What other modules do I need ?
13771
13772 =item What machines support libnet ?
13773
13774 =item Where can I get the latest libnet release
13775
13776 =back
13777
13778 =item Using Net::FTP
13779
13780 =over 4
13781
13782 =item How do I download files from an FTP server ?
13783
13784 =item How do I transfer files in binary mode ?
13785
13786 =item How can I get the size of a file on a remote FTP server ?
13787
13788 =item How can I get the modification time of a file on a remote FTP server
13789 ?
13790
13791 =item How can I change the permissions of a file on a remote server ?
13792
13793 =item Can I do a reget operation like the ftp command ?
13794
13795 =item How do I get a directory listing from an FTP server ?
13796
13797 =item Changing directory to "" does not fail ?
13798
13799 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
13800
13801 =item I am behind an FTP proxy firewall, but cannot access machines outside
13802 ?
13803
13804 =item My ftp proxy firewall does not listen on port 21
13805
13806 =item Is it possible to change the file permissions of a file on an FTP
13807 server ?
13808
13809 =item I have seen scripts call a method message, but cannot find it
13810 documented ?
13811
13812 =item Why does Net::FTP not implement mput and mget methods
13813
13814 =back
13815
13816 =item Using Net::SMTP
13817
13818 =over 4
13819
13820 =item Why can't the part of an Email address after the @ be used as the
13821 hostname ?
13822
13823 =item Why does Net::SMTP not do DNS MX lookups ?
13824
13825 =item The verify method always returns true ?
13826
13827 =back
13828
13829 =item Debugging scripts
13830
13831 =over 4
13832
13833 =item How can I debug my scripts that use Net::* modules ?
13834
13835 =back
13836
13837 =item AUTHOR AND COPYRIGHT
13838
13839 =back
13840
13841 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
13842 functions
13843
13844 =over 4
13845
13846 =item SYNOPSIS
13847
13848 =item DESCRIPTION
13849
13850 =item EXAMPLES
13851
13852 =item NOTE
13853
13854 =item AUTHOR
13855
13856 =back
13857
13858 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
13859 functions
13860
13861 =over 4
13862
13863 =item SYNOPSIS
13864
13865 =item DESCRIPTION
13866
13867 =item NOTE
13868
13869 =item AUTHOR
13870
13871 =back
13872
13873 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
13874 functions
13875
13876 =over 4
13877
13878 =item SYNOPSIS
13879
13880 =item DESCRIPTION
13881
13882 =item EXAMPLES
13883
13884 =item NOTE
13885
13886 =item AUTHOR
13887
13888 =back
13889
13890 =head2 Netrc, Net::Netrc - OO interface to users netrc file
13891
13892 =over 4
13893
13894 =item SYNOPSIS
13895
13896 =item DESCRIPTION
13897
13898 =item THE .netrc FILE
13899
13900 machine name, default, login name, password string, account string, macdef
13901 name
13902
13903 =item CONSTRUCTOR
13904
13905 lookup ( MACHINE [, LOGIN ])
13906
13907 =item METHODS
13908
13909 login (), password (), account (), lpa ()
13910
13911 =item AUTHOR
13912
13913 =item SEE ALSO
13914
13915 =item COPYRIGHT
13916
13917 =back
13918
13919 =head2 O - Generic interface to Perl Compiler backends
13920
13921 =over 4
13922
13923 =item SYNOPSIS
13924
13925 =item DESCRIPTION
13926
13927 =item CONVENTIONS
13928
13929 =item IMPLEMENTATION
13930
13931 =item AUTHOR
13932
13933 =back
13934
13935 =head2 ODBM_File - Tied access to odbm files
13936
13937 =over 4
13938
13939 =item SYNOPSIS
13940
13941 =item DESCRIPTION
13942
13943 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
13944
13945 =item DIAGNOSTICS
13946
13947 =over 4
13948
13949 =item C<odbm store returned -1, errno 22, key "..." at ...>
13950
13951 =back
13952
13953 =item BUGS AND WARNINGS
13954
13955 =back
13956
13957 =head2 Opcode - Disable named opcodes when compiling perl code
13958
13959 =over 4
13960
13961 =item SYNOPSIS
13962
13963 =item DESCRIPTION
13964
13965 =item NOTE
13966
13967 =item WARNING
13968
13969 =item Operator Names and Operator Lists
13970
13971 an operator name (opname), an operator tag name (optag), a negated opname
13972 or optag, an operator set (opset)
13973
13974 =item Opcode Functions
13975
13976 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
13977 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
13978 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
13979 opdump (PAT)
13980
13981 =item Manipulating Opsets
13982
13983 =item TO DO (maybe)
13984
13985 =back
13986
13987 =over 4
13988
13989 =item Predefined Opcode Tags
13990
13991 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
13992 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
13993 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
13994 :dangerous
13995
13996 =item SEE ALSO
13997
13998 =item AUTHORS
13999
14000 =back
14001
14002 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
14003 compartments
14004
14005 =over 4
14006
14007 =item SYNOPSIS
14008
14009 =item DESCRIPTION
14010
14011 a new namespace, an operator mask
14012
14013 =item WARNING
14014
14015 =over 4
14016
14017 =item RECENT CHANGES
14018
14019 =item Methods in class Safe
14020
14021 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
14022 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
14023 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
14024 root (NAMESPACE), mask (MASK)
14025
14026 =item Some Safety Issues
14027
14028 Memory, CPU, Snooping, Signals, State Changes
14029
14030 =item AUTHOR
14031
14032 =back
14033
14034 =back
14035
14036 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
14037 compiling
14038
14039 =over 4
14040
14041 =item SYNOPSIS  
14042
14043 =item DESCRIPTION
14044
14045 =item SEE ALSO
14046
14047 =back
14048
14049 =head2 POSIX - Perl interface to IEEE Std 1003.1
14050
14051 =over 4
14052
14053 =item SYNOPSIS
14054
14055 =item DESCRIPTION
14056
14057 =item NOTE
14058
14059 =item CAVEATS 
14060
14061 =item FUNCTIONS
14062
14063 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
14064 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
14065 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
14066 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
14067 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
14068 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
14069 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
14070 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
14071 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
14072 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
14073 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
14074 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
14075 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
14076 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
14077 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
14078 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
14079 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
14080 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
14081 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
14082 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
14083 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
14084 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
14085 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
14086 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
14087 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
14088 wctomb, write
14089
14090 =item CLASSES
14091
14092 =over 4
14093
14094 =item POSIX::SigAction
14095
14096 new
14097
14098 =item POSIX::SigSet
14099
14100 new, addset, delset, emptyset, fillset, ismember
14101
14102 =item POSIX::Termios
14103
14104 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
14105 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
14106 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
14107 field values, c_cflag field values, c_iflag field values, c_lflag field
14108 values, c_oflag field values
14109
14110 =back
14111
14112 =item PATHNAME CONSTANTS
14113
14114 Constants
14115
14116 =item POSIX CONSTANTS
14117
14118 Constants
14119
14120 =item SYSTEM CONFIGURATION
14121
14122 Constants
14123
14124 =item ERRNO
14125
14126 Constants
14127
14128 =item FCNTL
14129
14130 Constants
14131
14132 =item FLOAT
14133
14134 Constants
14135
14136 =item LIMITS
14137
14138 Constants
14139
14140 =item LOCALE
14141
14142 Constants
14143
14144 =item MATH
14145
14146 Constants
14147
14148 =item SIGNAL
14149
14150 Constants
14151
14152 =item STAT
14153
14154 Constants, Macros
14155
14156 =item STDLIB
14157
14158 Constants
14159
14160 =item STDIO
14161
14162 Constants
14163
14164 =item TIME
14165
14166 Constants
14167
14168 =item UNISTD
14169
14170 Constants
14171
14172 =item WAIT
14173
14174 Constants, Macros
14175
14176 =back
14177
14178 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
14179 name space
14180
14181 =over 4
14182
14183 =item SYNOPSIS
14184
14185 =item DESCRIPTION
14186
14187 unix, stdio, perlio, crlf, utf8, raw
14188
14189 =over 4
14190
14191 =item Defaults and how to override them
14192
14193 =back
14194
14195 =item AUTHOR
14196
14197 =item SEE ALSO
14198
14199 =back
14200
14201 =head2 PerlIO::Scalar - support module for in-memory IO.
14202
14203 =over 4
14204
14205 =item SYNOPSIS
14206
14207 =item DESCRIPTION
14208
14209 =back
14210
14211 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
14212
14213 =over 4
14214
14215 =item SYNOPSIS
14216
14217 =item DESCRIPTION
14218
14219 $class->PUSHED([$mode][,$fh]), $obj->POPPED([$fh]),
14220 $class->OPEN($path,$mode[,$fh]), $class->FDOPEN($fd),
14221 $class->SYSOPEN($path,$imode,$perm,$fh), $obj->FILENO($fh),
14222 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
14223 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
14224 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
14225 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
14226
14227 =back
14228
14229 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
14230
14231 =over 4
14232
14233 =item SYNOPSIS
14234
14235 =item OPTIONS/ARGUMENTS
14236
14237 =over 4
14238
14239 =item podchecker()
14240
14241 B<-warnings> =E<gt> I<val>
14242
14243 =back
14244
14245 =item DESCRIPTION
14246
14247 =item DIAGNOSTICS
14248
14249 =over 4
14250
14251 =item Errors
14252
14253 empty =headn, =over on line I<N> without closing =back, =item without
14254 previous =over, =back without previous =over, No argument for =begin, =end
14255 without =begin, Nested =begin's, =for without formatter specification,
14256 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
14257 interior-sequence "I<SEQ>", nested commands
14258 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
14259 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
14260 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
14261 after =back
14262
14263 =item Warnings
14264
14265 multiple occurence of link target I<name>, line containing nothing but
14266 whitespace in paragraph, file does not start with =head, previous =item has
14267 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
14268 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
14269 items in =over, No argument for =item, empty section in previous paragraph,
14270 Verbatim paragraph in NAME section
14271
14272 =item Hyperlinks
14273
14274 ignoring leading/trailing whitespace in link, (section) in '$page'
14275 deprecated, alternative text/node '%s' contains non-escaped | or /
14276
14277 =back
14278
14279 =item RETURN VALUE
14280
14281 =item EXAMPLES
14282
14283 =item INTERFACE
14284
14285 =back
14286
14287 C<Pod::Checker-E<gt>new( %options )>
14288
14289 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
14290 @args )>
14291
14292 C<$checker-E<gt>num_errors()>
14293
14294 C<$checker-E<gt>name()>
14295
14296 C<$checker-E<gt>node()>
14297
14298 C<$checker-E<gt>idx()>
14299
14300 C<$checker-E<gt>hyperlink()>
14301
14302 =over 4
14303
14304 =item AUTHOR
14305
14306 =back
14307
14308 =head2 Pod::Find - find POD documents in directory trees
14309
14310 =over 4
14311
14312 =item SYNOPSIS
14313
14314 =item DESCRIPTION
14315
14316 =back
14317
14318 =over 4
14319
14320 =item C<pod_find( { %opts } , @directories )>
14321
14322 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
14323 1>
14324
14325 =back
14326
14327 =over 4
14328
14329 =item C<simplify_name( $str )>
14330
14331 =back
14332
14333 =over 4
14334
14335 =item C<pod_where( { %opts }, $pod )>
14336
14337 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
14338 1>
14339
14340 =back
14341
14342 =over 4
14343
14344 =item C<contains_pod( $file , $verbose )>
14345
14346 =back
14347
14348 =over 4
14349
14350 =item AUTHOR
14351
14352 =item SEE ALSO
14353
14354 =back
14355
14356 =head2 Pod::Html - module to convert pod files to HTML
14357
14358 =over 4
14359
14360 =item SYNOPSIS
14361
14362 =item DESCRIPTION
14363
14364 =item ARGUMENTS
14365
14366 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
14367 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
14368 title, verbose
14369
14370 =item EXAMPLE
14371
14372 =item ENVIRONMENT
14373
14374 =item AUTHOR
14375
14376 =item SEE ALSO
14377
14378 =item COPYRIGHT
14379
14380 =back
14381
14382 =head2 Pod::InputObjects - objects representing POD input paragraphs,
14383 commands, etc.
14384
14385 =over 4
14386
14387 =item SYNOPSIS
14388
14389 =item REQUIRES
14390
14391 =item EXPORTS
14392
14393 =item DESCRIPTION
14394
14395 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
14396 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
14397
14398 =back
14399
14400 =over 4
14401
14402 =item B<Pod::InputSource>
14403
14404 =back
14405
14406 =over 4
14407
14408 =item B<new()>
14409
14410 =back
14411
14412 =over 4
14413
14414 =item B<name()>
14415
14416 =back
14417
14418 =over 4
14419
14420 =item B<handle()>
14421
14422 =back
14423
14424 =over 4
14425
14426 =item B<was_cutting()>
14427
14428 =back
14429
14430 =over 4
14431
14432 =item B<Pod::Paragraph>
14433
14434 =back
14435
14436 =over 4
14437
14438 =item Pod::Paragraph-E<gt>B<new()>
14439
14440 =back
14441
14442 =over 4
14443
14444 =item $pod_para-E<gt>B<cmd_name()>
14445
14446 =back
14447
14448 =over 4
14449
14450 =item $pod_para-E<gt>B<text()>
14451
14452 =back
14453
14454 =over 4
14455
14456 =item $pod_para-E<gt>B<raw_text()>
14457
14458 =back
14459
14460 =over 4
14461
14462 =item $pod_para-E<gt>B<cmd_prefix()>
14463
14464 =back
14465
14466 =over 4
14467
14468 =item $pod_para-E<gt>B<cmd_separator()>
14469
14470 =back
14471
14472 =over 4
14473
14474 =item $pod_para-E<gt>B<parse_tree()>
14475
14476 =back
14477
14478 =over 4
14479
14480 =item $pod_para-E<gt>B<file_line()>
14481
14482 =back
14483
14484 =over 4
14485
14486 =item B<Pod::InteriorSequence>
14487
14488 =back
14489
14490 =over 4
14491
14492 =item Pod::InteriorSequence-E<gt>B<new()>
14493
14494 =back
14495
14496 =over 4
14497
14498 =item $pod_seq-E<gt>B<cmd_name()>
14499
14500 =back
14501
14502 =over 4
14503
14504 =item $pod_seq-E<gt>B<prepend()>
14505
14506 =back
14507
14508 =over 4
14509
14510 =item $pod_seq-E<gt>B<append()>
14511
14512 =back
14513
14514 =over 4
14515
14516 =item $pod_seq-E<gt>B<nested()>
14517
14518 =back
14519
14520 =over 4
14521
14522 =item $pod_seq-E<gt>B<raw_text()>
14523
14524 =back
14525
14526 =over 4
14527
14528 =item $pod_seq-E<gt>B<left_delimiter()>
14529
14530 =back
14531
14532 =over 4
14533
14534 =item $pod_seq-E<gt>B<right_delimiter()>
14535
14536 =back
14537
14538 =over 4
14539
14540 =item $pod_seq-E<gt>B<parse_tree()>
14541
14542 =back
14543
14544 =over 4
14545
14546 =item $pod_seq-E<gt>B<file_line()>
14547
14548 =back
14549
14550 =over 4
14551
14552 =item Pod::InteriorSequence::B<DESTROY()>
14553
14554 =back
14555
14556 =over 4
14557
14558 =item B<Pod::ParseTree>
14559
14560 =back
14561
14562 =over 4
14563
14564 =item Pod::ParseTree-E<gt>B<new()>
14565
14566 =back
14567
14568 =over 4
14569
14570 =item $ptree-E<gt>B<top()>
14571
14572 =back
14573
14574 =over 4
14575
14576 =item $ptree-E<gt>B<children()>
14577
14578 =back
14579
14580 =over 4
14581
14582 =item $ptree-E<gt>B<prepend()>
14583
14584 =back
14585
14586 =over 4
14587
14588 =item $ptree-E<gt>B<append()>
14589
14590 =back
14591
14592 =over 4
14593
14594 =item $ptree-E<gt>B<raw_text()>
14595
14596 =back
14597
14598 =over 4
14599
14600 =item Pod::ParseTree::B<DESTROY()>
14601
14602 =back
14603
14604 =over 4
14605
14606 =item SEE ALSO
14607
14608 =item AUTHOR
14609
14610 =back
14611
14612 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
14613
14614 =over 4
14615
14616 =item SYNOPSIS
14617
14618 =item DESCRIPTION
14619
14620 =back
14621
14622 =over 4
14623
14624 =item OBJECT METHODS
14625
14626 C<initialize>
14627
14628 =back
14629
14630 =over 4
14631
14632 =item Data Accessors
14633
14634 B<AddPreamble>
14635
14636 =back
14637
14638 B<AddPostamble>
14639
14640 B<Head1Level>
14641
14642 B<Label>
14643
14644 B<LevelNoNum>
14645
14646 B<MakeIndex>
14647
14648 B<ReplaceNAMEwithSection>
14649
14650 B<StartWithNewPage>
14651
14652 B<TableOfContents>
14653
14654 B<UniqueLabels>
14655
14656 B<UserPreamble>
14657
14658 B<UserPostamble>
14659
14660 B<Lists>
14661
14662 =over 4
14663
14664 =item Subclassed methods
14665
14666 =back
14667
14668 B<begin_pod>
14669
14670 B<end_pod>
14671
14672 B<command>
14673
14674 B<verbatim>
14675
14676 B<textblock>
14677
14678 B<interior_sequence>
14679
14680 =over 4
14681
14682 =item List Methods
14683
14684 B<begin_list>
14685
14686 =back
14687
14688 B<end_list>
14689
14690 B<add_item>
14691
14692 =over 4
14693
14694 =item Methods for headings
14695
14696 B<head>
14697
14698 =back
14699
14700 =over 4
14701
14702 =item Internal methods
14703
14704 B<_output>
14705
14706 =back
14707
14708 B<_replace_special_chars>
14709
14710 B<_create_label>
14711
14712 B<_create_index>
14713
14714 B<_clean_latex_commands>
14715
14716 =over 4
14717
14718 =item NOTES
14719
14720 =item SEE ALSO
14721
14722 =item AUTHORS
14723
14724 =item COPYRIGHT
14725
14726 =item REVISION
14727
14728 =back
14729
14730 =head2 Pod::Man - Convert POD data to formatted *roff input
14731
14732 =over 4
14733
14734 =item SYNOPSIS
14735
14736 =item DESCRIPTION
14737
14738 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
14739 release, section
14740
14741 =item DIAGNOSTICS
14742
14743 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
14744 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
14745 escape EE<lt>%sE<gt>, %s:%d: Unknown sequence %s, %s:%d: Unmatched =back
14746
14747 =item BUGS
14748
14749 =item SEE ALSO
14750
14751 =item AUTHOR
14752
14753 =item COPYRIGHT AND LICENSE
14754
14755 =back
14756
14757 =head2 Pod::ParseLink -- Parse an L<> formatting code in POD text
14758
14759 =over 4
14760
14761 =item SYNOPSIS
14762
14763 =item DESCRIPTION
14764
14765 =item AUTHOR
14766
14767 =item COPYRIGHT AND LICENSE
14768
14769 =back
14770
14771 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
14772
14773 =over 4
14774
14775 =item SYNOPSIS
14776
14777 =item DESCRIPTION
14778
14779 =back
14780
14781 =over 4
14782
14783 =item Pod::List
14784
14785 Pod::List-E<gt>new()
14786
14787 =back
14788
14789 $list-E<gt>file()
14790
14791 $list-E<gt>start()
14792
14793 $list-E<gt>indent()
14794
14795 $list-E<gt>type()
14796
14797 $list-E<gt>rx()
14798
14799 $list-E<gt>item()
14800
14801 $list-E<gt>parent()
14802
14803 $list-E<gt>tag()
14804
14805 =over 4
14806
14807 =item Pod::Hyperlink
14808
14809 Pod::Hyperlink-E<gt>new()
14810
14811 =back
14812
14813 $link-E<gt>parse($string)
14814
14815 $link-E<gt>markup($string)
14816
14817 $link-E<gt>text()
14818
14819 $link-E<gt>warning()
14820
14821 $link-E<gt>file(), $link-E<gt>line()
14822
14823 $link-E<gt>page()
14824
14825 $link-E<gt>node()
14826
14827 $link-E<gt>alttext()
14828
14829 $link-E<gt>type()
14830
14831 $link-E<gt>link()
14832
14833 =over 4
14834
14835 =item Pod::Cache
14836
14837 Pod::Cache-E<gt>new()
14838
14839 =back
14840
14841 $cache-E<gt>item()
14842
14843 $cache-E<gt>find_page($name)
14844
14845 =over 4
14846
14847 =item Pod::Cache::Item
14848
14849 Pod::Cache::Item-E<gt>new()
14850
14851 =back
14852
14853 $cacheitem-E<gt>page()
14854
14855 $cacheitem-E<gt>description()
14856
14857 $cacheitem-E<gt>path()
14858
14859 $cacheitem-E<gt>file()
14860
14861 $cacheitem-E<gt>nodes()
14862
14863 $cacheitem-E<gt>find_node($name)
14864
14865 $cacheitem-E<gt>idx()
14866
14867 =over 4
14868
14869 =item AUTHOR
14870
14871 =item SEE ALSO
14872
14873 =back
14874
14875 =head2 Pod::Parser - base class for creating POD filters and translators
14876
14877 =over 4
14878
14879 =item SYNOPSIS
14880
14881 =item REQUIRES
14882
14883 =item EXPORTS
14884
14885 =item DESCRIPTION
14886
14887 =item QUICK OVERVIEW
14888
14889 =item PARSING OPTIONS
14890
14891 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
14892 B<-warnings> (default: unset)
14893
14894 =back
14895
14896 =over 4
14897
14898 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
14899
14900 =back
14901
14902 =over 4
14903
14904 =item B<command()>
14905
14906 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
14907
14908 =back
14909
14910 =over 4
14911
14912 =item B<verbatim()>
14913
14914 C<$text>, C<$line_num>, C<$pod_para>
14915
14916 =back
14917
14918 =over 4
14919
14920 =item B<textblock()>
14921
14922 C<$text>, C<$line_num>, C<$pod_para>
14923
14924 =back
14925
14926 =over 4
14927
14928 =item B<interior_sequence()>
14929
14930 =back
14931
14932 =over 4
14933
14934 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
14935
14936 =back
14937
14938 =over 4
14939
14940 =item B<new()>
14941
14942 =back
14943
14944 =over 4
14945
14946 =item B<initialize()>
14947
14948 =back
14949
14950 =over 4
14951
14952 =item B<begin_pod()>
14953
14954 =back
14955
14956 =over 4
14957
14958 =item B<begin_input()>
14959
14960 =back
14961
14962 =over 4
14963
14964 =item B<end_input()>
14965
14966 =back
14967
14968 =over 4
14969
14970 =item B<end_pod()>
14971
14972 =back
14973
14974 =over 4
14975
14976 =item B<preprocess_line()>
14977
14978 =back
14979
14980 =over 4
14981
14982 =item B<preprocess_paragraph()>
14983
14984 =back
14985
14986 =over 4
14987
14988 =item METHODS FOR PARSING AND PROCESSING
14989
14990 =back
14991
14992 =over 4
14993
14994 =item B<parse_text()>
14995
14996 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
14997 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
14998 I<code-ref>|I<method-name>
14999
15000 =back
15001
15002 =over 4
15003
15004 =item B<interpolate()>
15005
15006 =back
15007
15008 =over 4
15009
15010 =item B<parse_paragraph()>
15011
15012 =back
15013
15014 =over 4
15015
15016 =item B<parse_from_filehandle()>
15017
15018 =back
15019
15020 =over 4
15021
15022 =item B<parse_from_file()>
15023
15024 =back
15025
15026 =over 4
15027
15028 =item ACCESSOR METHODS
15029
15030 =back
15031
15032 =over 4
15033
15034 =item B<errorsub()>
15035
15036 =back
15037
15038 =over 4
15039
15040 =item B<cutting()>
15041
15042 =back
15043
15044 =over 4
15045
15046 =item B<parseopts()>
15047
15048 =back
15049
15050 =over 4
15051
15052 =item B<output_file()>
15053
15054 =back
15055
15056 =over 4
15057
15058 =item B<output_handle()>
15059
15060 =back
15061
15062 =over 4
15063
15064 =item B<input_file()>
15065
15066 =back
15067
15068 =over 4
15069
15070 =item B<input_handle()>
15071
15072 =back
15073
15074 =over 4
15075
15076 =item B<input_streams()>
15077
15078 =back
15079
15080 =over 4
15081
15082 =item B<top_stream()>
15083
15084 =back
15085
15086 =over 4
15087
15088 =item PRIVATE METHODS AND DATA
15089
15090 =back
15091
15092 =over 4
15093
15094 =item B<_push_input_stream()>
15095
15096 =back
15097
15098 =over 4
15099
15100 =item B<_pop_input_stream()>
15101
15102 =back
15103
15104 =over 4
15105
15106 =item TREE-BASED PARSING
15107
15108 =item SEE ALSO
15109
15110 =item AUTHOR
15111
15112 =back
15113
15114 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
15115
15116 =over 4
15117
15118 =item SYNOPSIS
15119
15120 =item DESCRIPTION
15121
15122 =over 4
15123
15124 =item EXPORT
15125
15126 =back
15127
15128 =item AUTHOR
15129
15130 =item SEE ALSO
15131
15132 =back
15133
15134 =head2 Pod::Select, podselect() - extract selected sections of POD from
15135 input
15136
15137 =over 4
15138
15139 =item SYNOPSIS
15140
15141 =item REQUIRES
15142
15143 =item EXPORTS
15144
15145 =item DESCRIPTION
15146
15147 =item SECTION SPECIFICATIONS
15148
15149 =item RANGE SPECIFICATIONS
15150
15151 =back
15152
15153 =over 4
15154
15155 =item OBJECT METHODS
15156
15157 =back
15158
15159 =over 4
15160
15161 =item B<curr_headings()>
15162
15163 =back
15164
15165 =over 4
15166
15167 =item B<select()>
15168
15169 =back
15170
15171 =over 4
15172
15173 =item B<add_selection()>
15174
15175 =back
15176
15177 =over 4
15178
15179 =item B<clear_selections()>
15180
15181 =back
15182
15183 =over 4
15184
15185 =item B<match_section()>
15186
15187 =back
15188
15189 =over 4
15190
15191 =item B<is_selected()>
15192
15193 =back
15194
15195 =over 4
15196
15197 =item EXPORTED FUNCTIONS
15198
15199 =back
15200
15201 =over 4
15202
15203 =item B<podselect()>
15204
15205 B<-output>, B<-sections>, B<-ranges>
15206
15207 =back
15208
15209 =over 4
15210
15211 =item PRIVATE METHODS AND DATA
15212
15213 =back
15214
15215 =over 4
15216
15217 =item B<_compile_section_spec()>
15218
15219 =back
15220
15221 =over 4
15222
15223 =item $self->{_SECTION_HEADINGS}
15224
15225 =back
15226
15227 =over 4
15228
15229 =item $self->{_SELECTED_SECTIONS}
15230
15231 =back
15232
15233 =over 4
15234
15235 =item SEE ALSO
15236
15237 =item AUTHOR
15238
15239 =back
15240
15241 =head2 Pod::Text - Convert POD data to formatted ASCII text
15242
15243 =over 4
15244
15245 =item SYNOPSIS
15246
15247 =item DESCRIPTION
15248
15249 alt, code, indent, loose, quotes, sentence, width
15250
15251 =item DIAGNOSTICS
15252
15253 Bizarre space in item, Item called without tag, Can't open %s for reading:
15254 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph
15255 "%s", %s:%d: Unknown escape: %s, %s:%d: Unknown sequence: %s, %s:%d:
15256 Unmatched =back
15257
15258 =item RESTRICTIONS
15259
15260 =item NOTES
15261
15262 =item SEE ALSO
15263
15264 =item AUTHOR
15265
15266 =item COPYRIGHT AND LICENSE
15267
15268 =back
15269
15270 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
15271
15272 =over 4
15273
15274 =item SYNOPSIS
15275
15276 =item DESCRIPTION
15277
15278 =item BUGS
15279
15280 =item SEE ALSO
15281
15282 =item AUTHOR
15283
15284 =item COPYRIGHT AND LICENSE
15285
15286 =back
15287
15288 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
15289 text
15290
15291 =over 4
15292
15293 =item SYNOPSIS
15294
15295 =item DESCRIPTION
15296
15297 =item BUGS
15298
15299 =item SEE ALSO
15300
15301 =item AUTHOR
15302
15303 =item COPYRIGHT AND LICENSE
15304
15305 =back
15306
15307 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
15308 text with format escapes
15309
15310 =over 4
15311
15312 =item SYNOPSIS
15313
15314 =item DESCRIPTION
15315
15316 =item SEE ALSO
15317
15318 =item AUTHOR
15319
15320 =item COPYRIGHT AND LICENSE
15321
15322 =back
15323
15324 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
15325 documentation
15326
15327 =over 4
15328
15329 =item SYNOPSIS
15330
15331 =item ARGUMENTS
15332
15333 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
15334 C<-pathlist>
15335
15336 =item DESCRIPTION
15337
15338 =item EXAMPLES
15339
15340 =over 4
15341
15342 =item Recommended Use
15343
15344 =back
15345
15346 =item CAVEATS
15347
15348 =item AUTHOR
15349
15350 =item ACKNOWLEDGEMENTS
15351
15352 =back
15353
15354 =head2 SDBM_File - Tied access to sdbm files
15355
15356 =over 4
15357
15358 =item SYNOPSIS
15359
15360 =item DESCRIPTION
15361
15362 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
15363
15364 =item DIAGNOSTICS
15365
15366 =over 4
15367
15368 =item C<sdbm store returned -1, errno 22, key "..." at ...>
15369
15370 =back
15371
15372 =item BUGS AND WARNINGS
15373
15374 =back
15375
15376 =head2 Safe - Compile and execute code in restricted compartments
15377
15378 =over 4
15379
15380 =item SYNOPSIS
15381
15382 =item DESCRIPTION
15383
15384 a new namespace, an operator mask
15385
15386 =item WARNING
15387
15388 =over 4
15389
15390 =item RECENT CHANGES
15391
15392 =item Methods in class Safe
15393
15394 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
15395 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
15396 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
15397 root (NAMESPACE), mask (MASK)
15398
15399 =item Some Safety Issues
15400
15401 Memory, CPU, Snooping, Signals, State Changes
15402
15403 =item AUTHOR
15404
15405 =back
15406
15407 =back
15408
15409 =head2 Scalar::Util - A selection of general-utility scalar subroutines
15410
15411 =over 4
15412
15413 =item SYNOPSIS
15414
15415 =item DESCRIPTION
15416
15417 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
15418 EXPR, tainted EXPR, weaken REF
15419
15420 =item COPYRIGHT
15421
15422 =item BLATANT PLUG
15423
15424 =back
15425
15426 =head2 Search::Dict, look - search for key in dictionary file
15427
15428 =over 4
15429
15430 =item SYNOPSIS
15431
15432 =item DESCRIPTION
15433
15434 =back
15435
15436 =head2 SelectSaver - save and restore selected file handle
15437
15438 =over 4
15439
15440 =item SYNOPSIS
15441
15442 =item DESCRIPTION
15443
15444 =back
15445
15446 =head2 SelfLoader - load functions only on demand
15447
15448 =over 4
15449
15450 =item SYNOPSIS
15451
15452 =item DESCRIPTION
15453
15454 =over 4
15455
15456 =item The __DATA__ token
15457
15458 =item SelfLoader autoloading
15459
15460 =item Autoloading and package lexicals
15461
15462 =item SelfLoader and AutoLoader
15463
15464 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
15465
15466 =item Classes and inherited methods.
15467
15468 =back
15469
15470 =item Multiple packages and fully qualified subroutine names
15471
15472 =back
15473
15474 =head2 Shell - run shell commands transparently within perl
15475
15476 =over 4
15477
15478 =item SYNOPSIS
15479
15480 =item DESCRIPTION
15481
15482 =over 4
15483
15484 =item OBJECT ORIENTED SYNTAX
15485
15486 =back
15487
15488 =item AUTHOR
15489
15490 =back
15491
15492 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
15493 socket.h defines and structure manipulators 
15494
15495 =over 4
15496
15497 =item SYNOPSIS
15498
15499 =item DESCRIPTION
15500
15501 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
15502 INADDR_LOOPBACK, INADDR_NONE, sockaddr_in PORT, ADDRESS, sockaddr_in
15503 SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS, unpack_sockaddr_in
15504 SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un SOCKADDR_UN,
15505 pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
15506
15507 =back
15508
15509 =head2 Storable - persistency for perl data structures
15510
15511 =over 4
15512
15513 =item SYNOPSIS
15514
15515 =item DESCRIPTION
15516
15517 =item MEMORY STORE
15518
15519 =item ADVISORY LOCKING
15520
15521 =item SPEED
15522
15523 =item CANONICAL REPRESENTATION
15524
15525 =item ERROR REPORTING
15526
15527 =item WIZARDS ONLY
15528
15529 =over 4
15530
15531 =item Hooks
15532
15533 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
15534 I<serialized>, ..
15535
15536 =item Predicates
15537
15538 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
15539 C<Storable::is_retrieving>
15540
15541 =item Recursion
15542
15543 =item Deep Cloning
15544
15545 =back
15546
15547 =item EXAMPLES
15548
15549 =item WARNING
15550
15551 =item BUGS
15552
15553 =item CREDITS
15554
15555 =item TRANSLATIONS
15556
15557 =item AUTHOR
15558
15559 =item SEE ALSO
15560
15561 =back
15562
15563 =head2 Switch - A switch statement for Perl
15564
15565 =over 4
15566
15567 =item VERSION
15568
15569 =item SYNOPSIS
15570
15571 =item BACKGROUND
15572
15573 =item DESCRIPTION
15574
15575 =over 4
15576
15577 =item Allowing fall-through
15578
15579 =item Automating fall-through
15580
15581 =item Alternative syntax
15582
15583 =item Higher-order Operations
15584
15585 =back
15586
15587 =item DEPENDENCIES
15588
15589 =item AUTHOR
15590
15591 =item BUGS
15592
15593 =item LIMITATION
15594
15595 =item COPYRIGHT
15596
15597 =back
15598
15599 =head2 Symbol - manipulate Perl symbols and their names
15600
15601 =over 4
15602
15603 =item SYNOPSIS
15604
15605 =item DESCRIPTION
15606
15607 =back
15608
15609 =head2 Sys::Hostname - Try every conceivable way to get hostname
15610
15611 =over 4
15612
15613 =item SYNOPSIS
15614
15615 =item DESCRIPTION
15616
15617 =item AUTHOR
15618
15619 =back
15620
15621 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
15622 interface to the UNIX syslog(3) calls
15623
15624 =over 4
15625
15626 =item SYNOPSIS
15627
15628 =item DESCRIPTION
15629
15630 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
15631 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
15632 closelog
15633
15634 =item EXAMPLES
15635
15636 =item SEE ALSO
15637
15638 =item AUTHOR
15639
15640 =back
15641
15642 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
15643 Perl interface to the UNIX syslog(3) calls
15644
15645 =over 4
15646
15647 =item SYNOPSIS
15648
15649 =item DESCRIPTION
15650
15651 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
15652 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
15653 closelog
15654
15655 =item EXAMPLES
15656
15657 =item SEE ALSO
15658
15659 =item AUTHOR
15660
15661 =back
15662
15663 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
15664
15665 =over 4
15666
15667 =item SYNOPSIS
15668
15669 =item DESCRIPTION
15670
15671 =item DIAGNOSTICS
15672
15673 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
15674 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
15675 comma allowed after filehandle, No name for escape sequence %s
15676
15677 =item ENVIRONMENT
15678
15679 ANSI_COLORS_DISABLED
15680
15681 =item RESTRICTIONS
15682
15683 =item NOTES
15684
15685 =item SEE ALSO
15686
15687 =item AUTHORS
15688
15689 =item LICENSE
15690
15691 =back
15692
15693 =head2 Term::Cap - Perl termcap interface
15694
15695 =over 4
15696
15697 =item SYNOPSIS
15698
15699 =item DESCRIPTION
15700
15701 =item EXAMPLES
15702
15703 =back
15704
15705 =head2 Term::Complete - Perl word completion module
15706
15707 =over 4
15708
15709 =item SYNOPSIS
15710
15711 =item DESCRIPTION
15712
15713 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
15714
15715 =item DIAGNOSTICS
15716
15717 =item BUGS
15718
15719 =item AUTHOR
15720
15721 =back
15722
15723 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
15724 no real package is found, substitutes stubs instead of basic functions.
15725
15726 =over 4
15727
15728 =item SYNOPSIS
15729
15730 =item DESCRIPTION
15731
15732 =item Minimal set of supported functions
15733
15734 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
15735 C<MinLine>, C<findConsole>, Attribs, C<Features>
15736
15737 =item Additional supported functions
15738
15739 C<tkRunning>, C<ornaments>, C<newTTY>
15740
15741 =item EXPORTS
15742
15743 =item ENVIRONMENT
15744
15745 =item CAVEATS
15746
15747 =back
15748
15749 =head2 Test - provides a simple framework for writing test scripts
15750
15751 =over 4
15752
15753 =item SYNOPSIS
15754
15755 =item DESCRIPTION
15756
15757 =over 4
15758
15759 =item Functions
15760
15761 B<plan>
15762
15763 =back
15764
15765 =back
15766
15767 B<_to_value>
15768
15769 B<ok>
15770
15771 =over 4
15772
15773 =item TEST TYPES
15774
15775 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
15776
15777 =item ONFAIL
15778
15779 =item BUGS and CAVEATS
15780
15781 =item TODO
15782
15783 =item SEE ALSO
15784
15785 =item AUTHOR
15786
15787 =back
15788
15789 =head2 Test::Builder - Backend for building test libraries
15790
15791 =over 4
15792
15793 =item SYNOPSIS
15794
15795 =item DESCRIPTION
15796
15797 =over 4
15798
15799 =item Construction
15800
15801 B<new>
15802
15803 =back
15804
15805 =back
15806
15807 =over 4
15808
15809 =item Setting up tests
15810
15811 B<exported_to>
15812
15813 =back
15814
15815 B<plan>
15816
15817 B<expected_tests>
15818
15819 B<no_plan>
15820
15821 B<skip_all>
15822
15823 =over 4
15824
15825 =item Running tests
15826
15827 B<ok>
15828
15829 =back
15830
15831 B<is_eq>, B<is_num>
15832
15833 B<like>
15834
15835 B<skip>
15836
15837 B<skip_rest>
15838
15839 =over 4
15840
15841 =item Test style
15842
15843 B<level>
15844
15845 =back
15846
15847 B<use_numbers>
15848
15849 B<no_header>, B<no_ending>
15850
15851 =over 4
15852
15853 =item Output
15854
15855 B<diag>
15856
15857 =back
15858
15859 B<_print>
15860
15861 B<output>, B<failure_output>, B<todo_output>
15862
15863 =over 4
15864
15865 =item Test Status and Info
15866
15867 B<current_test>
15868
15869 =back
15870
15871 B<summary>
15872
15873 B<details>  I<UNIMPLEMENTED>, B<todo>
15874
15875 B<caller>
15876
15877 B<_sanity_check>
15878
15879 B<_whoa>
15880
15881 B<_my_exit>
15882
15883 =over 4
15884
15885 =item EXAMPLES
15886
15887 =item AUTHOR
15888
15889 =item SEE ALSO
15890
15891 =back
15892
15893 =head2 Test::Harness - run perl standard test scripts with statistics
15894
15895 =over 4
15896
15897 =item SYNOPSIS
15898
15899 =item DESCRIPTION
15900
15901 =over 4
15902
15903 =item The test script output
15904
15905 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>,
15906 B<$Test::Harness::verbose>, B<$Test::Harness::switches>, B<Skipping tests>,
15907 B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything else>
15908
15909 =item Failure
15910
15911 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
15912 Failed>
15913
15914 =item Functions
15915
15916 B<runtests>
15917
15918 =back
15919
15920 =back
15921
15922 B<_all_ok>
15923
15924 B<_globdir>
15925
15926 B<_run_all_tests>
15927
15928 B<_mk_leader>
15929
15930 =over 4
15931
15932 =item EXPORT
15933
15934 =item DIAGNOSTICS
15935
15936 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
15937 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
15938 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
15939 %s>, C<FAILED--Further testing stopped%s>
15940
15941 =item ENVIRONMENT
15942
15943 C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>, C<HARNESS_COMPILE_TEST>,
15944 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_COLUMNS>,
15945 C<HARNESS_ACTIVE>
15946
15947 =item EXAMPLE
15948
15949 =item SEE ALSO
15950
15951 =item AUTHORS
15952
15953 =item TODO
15954
15955 =item BUGS
15956
15957 =back
15958
15959 =head2 Test::More - yet another framework for writing test scripts
15960
15961 =over 4
15962
15963 =item SYNOPSIS
15964
15965 =item DESCRIPTION
15966
15967 =over 4
15968
15969 =item I love it when a plan comes together
15970
15971 =back
15972
15973 =back
15974
15975 =over 4
15976
15977 =item Test names
15978
15979 =item I'm ok, you're not ok.
15980
15981 B<ok>
15982
15983 =back
15984
15985 B<is>, B<isnt>
15986
15987 B<like>
15988
15989 B<can_ok>
15990
15991 B<isa_ok>
15992
15993 B<pass>, B<fail>
15994
15995 =over 4
15996
15997 =item Module tests
15998
15999 B<use_ok>
16000
16001 =back
16002
16003 B<require_ok>
16004
16005 =over 4
16006
16007 =item Conditional tests
16008
16009 B<SKIP: BLOCK>
16010
16011 =back
16012
16013 B<TODO: BLOCK>
16014
16015 =over 4
16016
16017 =item Comparision functions
16018
16019 B<is_deeply>
16020
16021 =back
16022
16023 B<eq_array>
16024
16025 B<eq_hash>
16026
16027 B<eq_set>
16028
16029 =over 4
16030
16031 =item NOTES
16032
16033 =item BUGS and CAVEATS
16034
16035 Making your own ok(), The eq_* family have some caveats, Test::Harness
16036 upgrades
16037
16038 =item AUTHOR
16039
16040 =item HISTORY
16041
16042 =item SEE ALSO
16043
16044 =back
16045
16046 =head2 Test::Simple - Basic utilities for writing tests.
16047
16048 =over 4
16049
16050 =item SYNOPSIS
16051
16052 =item DESCRIPTION
16053
16054 B<ok>
16055
16056 =back
16057
16058 =over 4
16059
16060 =item EXAMPLE
16061
16062 =item CAVEATS
16063
16064 =item NOTES
16065
16066 =item HISTORY
16067
16068 =item AUTHOR
16069
16070 =item SEE ALSO
16071
16072 L<Test::More>, L<Test>, L<Test::Unit>, L<Pod::Tests>, L<SelfTest>,
16073 L<Test::Harness>
16074
16075 =back
16076
16077 =head2 Test::Tutorial - A tutorial about writing really basic tests
16078
16079 =over 4
16080
16081 =item DESCRIPTION
16082
16083 =over 4
16084
16085 =item Nuts and bolts of testing.
16086
16087 =item Where to start?
16088
16089 =item Names
16090
16091 =item Test the manual
16092
16093 =item Sometimes the tests are wrong
16094
16095 =item Testing lots of values
16096
16097 =item Informative names
16098
16099 =item Skipping tests
16100
16101 =item Todo tests
16102
16103 =item Testing with taint mode.
16104
16105 =back
16106
16107 =item FOOTNOTES
16108
16109 =back
16110
16111 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
16112
16113 =over 4
16114
16115 =item SYNOPSIS
16116
16117 =item DESCRIPTION
16118
16119 =item EXAMPLE
16120
16121 =back
16122
16123 =head2 Text::Balanced - Extract delimited text sequences from strings.
16124
16125 =over 4
16126
16127 =item SYNOPSIS
16128
16129 =item DESCRIPTION
16130
16131 =over 4
16132
16133 =item General behaviour in list contexts
16134
16135 [0], [1], [2]
16136
16137 =item General behaviour in scalar and void contexts
16138
16139 =item A note about prefixes
16140
16141 =item C<extract_delimited>
16142
16143 =item C<extract_bracketed>
16144
16145 =item C<extract_tagged>
16146
16147 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
16148 [0], [1], [2], [3], [4], [5]
16149
16150 =item C<gen_extract_tagged>
16151
16152 =item C<extract_quotelike>
16153
16154 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
16155
16156 =item C<extract_quotelike> and "here documents"
16157
16158 [0], [1], [2], [3], [4], [5], [6], [7..10]
16159
16160 =item C<extract_codeblock>
16161
16162 =item C<extract_multiple>
16163
16164 =item C<gen_delimited_pat>
16165
16166 =back
16167
16168 =item DIAGNOSTICS
16169
16170  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
16171 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
16172 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
16173 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
16174 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
16175 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
16176 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
16177 after dereferencer>, C<Did not find expected opening bracket at %s>,
16178 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
16179 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
16180 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
16181 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
16182 tag>
16183
16184 =item AUTHOR
16185
16186 =item BUGS AND IRRITATIONS
16187
16188 =item COPYRIGHT
16189
16190 =back
16191
16192 =head2 Text::ParseWords - parse text into an array of tokens or array of
16193 arrays
16194
16195 =over 4
16196
16197 =item SYNOPSIS
16198
16199 =item DESCRIPTION
16200
16201 =item EXAMPLES
16202
16203 =item AUTHORS
16204
16205 =back
16206
16207 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
16208 by Knuth
16209
16210 =over 4
16211
16212 =item SYNOPSIS
16213
16214 =item DESCRIPTION
16215
16216 =item EXAMPLES
16217
16218 =item LIMITATIONS
16219
16220 =item AUTHOR
16221
16222 =back
16223
16224 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
16225 unexpand(1)
16226
16227 =over 4
16228
16229 =item SYNOPSIS
16230
16231 =item DESCRIPTION
16232
16233 =item BUGS
16234
16235 =item AUTHOR
16236
16237 =back
16238
16239 =head2 Text::Wrap - line wrapping to form simple paragraphs
16240
16241 =over 4
16242
16243 =item SYNOPSIS 
16244
16245 =item DESCRIPTION
16246
16247 =item OVERRIDES
16248
16249 =item EXAMPLE
16250
16251 =item AUTHOR
16252
16253 =back
16254
16255 =head2 Thread - manipulate threads in Perl
16256
16257 =over 4
16258
16259 =item CAVEAT
16260
16261 =item SYNOPSIS
16262
16263 =item DESCRIPTION
16264
16265 =item FUNCTIONS
16266
16267 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
16268 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
16269 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
16270
16271 =item METHODS
16272
16273 join, eval, detach, equal, tid, flags, done
16274
16275 =item LIMITATIONS
16276
16277 =item SEE ALSO
16278
16279 =back
16280
16281 =head2 Thread::Queue - thread-safe queues
16282
16283 =over 4
16284
16285 =item SYNOPSIS
16286
16287 =item DESCRIPTION
16288
16289 =item FUNCTIONS AND METHODS
16290
16291 new, enqueue LIST, dequeue, dequeue_nb, pending
16292
16293 =item SEE ALSO
16294
16295 =back
16296
16297 =head2 Thread::Semaphore - thread-safe semaphores
16298
16299 =over 4
16300
16301 =item SYNOPSIS
16302
16303 =item DESCRIPTION
16304
16305 =item FUNCTIONS AND METHODS
16306
16307 new, new NUMBER, down, down NUMBER, up, up NUMBER
16308
16309 =back
16310
16311 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
16312
16313 =over 4
16314
16315 =item SYNOPSIS
16316
16317 =item DESCRIPTION
16318
16319 =item BUGS
16320
16321 =back
16322
16323 =head2 Thread::Specific - thread-specific keys
16324
16325 =over 4
16326
16327 =item SYNOPSIS
16328
16329 =item DESCRIPTION
16330
16331 =back
16332
16333 =head2 Tie::Array - base class for tied arrays
16334
16335 =over 4
16336
16337 =item SYNOPSIS
16338
16339 =item DESCRIPTION
16340
16341 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
16342 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
16343 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
16344 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
16345
16346 =item CAVEATS
16347
16348 =item AUTHOR
16349
16350 =back
16351
16352 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
16353 handles
16354
16355 =over 4
16356
16357 =item SYNOPSIS
16358
16359 =item DESCRIPTION
16360
16361 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
16362 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
16363 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
16364 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
16365
16366 =item MORE INFORMATION
16367
16368 =item COMPATIBILITY
16369
16370 =back
16371
16372 =head2 Tie::Hash, Tie::StdHash - base class definitions for tied hashes
16373
16374 =over 4
16375
16376 =item SYNOPSIS
16377
16378 =item DESCRIPTION
16379
16380 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
16381 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
16382
16383 =item CAVEATS
16384
16385 =item MORE INFORMATION
16386
16387 =back
16388
16389 =head2 Tie::RefHash - use references as hash keys
16390
16391 =over 4
16392
16393 =item SYNOPSIS
16394
16395 =item DESCRIPTION
16396
16397 =item EXAMPLE
16398
16399 =item AUTHOR
16400
16401 =item VERSION
16402
16403 =item SEE ALSO
16404
16405 =back
16406
16407 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
16408 scalars
16409
16410 =over 4
16411
16412 =item SYNOPSIS
16413
16414 =item DESCRIPTION
16415
16416 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
16417
16418 =item MORE INFORMATION
16419
16420 =back
16421
16422 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
16423
16424 =over 4
16425
16426 =item SYNOPSIS
16427
16428 =item DESCRIPTION
16429
16430 =item CAVEATS
16431
16432 =back
16433
16434 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
16435 timers
16436
16437 =over 4
16438
16439 =item SYNOPSIS
16440
16441 =item DESCRIPTION
16442
16443 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
16444 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
16445 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
16446 getitimer ( $which )
16447
16448 =item EXAMPLES
16449
16450 =item C API
16451
16452 =item CAVEATS
16453
16454 =item AUTHORS
16455
16456 =item REVISION
16457
16458 =item COPYRIGHT
16459
16460 =back
16461
16462 =head2 Time::Local - efficiently compute time from local and GMT time
16463
16464 =over 4
16465
16466 =item SYNOPSIS
16467
16468 =item DESCRIPTION
16469
16470 =item IMPLEMENTATION
16471
16472 =item BUGS
16473
16474 =back
16475
16476 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
16477 function
16478
16479 =over 4
16480
16481 =item SYNOPSIS
16482
16483 =item DESCRIPTION
16484
16485 =item NOTE
16486
16487 =item AUTHOR
16488
16489 =back
16490
16491 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
16492 function
16493
16494 =over 4
16495
16496 =item SYNOPSIS
16497
16498 =item DESCRIPTION
16499
16500 =item NOTE
16501
16502 =item AUTHOR
16503
16504 =back
16505
16506 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
16507
16508 =over 4
16509
16510 =item SYNOPSIS
16511
16512 =item DESCRIPTION
16513
16514 =item AUTHOR
16515
16516 =back
16517
16518 =head2 UNIVERSAL - base class for ALL classes (blessed references)
16519
16520 =over 4
16521
16522 =item SYNOPSIS
16523
16524 =item DESCRIPTION
16525
16526 $obj->isa( TYPE ), CLASS->isa( TYPE ), isa( VAL, TYPE ), $obj->can( METHOD
16527 ), CLASS->can( METHOD ), can( VAL, METHOD ), VERSION ( [ REQUIRE ] )
16528
16529 =back
16530
16531 =head2 Unicode::Collate - use UCA (Unicode Collation Algorithm)
16532
16533 =over 4
16534
16535 =item SYNOPSIS
16536
16537 =item DESCRIPTION
16538
16539 =over 4
16540
16541 =item Constructor and Tailoring
16542
16543 alternate, backwards, entry, ignoreName, ignoreChar, level, normalization,
16544 overrideCJK, overrideHangul, preprocess, rearrange, table, undefName,
16545 undefChar, katakana_before_hiragana, upper_before_lower
16546
16547 =item Other methods
16548
16549 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
16550 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
16551 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
16552 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
16553 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
16554 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$position =
16555 $Collator-E<gt>index($string, $substring)>, C<($position, $length) =
16556 $Collator-E<gt>index($string, $substring)>
16557
16558 =item EXPORT
16559
16560 =item CAVEAT
16561
16562 =back
16563
16564 =item AUTHOR
16565
16566 =item SEE ALSO
16567
16568 Unicode Collation Algorithm - Unicode TR #10, L<Unicode::Normalize>
16569
16570 =back
16571
16572 =head2 Unicode::Normalize - normalized forms of Unicode text
16573
16574 =over 4
16575
16576 =item SYNOPSIS
16577
16578 =item DESCRIPTION
16579
16580 C<$string_NFD = NFD($raw_string)>, C<$string_NFC = NFC($raw_string)>,
16581 C<$string_NFKD = NFKD($raw_string)>, C<$string_NFKC = NFKC($raw_string)>,
16582 C<$normalized_string = normalize($form_name, $raw_string)>
16583
16584 =over 4
16585
16586 =item EXPORT
16587
16588 =back
16589
16590 =item AUTHOR
16591
16592 =item SEE ALSO
16593
16594 L<Lingua::KO::Hangul::Util>, http://www.unicode.org/unicode/reports/tr15/
16595
16596 =back
16597
16598 =head2 Unicode::UCD - Unicode character database
16599
16600 =over 4
16601
16602 =item SYNOPSIS
16603
16604 =item DESCRIPTION
16605
16606 =back
16607
16608 =over 4
16609
16610 =item charinfo
16611
16612 =back
16613
16614 =over 4
16615
16616 =item charblock
16617
16618 =back
16619
16620 =over 4
16621
16622 =item charscript
16623
16624 =back
16625
16626 =over 4
16627
16628 =item charblocks
16629
16630 =back
16631
16632 =over 4
16633
16634 =item charscripts
16635
16636 =back
16637
16638 =over 4
16639
16640 =item Blocks versus Scripts
16641
16642 =item Matching Scripts and Blocks
16643
16644 =item Code Point Arguments
16645
16646 =item charinrange
16647
16648 =back
16649
16650 =over 4
16651
16652 =item compexcl
16653
16654 =back
16655
16656 =over 4
16657
16658 =item casefold
16659
16660 =back
16661
16662 =over 4
16663
16664 =item casespec
16665
16666 =back
16667
16668 =over 4
16669
16670 =item Unicode::UCD::UnicodeVersion
16671
16672 =back
16673
16674 =over 4
16675
16676 =item Implementation Note
16677
16678 =back
16679
16680 =over 4
16681
16682 =item BUGS
16683
16684 =item AUTHOR
16685
16686 =back
16687
16688 =head2 User::grent - by-name interface to Perl's built-in getgr*()
16689 functions
16690
16691 =over 4
16692
16693 =item SYNOPSIS
16694
16695 =item DESCRIPTION
16696
16697 =item NOTE
16698
16699 =item AUTHOR
16700
16701 =back
16702
16703 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
16704 functions
16705
16706 =over 4
16707
16708 =item SYNOPSIS
16709
16710 =item DESCRIPTION
16711
16712 =over 4
16713
16714 =item System Specifics
16715
16716 =back
16717
16718 =item NOTE
16719
16720 =item AUTHOR
16721
16722 =item HISTORY
16723
16724 March 18th, 2000
16725
16726 =back
16727
16728 =head2 Win32 - Interfaces to some Win32 API Functions
16729
16730 =over 4
16731
16732 =item DESCRIPTION
16733
16734 =over 4
16735
16736 =item Alphabetical Listing of Win32 Functions
16737
16738 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
16739 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
16740 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
16741 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
16742 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
16743 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
16744 Win32::GetNextAvailDrive(), Win32::GetOSVersion(),
16745 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
16746 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
16747 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
16748 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
16749 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
16750 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
16751 Win32::RegisterServer(LIBRARYNAME), Win32::SetCwd(NEWDIRECTORY),
16752 Win32::SetLastError(ERROR), Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS,
16753 PID), Win32::UnregisterServer(LIBRARYNAME)
16754
16755 =back
16756
16757 =back
16758
16759 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
16760
16761 =over 4
16762
16763 =item SYNOPSIS
16764
16765 =item DESCRIPTION
16766
16767 =back
16768
16769 =over 4
16770
16771 =item NOTES
16772
16773 =item AUTHOR
16774
16775 =back
16776
16777 =head2 XSLoader - Dynamically load C libraries into Perl code
16778
16779 =over 4
16780
16781 =item SYNOPSIS
16782
16783 =item DESCRIPTION
16784
16785 =item AUTHOR
16786
16787 =back
16788
16789 =head1 AUXILIARY DOCUMENTATION
16790
16791 Here should be listed all the extra programs' documentation, but they
16792 don't all have manual pages yet:
16793
16794 =over 4
16795
16796 =item a2p
16797
16798 =item s2p
16799
16800 =item find2perl
16801
16802 =item h2ph
16803
16804 =item c2ph
16805
16806 =item h2xs
16807
16808 =item xsubpp
16809
16810 =item pod2man
16811
16812 =item wrapsuid
16813
16814 =back
16815
16816 =head1 AUTHOR
16817
16818 Larry Wall <F<larry@wall.org>>, with the help of oodles
16819 of other folks.
16820