1 # Generated by perlmodlib.PL DO NOT EDIT!
5 perlmodlib - constructing new Perl modules and finding existing ones
9 =head1 THE PERL MODULE LIBRARY
11 Many modules are included the Perl distribution. These are described
12 below, and all end in F<.pm>. You may discover compiled library
13 file (usually ending in F<.so>) or small pieces of modules to be
14 autoloaded (ending in F<.al>); these were automatically generated
15 by the installation process. You may also discover files in the
16 library directory that end in either F<.pl> or F<.ph>. These are
17 old libraries supplied so that old programs that use them still
18 run. The F<.pl> files will all eventually be converted into standard
19 modules, and the F<.ph> files made by B<h2ph> will probably end up
20 as extension modules made by B<h2xs>. (Some F<.ph> values may
21 already be available through the POSIX, Errno, or Fcntl modules.)
22 The B<pl2pm> file in the distribution may help in your conversion,
23 but it's just a mechanical process and therefore far from bulletproof.
25 =head2 Pragmatic Modules
27 They work somewhat like compiler directives (pragmata) in that they
28 tend to affect the compilation of your program, and thus will usually
29 work well only when used within a C<use>, or C<no>. Most of these
30 are lexically scoped, so an inner BLOCK may countermand them
37 which lasts until the end of that BLOCK.
39 Some pragmas are lexically scoped--typically those that affect the
40 C<$^H> hints variable. Others affect the current package instead,
41 like C<use vars> and C<use subs>, which allow you to predeclare a
42 variables or subroutines within a particular I<file> rather than
43 just a block. Such declarations are effective for the entire file
44 for which they were declared. You cannot rescind them with C<no
47 The following pragmas are defined (and have their own documentation).
53 Get/set subroutine or variable attributes
57 Set/get attributes of a subroutine (deprecated)
61 Postpone load of modules until a function is used
65 Establish IS-A relationship with base class at compile time
69 Use MakeMaker's uninstalled version of a package
73 Force byte semantics rather than character semantics
77 Define character names for C<\N{named}> string literal escape.
85 Perl compiler pragma to force verbose warning diagnostics
89 Compile-time class fields
93 Control the filetest permission operators
97 Use integer arithmetic instead of floating point
101 Request less of something from the compiler
105 Manipulate @INC at compile time
109 Use and avoid POSIX locales for built-in operations
113 Set default disciplines for input and output
117 Restrict unsafe operations when compiling
121 Package for overloading perl operations
125 Alter regular expression behaviour
129 Enable simple signal handling
133 Restrict unsafe constructs
141 Enable/disable UTF-8 in source code
145 Predeclare global variable names (obsolete)
149 Control optional warnings
151 =item warnings::register
153 Warnings import function
157 =head2 Standard Modules
159 Standard, bundled modules are all expected to behave in a well-defined
160 manner with respect to namespace pollution because they use the
161 Exporter module. See their own documentation for details.
167 Provide framework for multiple DBMs
171 Load subroutines only on demand
175 Split a package for autoloading
183 Autogenerated data about Perl ops, used to generate bytecode
187 Assemble Perl bytecode
195 Perl compiler's bytecode backend
199 Perl compiler's C backend
203 Perl compiler's optimized C translation backend
207 Walk Perl syntax tree, printing concise info about ops
211 Walk Perl syntax tree, printing debug info about ops
215 Perl compiler backend to produce perl code
217 =item B::Disassembler
219 Disassemble Perl bytecode
227 Show lexical variables used in functions or files
231 Helper module for CC backend
235 Show what stashes are loaded
239 Walk Perl syntax tree, printing terse info about ops
243 Generates cross reference reports for Perl programs
247 Benchmark running times of Perl code
251 Load byte compiled perl code
255 Simple Common Gateway Interface Class
259 Backward compatibility module for CGI.pm
263 CGI routines for writing to the HTTPD (or other) error log
267 Interface to Netscape Cookies
271 CGI Interface for Fast CGI
275 Module to produce nicely formatted HTML code
279 Simple Interface to Server Push
283 Backward compatibility module for defunct CGI::Switch
287 Internal utilities used by CGI module
291 Query, download and build perl modules from CPAN sites
293 =item CPAN::FirstTime
295 Utility for CPAN::Config file Initialization
299 Wrapper around CPAN.pm without using any XS module
303 Warn of errors (from perspective of caller)
311 Declare struct-like datatypes as Perl classes
315 Get pathname of current working directory
319 Programmatic interface to the Perl debugging API (draft, subject to
323 Perl5 access to Berkeley DB version 1.x
325 =item Devel::SelfStubber
327 Generate stubs for a SelfLoading module
331 Supply object methods for directory handles
335 Provides screen dump of Perl data.
339 Use nice English (or awk) names for ugly punctuation variables
343 Perl module that imports environment variables as scalars or arrays
347 Implements default import method for modules
349 =item Exporter::Heavy
353 =item ExtUtils::Command
355 Utilities to replace common UNIX commands in Makefiles etc.
357 =item ExtUtils::Embed
359 Utilities for embedding Perl in C/C++ applications
361 =item ExtUtils::Install
363 Install files from here to there
365 =item ExtUtils::Installed
367 Inventory management of installed modules
369 =item ExtUtils::Liblist
371 Determine libraries to use and how to use them
373 =item ExtUtils::MM_Cygwin
375 Methods to override UN*X behaviour in ExtUtils::MakeMaker
377 =item ExtUtils::MM_OS2
379 Methods to override UN*X behaviour in ExtUtils::MakeMaker
381 =item ExtUtils::MM_Unix
383 Methods used by ExtUtils::MakeMaker
385 =item ExtUtils::MM_VMS
387 Methods to override UN*X behaviour in ExtUtils::MakeMaker
389 =item ExtUtils::MM_Win32
391 Methods to override UN*X behaviour in ExtUtils::MakeMaker
393 =item ExtUtils::MakeMaker
395 Create an extension Makefile
397 =item ExtUtils::Manifest
399 Utilities to write and check a MANIFEST file
401 =item ExtUtils::Mkbootstrap
403 Make a bootstrap file for use by DynaLoader
405 =item ExtUtils::Mksymlists
407 Write linker options files for dynamic extension
409 =item ExtUtils::Packlist
411 Manage .packlist files
413 =item ExtUtils::testlib
415 Add blib/* directories to @INC
419 Replace functions with equivalents which succeed or die
423 Load the C Fcntl.h defines
427 Split a pathname into pieces
429 =item File::CheckTree
431 Run many filetest checks on a tree
435 Compare files or filehandles
439 Copy files or filehandles
443 DOS like globbing and then some
451 Create or remove directory trees
455 Portably perform operations on file names
457 =item File::Spec::Epoc
459 Methods for Epoc file specs
461 =item File::Spec::Functions
463 Portably perform operations on file names
465 =item File::Spec::Mac
469 =item File::Spec::OS2
471 Methods for OS/2 file specs
473 =item File::Spec::Unix
475 Methods used by File::Spec
477 =item File::Spec::VMS
479 Methods for VMS file specs
481 =item File::Spec::Win32
483 Methods for Win32 file specs
487 Return name and handle of a temporary file safely
491 By-name interface to Perl's built-in stat() functions
495 Keep more files open than the system permits
499 Supply object methods for filehandles
503 Locate directory of original perl script
507 Perl5 access to the gdbm library.
511 Extended processing of command line options
515 Process single-character switches with switch clustering
519 Compare 8-bit scalar data according to the current locale
523 Load various IO modules
527 Open a process for both reading and writing
531 Open a process for reading, writing, and error handling
535 Arbitrary length float math package
539 Arbitrary size integer math package
543 Complex numbers and associated mathematical functions
547 Trigonometric functions
551 Check a remote host for reachability
555 By-name interface to Perl's built-in gethost*() functions
559 By-name interface to Perl's built-in getnet*() functions
563 By-name interface to Perl's built-in getproto*() functions
567 By-name interface to Perl's built-in getserv*() functions
571 Generic interface to Perl Compiler backends
575 Disable named opcodes when compiling perl code
579 Perl interface to IEEE Std 1003.1
583 Check pod documents for syntax errors
587 Find POD documents in directory trees
591 Module to convert pod files to HTML
593 =item Pod::InputObjects
595 Objects representing POD input paragraphs, commands, etc.
599 Convert Pod data to formatted Latex
603 Convert POD data to formatted *roff input
605 =item Pod::ParseUtils
607 Helpers for POD parsing and conversion
611 Base class for creating POD filters and translators
615 Perl extension for converting Pod to old style Pod.
619 Extract selected sections of POD from input
623 Convert POD data to formatted ASCII text
625 =item Pod::Text::Color
627 Convert POD data to formatted color ASCII text
629 =item Pod::Text::Overstrike
631 Convert POD data to formatted overstrike text
633 =item Pod::Text::Termcap
635 Convert POD data to ASCII text with format escapes
639 Print a usage message from embedded pod documentation
643 Tied access to sdbm files
647 Compile and execute code in restricted compartments
651 Search for key in dictionary file
655 Save and restore selected file handle
659 Load functions only on demand
663 Run shell commands transparently within perl
667 Load the C socket.h defines and structure manipulators
671 Manipulate Perl symbols and their names
673 =item Term::ANSIColor
675 Color screen output using ANSI escape sequences
679 Perl termcap interface
683 Perl word completion module
687 Perl interface to various C<readline> packages. If
691 Provides a simple framework for writing test scripts
695 Run perl standard test scripts with statistics
699 Create an abbreviation table from a list
701 =item Text::ParseWords
703 Parse text into an array of tokens or array of arrays
707 Implementation of the Soundex Algorithm as Described by Knuth
711 Expand and unexpand tabs per the unix expand(1) and unexpand(1)
715 Line wrapping to form simple paragraphs
719 Manipulate threads in Perl (EXPERIMENTAL, subject to change)
725 =item Thread::Semaphore
727 Thread-safe semaphores
731 Start a thread which runs signal handlers reliably
733 =item Thread::Specific
739 Base class for tied arrays
743 Base class definitions for tied handles
747 Base class definitions for tied hashes
751 Use references as hash keys
755 Base class definitions for tied scalars
757 =item Tie::SubstrHash
759 Fixed-table-size, fixed-key-length hashing
763 Efficiently compute time from local and GMT time
767 By-name interface to Perl's built-in gmtime() function
769 =item Time::localtime
771 By-name interface to Perl's built-in localtime() function
775 Internal object used by Time::gmtime and Time::localtime
779 Base class for ALL classes (blessed references)
783 By-name interface to Perl's built-in getgr*() functions
787 By-name interface to Perl's built-in getpw*() functions
791 Interfaces to some Win32 API Functions
795 To find out I<all> modules installed on your system, including
796 those without documentation or outside the standard release,
799 % find `perl -e 'print "@INC"'` -name '*.pm' -print
801 They should all have their own documentation installed and accessible
802 via your system man(1) command. If you do not have a B<find>
803 program, you can use the Perl B<find2perl> program instead, which
804 generates Perl code as output you can run through perl. If you
805 have a B<man> program but it doesn't find your modules, you'll have
806 to fix your manpath. See L<perl> for details. If you have no
807 system B<man> command, you might try the B<perldoc> program.
809 =head2 Extension Modules
811 Extension modules are written in C (or a mix of Perl and C). They
812 are usually dynamically loaded into Perl if and when you need them,
813 but may also be be linked in statically. Supported extension modules
814 include Socket, Fcntl, and POSIX.
816 Many popular C extension modules do not come bundled (at least, not
817 completely) due to their sizes, volatility, or simply lack of time
818 for adequate testing and configuration across the multitude of
819 platforms on which Perl was beta-tested. You are encouraged to
820 look for them on CPAN (described below), or using web search engines
821 like Alta Vista or Deja News.
825 CPAN stands for Comprehensive Perl Archive Network; it's a globally
826 replicated trove of Perl materials, including documentation, style
827 guides, tricks and traps, alternate ports to non-Unix systems and
828 occasional binary distributions for these. Search engines for
829 CPAN can be found at http://cpan.perl.com/ and at
830 http://theory.uwinnipeg.ca/mod_perl/cpan-search.pl .
832 Most importantly, CPAN includes around a thousand unbundled modules,
833 some of which require a C compiler to build. Major categories of
840 Language Extensions and Documentation Tools
848 Operating System Interfaces
852 Networking, Device Control (modems) and InterProcess Communication
856 Data Types and Data Type Utilities
868 Interfaces to / Emulations of Other Programming Languages
872 File Names, File Systems and File Locking (see also File Handles)
876 String Processing, Language Text Processing, Parsing, and Searching
880 Option, Argument, Parameter, and Configuration File Processing
884 Internationalization and Locale
888 Authentication, Security, and Encryption
892 World Wide Web, HTML, HTTP, CGI, MIME
896 Server and Daemon Utilities
900 Archiving and Compression
904 Images, Pixmap and Bitmap Manipulation, Drawing, and Graphing
912 Control Flow Utilities (callbacks and exceptions etc)
916 File Handle and Input/Output Stream Utilities
920 Miscellaneous Modules
924 Registered CPAN sites as of this writing include the following.
925 You should try to choose one close to you:
935 ftp://ftp.is.co.za/programming/perl/CPAN/
936 ftp://ftp.saix.net/pub/CPAN/
937 ftp://ftpza.co.za/pub/mirrors/cpan/
938 ftp://ftp.sun.ac.za/CPAN/
950 ftp://freesoft.cei.gov.cn/pub/languages/perl/CPAN/
951 http://www2.linuxforum.net/mirror/CPAN/
952 http://cpan.shellhung.org/
953 ftp://ftp.shellhung.org/pub/CPAN
959 http://CPAN.pacific.net.hk/
960 ftp://ftp.pacific.net.hk/pub/mirror/CPAN/
966 http://piksi.itb.ac.id/CPAN/
967 ftp://mirrors.piksi.itb.ac.id/CPAN/
968 http://CPAN.mweb.co.id/
969 ftp://ftp.mweb.co.id/pub/languages/perl/CPAN/
975 http://www.iglu.org.il:/pub/CPAN/
976 ftp://ftp.iglu.org.il/pub/CPAN/
977 http://bioinfo.weizmann.ac.il/pub/software/perl/CPAN/
978 ftp://bioinfo.weizmann.ac.il/pub/software/perl/CPAN/
984 ftp://ftp.u-aizu.ac.jp/pub/lang/perl/CPAN/
985 ftp://ftp.kddlabs.co.jp/CPAN/
986 http://mirror.nucba.ac.jp/mirror/Perl/
987 ftp://mirror.nucba.ac.jp/mirror/Perl/
988 ftp://ftp.meisei-u.ac.jp/pub/CPAN/
989 ftp://ftp.jaist.ac.jp/pub/lang/perl/CPAN/
990 ftp://ftp.dti.ad.jp/pub/lang/CPAN/
991 ftp://ftp.ring.gr.jp/pub/lang/perl/CPAN/
997 ftp://ftp.isu.net.sa/pub/CPAN/
1003 http://cpan.hjc.edu.sg
1004 http://ftp.nus.edu.sg/unix/perl/CPAN/
1005 ftp://ftp.nus.edu.sg/pub/unix/perl/CPAN/
1011 http://CPAN.bora.net/
1012 ftp://ftp.bora.net/pub/CPAN/
1013 http://ftp.kornet.net/CPAN/
1014 ftp://ftp.kornet.net/pub/CPAN/
1015 ftp://ftp.nuri.net/pub/CPAN/
1021 ftp://coda.nctu.edu.tw/UNIX/perl/CPAN
1022 ftp://ftp.ee.ncku.edu.tw/pub/perl/CPAN/
1023 ftp://ftp1.sinica.edu.tw/pub1/perl/CPAN/
1029 http://download.nectec.or.th/CPAN/
1030 ftp://ftp.nectec.or.th/pub/languages/CPAN/
1031 ftp://ftp.cs.riubon.ac.th/pub/mirrors/CPAN/
1035 =head2 Central America
1043 ftp://ftp.linux.co.cr/mirrors/CPAN/
1044 http://ftp.ucr.ac.cr/Unix/CPAN/
1045 ftp://ftp.ucr.ac.cr/pub/Unix/CPAN/
1057 ftp://ftp.tuwien.ac.at/pub/languages/perl/CPAN/
1063 http://ftp.easynet.be/CPAN/
1064 ftp://ftp.easynet.be/CPAN/
1065 ftp://ftp.kulnet.kuleuven.ac.be/pub/mirror/CPAN/
1071 ftp://ftp.ntrl.net/pub/mirrors/CPAN/
1077 ftp://ftp.linux.hr/pub/CPAN/
1083 http://www.fi.muni.cz/pub/perl/
1084 ftp://ftp.fi.muni.cz/pub/perl/
1085 ftp://sunsite.mff.cuni.cz/MIRRORS/ftp.funet.fi/pub/languages/perl/CPAN/
1091 ftp://sunsite.auc.dk/pub/languages/perl/CPAN/
1092 http://www.cpan.dk/CPAN/
1093 ftp://www.cpan.dk/ftp.cpan.org/CPAN/
1099 http://www.mirror.ac.uk/sites/ftp.funet.fi/pub/languages/perl/CPAN
1100 ftp://ftp.mirror.ac.uk/sites/ftp.funet.fi/pub/languages/perl/CPAN/
1101 ftp://ftp.demon.co.uk/pub/mirrors/perl/CPAN/
1102 ftp://ftp.flirble.org/pub/languages/perl/CPAN/
1103 ftp://ftp.plig.org/pub/CPAN/
1104 ftp://sunsite.doc.ic.ac.uk/packages/CPAN/
1105 http://mirror.uklinux.net/CPAN/
1106 ftp://mirror.uklinux.net/pub/CPAN/
1107 ftp://usit.shef.ac.uk/pub/packages/CPAN/
1113 ftp://ftp.ut.ee/pub/languages/perl/CPAN/
1119 ftp://ftp.funet.fi/pub/languages/perl/CPAN/
1125 ftp://cpan.ftp.worldonline.fr/pub/CPAN/
1126 ftp://ftp.club-internet.fr/pub/perl/CPAN/
1127 ftp://ftp.lip6.fr/pub/perl/CPAN/
1128 ftp://ftp.oleane.net/pub/mirrors/CPAN/
1129 ftp://ftp.pasteur.fr/pub/computing/CPAN/
1130 ftp://cpan.cict.fr/pub/CPAN/
1131 ftp://ftp.uvsq.fr/pub/perl/CPAN/
1137 ftp://ftp.rz.ruhr-uni-bochum.de/pub/CPAN/
1138 ftp://ftp.freenet.de/pub/ftp.cpan.org/pub/CPAN/
1139 ftp://ftp.uni-erlangen.de/pub/source/CPAN/
1140 ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/CPAN
1141 ftp://ftp.gigabell.net/pub/CPAN/
1142 http://ftp.gwdg.de/pub/languages/perl/CPAN/
1143 ftp://ftp.gwdg.de/pub/languages/perl/CPAN/
1144 ftp://ftp.uni-hamburg.de/pub/soft/lang/perl/CPAN/
1145 ftp://ftp.leo.org/pub/comp/general/programming/languages/script/perl/CPAN/
1146 ftp://ftp.mpi-sb.mpg.de/pub/perl/CPAN/
1147 ftp://ftp.gmd.de/mirrors/CPAN/
1153 ftp://ftp.forthnet.gr/pub/languages/perl/CPAN
1154 ftp://ftp.ntua.gr/pub/lang/perl/
1160 http://cpan.artifact.hu/
1161 ftp://cpan.artifact.hu/CPAN/
1162 ftp://ftp.kfki.hu/pub/packages/perl/CPAN/
1169 ftp://ftp.gm.is/pub/CPAN/
1175 http://cpan.indigo.ie/
1176 ftp://cpan.indigo.ie/pub/CPAN/
1177 http://sunsite.compapp.dcu.ie/pub/perl/
1178 ftp://sunsite.compapp.dcu.ie/pub/perl/
1184 http://cpan.nettuno.it/
1185 http://gusp.dyndns.org/CPAN/
1186 ftp://gusp.dyndns.org/pub/CPAN
1187 http://softcity.iol.it/cpan
1188 ftp://softcity.iol.it/pub/cpan
1189 ftp://ftp.unina.it/pub/Other/CPAN/
1190 ftp://ftp.unipi.it/pub/mirror/perl/CPAN/
1191 ftp://cis.uniRoma2.it/CPAN/
1192 ftp://ftp.edisontel.it/pub/CPAN_Mirror/
1193 ftp://ftp.flashnet.it/pub/CPAN/
1199 http://kvin.lv/pub/CPAN/
1205 ftp://download.xs4all.nl/pub/mirror/CPAN/
1206 ftp://ftp.nl.uu.net/pub/CPAN/
1207 ftp://ftp.nluug.nl/pub/languages/perl/CPAN/
1208 ftp://ftp.cpan.nl/pub/CPAN/
1209 http://www.cs.uu.nl/mirror/CPAN/
1210 ftp://ftp.cs.uu.nl/mirror/CPAN/
1216 ftp://sunsite.uio.no/pub/languages/perl/CPAN/
1217 ftp://ftp.uit.no/pub/languages/perl/cpan/
1223 ftp://ftp.pk.edu.pl/pub/lang/perl/CPAN/
1224 ftp://ftp.mega.net.pl/pub/mirrors/ftp.perl.com/
1225 ftp://ftp.man.torun.pl/pub/doc/CPAN/
1226 ftp://sunsite.icm.edu.pl/pub/CPAN/
1232 ftp://ftp.ua.pt/pub/CPAN/
1233 ftp://perl.di.uminho.pt/pub/CPAN/
1234 ftp://ftp.ist.utl.pt/pub/CPAN/
1235 ftp://ftp.netc.pt/pub/CPAN/
1241 ftp://archive.logicnet.ro/mirrors/ftp.cpan.org/CPAN/
1242 ftp://ftp.kappa.ro/pub/mirrors/ftp.perl.org/pub/CPAN/
1243 ftp://ftp.dntis.ro/pub/cpan/
1244 ftp://ftp.opsynet.com/cpan/
1245 ftp://ftp.dnttm.ro/pub/CPAN/
1246 ftp://ftp.timisoara.roedu.net/mirrors/CPAN/
1252 ftp://ftp.chg.ru/pub/lang/perl/CPAN/
1253 http://cpan.rinet.ru/
1254 ftp://cpan.rinet.ru/pub/mirror/CPAN/
1255 ftp://ftp.aha.ru/pub/CPAN/
1256 ftp://ftp.sai.msu.su/pub/lang/perl/CPAN/
1262 ftp://ftp.entry.sk/pub/languages/perl/CPAN/
1268 ftp://ftp.arnes.si/software/perl/CPAN/
1274 ftp://ftp.rediris.es/mirror/CPAN/
1275 ftp://ftp.etse.urv.es/pub/perl/
1281 http://ftp.du.se/CPAN/
1282 ftp://ftp.du.se/pub/CPAN/
1283 ftp://ftp.sunet.se/pub/lang/perl/CPAN/
1289 ftp://ftp.danyk.ch/CPAN/
1290 ftp://sunsite.cnlab-switch.ch/mirror/CPAN/
1296 ftp://sunsite.bilkent.edu.tr/pub/languages/CPAN/
1300 =head2 North America
1314 http://sunsite.ualberta.ca/pub/Mirror/CPAN/
1315 ftp://sunsite.ualberta.ca/pub/Mirror/CPAN/
1321 http://theoryx5.uwinnipeg.ca/pub/CPAN/
1322 ftp://theoryx5.uwinnipeg.ca/pub/CPAN/
1328 ftp://cpan.chebucto.ns.ca/pub/CPAN/
1334 ftp://ftp.crc.ca/pub/packages/lang/perl/CPAN/
1340 http://www.msg.com.mx/CPAN/
1341 ftp://ftp.msg.com.mx/pub/CPAN/
1355 http://mirror.hiwaay.net/CPAN/
1356 ftp://mirror.hiwaay.net/CPAN/
1362 http://www.cpan.org/
1363 ftp://ftp.cpan.org/CPAN/
1364 ftp://cpan.nas.nasa.gov/pub/perl/CPAN/
1365 ftp://ftp.digital.com/pub/plan/perl/CPAN/
1366 http://www.kernel.org/pub/mirrors/cpan/
1367 ftp://ftp.kernel.org/pub/mirrors/cpan/
1368 http://www.perl.com/CPAN/
1369 http://download.sourceforge.net/mirrors/CPAN/
1375 ftp://ftp.cs.colorado.edu/pub/perl/CPAN/
1381 ftp://ftp.cise.ufl.edu/pub/perl/CPAN/
1387 ftp://ftp.twoguys.org/CPAN/
1393 http://www.neurogames.com/mirrors/CPAN
1394 http://uiarchive.uiuc.edu/mirrors/ftp/ftp.cpan.org/pub/CPAN/
1395 ftp://uiarchive.uiuc.edu/mirrors/ftp/ftp.cpan.org/pub/CPAN/
1401 ftp://ftp.uwsg.indiana.edu/pub/perl/CPAN/
1402 http://cpan.nitco.com/
1403 ftp://cpan.nitco.com/pub/CPAN/
1404 ftp://cpan.in-span.net/
1405 http://csociety-ftp.ecn.purdue.edu/pub/CPAN
1406 ftp://csociety-ftp.ecn.purdue.edu/pub/CPAN
1412 http://cpan.uky.edu/
1413 ftp://cpan.uky.edu/pub/CPAN/
1419 ftp://ftp.ccs.neu.edu/net/mirrors/ftp.funet.fi/pub/languages/perl/CPAN/
1420 ftp://ftp.iguide.com/pub/mirrors/packages/perl/CPAN/
1426 ftp://ftp.cpanel.net/pub/CPAN/
1432 ftp://ftp.freesoftware.com/pub/perl/CPAN/
1433 http://www.deao.net/mirrors/CPAN/
1434 ftp://ftp.deao.net/pub/CPAN/
1435 ftp://ftp.stealth.net/pub/mirrors/ftp.cpan.org/pub/CPAN/
1436 http://mirror.nyc.anidea.com/CPAN/
1437 ftp://mirror.nyc.anidea.com/pub/CPAN/
1438 http://www.rge.com/pub/languages/perl/
1439 ftp://ftp.rge.com/pub/languages/perl/
1440 ftp://mirrors.cloud9.net/pub/mirrors/CPAN/
1446 ftp://ftp.duke.edu/pub/perl/
1452 ftp://ftp.loaded.net/pub/CPAN/
1458 ftp://ftp.ou.edu/mirrors/CPAN/
1464 ftp://ftp.orst.edu/pub/packages/CPAN/
1470 http://ftp.epix.net/CPAN/
1471 ftp://ftp.epix.net/pub/languages/perl/
1472 ftp://carroll.cac.psu.edu/pub/CPAN/
1478 ftp://ftp.sunsite.utk.edu/pub/CPAN/
1484 http://ftp.sedl.org/pub/mirrors/CPAN/
1485 http://jhcloos.com/pub/mirror/CPAN/
1486 ftp://jhcloos.com/pub/mirror/CPAN/
1492 ftp://mirror.xmission.com/CPAN/
1498 http://mirrors.rcn.net/pub/lang/CPAN/
1499 ftp://mirrors.rcn.net/pub/lang/CPAN/
1500 ftp://ruff.cs.jmu.edu/pub/CPAN/
1501 http://perl.Liquidation.com/CPAN/
1507 http://cpan.llarian.net/
1508 ftp://cpan.llarian.net/pub/CPAN/
1509 ftp://ftp-mirror.internap.com/pub/CPAN/
1510 ftp://ftp.spu.edu/pub/CPAN/
1524 http://ftp.planetmirror.com/pub/CPAN/
1525 ftp://ftp.planetmirror.com/pub/CPAN/
1526 ftp://mirror.aarnet.edu.au/pub/perl/CPAN/
1527 ftp://cpan.topend.com.au/pub/CPAN/
1533 ftp://ftp.auckland.ac.nz/pub/perl/CPAN/
1537 =head2 South America
1545 ftp://mirrors.bannerlandia.com.ar/mirrors/CPAN/
1551 ftp://cpan.pop-mg.com.br/pub/CPAN/
1552 ftp://ftp.matrix.com.br/pub/perl/
1553 ftp://cpan.if.usp.br/pub/mirror/CPAN/
1559 ftp://ftp.psinet.cl/pub/programming/perl/CPAN/
1560 ftp://sunsite.dcc.uchile.cl/pub/lang/perl/
1564 For an up-to-date listing of CPAN sites,
1565 see http://www.cpan.org/SITES or ftp://www.cpan.org/SITES .
1567 =head1 Modules: Creation, Use, and Abuse
1569 (The following section is borrowed directly from Tim Bunce's modules
1570 file, available at your nearest CPAN site.)
1572 Perl implements a class using a package, but the presence of a
1573 package doesn't imply the presence of a class. A package is just a
1574 namespace. A class is a package that provides subroutines that can be
1575 used as methods. A method is just a subroutine that expects, as its
1576 first argument, either the name of a package (for "static" methods),
1577 or a reference to something (for "virtual" methods).
1579 A module is a file that (by convention) provides a class of the same
1580 name (sans the .pm), plus an import method in that class that can be
1581 called to fetch exported symbols. This module may implement some of
1582 its methods by loading dynamic C or C++ objects, but that should be
1583 totally transparent to the user of the module. Likewise, the module
1584 might set up an AUTOLOAD function to slurp in subroutine definitions on
1585 demand, but this is also transparent. Only the F<.pm> file is required to
1586 exist. See L<perlsub>, L<perltoot>, and L<AutoLoader> for details about
1587 the AUTOLOAD mechanism.
1589 =head2 Guidelines for Module Creation
1595 Do similar modules already exist in some form?
1597 If so, please try to reuse the existing modules either in whole or
1598 by inheriting useful features into a new class. If this is not
1599 practical try to get together with the module authors to work on
1600 extending or enhancing the functionality of the existing modules.
1601 A perfect example is the plethora of packages in perl4 for dealing
1602 with command line options.
1604 If you are writing a module to expand an already existing set of
1605 modules, please coordinate with the author of the package. It
1606 helps if you follow the same naming scheme and module interaction
1607 scheme as the original author.
1611 Try to design the new module to be easy to extend and reuse.
1613 Try to C<use warnings;> (or C<use warnings qw(...);>).
1614 Remember that you can add C<no warnings qw(...);> to individual blocks
1615 of code that need less warnings.
1617 Use blessed references. Use the two argument form of bless to bless
1618 into the class name given as the first parameter of the constructor,
1623 return bless {}, $class;
1626 or even this if you'd like it to be used as either a static
1627 or a virtual method.
1631 my $class = ref($self) || $self;
1632 return bless {}, $class;
1635 Pass arrays as references so more parameters can be added later
1636 (it's also faster). Convert functions into methods where
1637 appropriate. Split large methods into smaller more flexible ones.
1638 Inherit methods from other modules if appropriate.
1640 Avoid class name tests like: C<die "Invalid" unless ref $ref eq 'FOO'>.
1641 Generally you can delete the C<eq 'FOO'> part with no harm at all.
1642 Let the objects look after themselves! Generally, avoid hard-wired
1643 class names as far as possible.
1645 Avoid C<< $r->Class::func() >> where using C<@ISA=qw(... Class ...)> and
1646 C<< $r->func() >> would work (see L<perlbot> for more details).
1648 Use autosplit so little used or newly added functions won't be a
1649 burden to programs that don't use them. Add test functions to
1650 the module after __END__ either using AutoSplit or by saying:
1652 eval join('',<main::DATA>) || die $@ unless caller();
1654 Does your module pass the 'empty subclass' test? If you say
1655 C<@SUBCLASS::ISA = qw(YOURCLASS);> your applications should be able
1656 to use SUBCLASS in exactly the same way as YOURCLASS. For example,
1657 does your application still work if you change: C<$obj = new YOURCLASS;>
1658 into: C<$obj = new SUBCLASS;> ?
1660 Avoid keeping any state information in your packages. It makes it
1661 difficult for multiple other packages to use yours. Keep state
1662 information in objects.
1666 Try to C<use strict;> (or C<use strict qw(...);>).
1667 Remember that you can add C<no strict qw(...);> to individual blocks
1668 of code that need less strictness.
1672 Follow the guidelines in the perlstyle(1) manual.
1678 Some simple style guidelines
1680 The perlstyle manual supplied with Perl has many helpful points.
1682 Coding style is a matter of personal taste. Many people evolve their
1683 style over several years as they learn what helps them write and
1684 maintain good code. Here's one set of assorted suggestions that
1685 seem to be widely used by experienced developers:
1687 Use underscores to separate words. It is generally easier to read
1688 $var_names_like_this than $VarNamesLikeThis, especially for
1689 non-native speakers of English. It's also a simple rule that works
1690 consistently with VAR_NAMES_LIKE_THIS.
1692 Package/Module names are an exception to this rule. Perl informally
1693 reserves lowercase module names for 'pragma' modules like integer
1694 and strict. Other modules normally begin with a capital letter and
1695 use mixed case with no underscores (need to be short and portable).
1697 You may find it helpful to use letter case to indicate the scope
1698 or nature of a variable. For example:
1700 $ALL_CAPS_HERE constants only (beware clashes with Perl vars)
1701 $Some_Caps_Here package-wide global/static
1702 $no_caps_here function scope my() or local() variables
1704 Function and method names seem to work best as all lowercase.
1705 e.g., C<< $obj->as_string() >>.
1707 You can use a leading underscore to indicate that a variable or
1708 function should not be used outside the package that defined it.
1712 Select what to export.
1714 Do NOT export method names!
1716 Do NOT export anything else by default without a good reason!
1718 Exports pollute the namespace of the module user. If you must
1719 export try to use @EXPORT_OK in preference to @EXPORT and avoid
1720 short or common names to reduce the risk of name clashes.
1722 Generally anything not exported is still accessible from outside the
1723 module using the ModuleName::item_name (or C<< $blessed_ref->method >>)
1724 syntax. By convention you can use a leading underscore on names to
1725 indicate informally that they are 'internal' and not for public use.
1727 (It is actually possible to get private functions by saying:
1728 C<my $subref = sub { ... }; &$subref;>. But there's no way to call that
1729 directly as a method, because a method must have a name in the symbol
1732 As a general rule, if the module is trying to be object oriented
1733 then export nothing. If it's just a collection of functions then
1734 @EXPORT_OK anything but use @EXPORT with caution.
1738 Select a name for the module.
1740 This name should be as descriptive, accurate, and complete as
1741 possible. Avoid any risk of ambiguity. Always try to use two or
1742 more whole words. Generally the name should reflect what is special
1743 about what the module does rather than how it does it. Please use
1744 nested module names to group informally or categorize a module.
1745 There should be a very good reason for a module not to have a nested name.
1746 Module names should begin with a capital letter.
1748 Having 57 modules all called Sort will not make life easy for anyone
1749 (though having 23 called Sort::Quick is only marginally better :-).
1750 Imagine someone trying to install your module alongside many others.
1751 If in any doubt ask for suggestions in comp.lang.perl.misc.
1753 If you are developing a suite of related modules/classes it's good
1754 practice to use nested classes with a common prefix as this will
1755 avoid namespace clashes. For example: Xyz::Control, Xyz::View,
1756 Xyz::Model etc. Use the modules in this list as a naming guide.
1758 If adding a new module to a set, follow the original author's
1759 standards for naming modules and the interface to methods in
1762 If developing modules for private internal or project specific use,
1763 that will never be released to the public, then you should ensure
1764 that their names will not clash with any future public module. You
1765 can do this either by using the reserved Local::* category or by
1766 using a category name that includes an underscore like Foo_Corp::*.
1768 To be portable each component of a module name should be limited to
1769 11 characters. If it might be used on MS-DOS then try to ensure each is
1770 unique in the first 8 characters. Nested modules make this easier.
1774 Have you got it right?
1776 How do you know that you've made the right decisions? Have you
1777 picked an interface design that will cause problems later? Have
1778 you picked the most appropriate name? Do you have any questions?
1780 The best way to know for sure, and pick up many helpful suggestions,
1781 is to ask someone who knows. Comp.lang.perl.misc is read by just about
1782 all the people who develop modules and it's the best place to ask.
1784 All you need to do is post a short summary of the module, its
1785 purpose and interfaces. A few lines on each of the main methods is
1786 probably enough. (If you post the whole module it might be ignored
1787 by busy people - generally the very people you want to read it!)
1789 Don't worry about posting if you can't say when the module will be
1790 ready - just say so in the message. It might be worth inviting
1791 others to help you, they may be able to complete it for you!
1795 README and other Additional Files.
1797 It's well known that software developers usually fully document the
1798 software they write. If, however, the world is in urgent need of
1799 your software and there is not enough time to write the full
1800 documentation please at least provide a README file containing:
1806 A description of the module/package/extension etc.
1810 A copyright notice - see below.
1814 Prerequisites - what else you may need to have.
1818 How to build it - possible changes to Makefile.PL etc.
1826 Recent changes in this release, especially incompatibilities
1830 Changes / enhancements you plan to make in the future.
1834 If the README file seems to be getting too large you may wish to
1835 split out some of the sections into separate files: INSTALL,
1840 =item Adding a Copyright Notice.
1843 How you choose to license your work is a personal decision.
1844 The general mechanism is to assert your Copyright and then make
1845 a declaration of how others may copy/use/modify your work.
1847 Perl, for example, is supplied with two types of licence: The GNU
1848 GPL and The Artistic Licence (see the files README, Copying, and
1849 Artistic). Larry has good reasons for NOT just using the GNU GPL.
1851 My personal recommendation, out of respect for Larry, Perl, and the
1852 Perl community at large is to state something simply like:
1854 Copyright (c) 1995 Your Name. All rights reserved.
1855 This program is free software; you can redistribute it and/or
1856 modify it under the same terms as Perl itself.
1858 This statement should at least appear in the README file. You may
1859 also wish to include it in a Copying file and your source files.
1860 Remember to include the other words in addition to the Copyright.
1864 Give the module a version/issue/release number.
1866 To be fully compatible with the Exporter and MakeMaker modules you
1867 should store your module's version number in a non-my package
1868 variable called $VERSION. This should be a floating point
1869 number with at least two digits after the decimal (i.e., hundredths,
1870 e.g, C<$VERSION = "0.01">). Don't use a "1.3.2" style version.
1871 See L<Exporter> for details.
1873 It may be handy to add a function or method to retrieve the number.
1874 Use the number in announcements and archive file names when
1875 releasing the module (ModuleName-1.02.tar.Z).
1876 See perldoc ExtUtils::MakeMaker.pm for details.
1880 How to release and distribute a module.
1882 It's good idea to post an announcement of the availability of your
1883 module (or the module itself if small) to the comp.lang.perl.announce
1884 Usenet newsgroup. This will at least ensure very wide once-off
1887 If possible, register the module with CPAN. You should
1888 include details of its location in your announcement.
1890 Some notes about ftp archives: Please use a long descriptive file
1891 name that includes the version number. Most incoming directories
1892 will not be readable/listable, i.e., you won't be able to see your
1893 file after uploading it. Remember to send your email notification
1894 message as soon as possible after uploading else your file may get
1895 deleted automatically. Allow time for the file to be processed
1896 and/or check the file has been processed before announcing its
1899 FTP Archives for Perl Modules:
1901 Follow the instructions and links on:
1903 http://www.cpan.org/modules/00modlist.long.html
1904 http://www.cpan.org/modules/04pause.html
1906 or upload to one of these sites:
1908 https://pause.kbx.de/pause/
1909 http://pause.perl.org/pause/
1911 and notify <modules@perl.org>.
1913 By using the WWW interface you can ask the Upload Server to mirror
1914 your modules from your ftp or WWW site into your own directory on
1917 Please remember to send me an updated entry for the Module list!
1921 Take care when changing a released module.
1923 Always strive to remain compatible with previous released versions.
1924 Otherwise try to add a mechanism to revert to the
1925 old behavior if people rely on it. Document incompatible changes.
1931 =head2 Guidelines for Converting Perl 4 Library Scripts into Modules
1937 There is no requirement to convert anything.
1939 If it ain't broke, don't fix it! Perl 4 library scripts should
1940 continue to work with no problems. You may need to make some minor
1941 changes (like escaping non-array @'s in double quoted strings) but
1942 there is no need to convert a .pl file into a Module for just that.
1946 Consider the implications.
1948 All Perl applications that make use of the script will need to
1949 be changed (slightly) if the script is converted into a module. Is
1950 it worth it unless you plan to make other changes at the same time?
1954 Make the most of the opportunity.
1956 If you are going to convert the script to a module you can use the
1957 opportunity to redesign the interface. The guidelines for module
1958 creation above include many of the issues you should consider.
1962 The pl2pm utility will get you started.
1964 This utility will read *.pl files (given as parameters) and write
1965 corresponding *.pm files. The pl2pm utilities does the following:
1971 Adds the standard Module prologue lines
1975 Converts package specifiers from ' to ::
1979 Converts die(...) to croak(...)
1983 Several other minor changes
1987 Being a mechanical process pl2pm is not bullet proof. The converted
1988 code will need careful checking, especially any package statements.
1989 Don't delete the original .pl file till the new .pm one works!
1993 =head2 Guidelines for Reusing Application Code
1999 Complete applications rarely belong in the Perl Module Library.
2003 Many applications contain some Perl code that could be reused.
2005 Help save the world! Share your code in a form that makes it easy
2010 Break-out the reusable code into one or more separate module files.
2014 Take the opportunity to reconsider and redesign the interfaces.
2018 In some cases the 'application' can then be reduced to a small
2020 fragment of code built on top of the reusable modules. In these cases
2021 the application could invoked as:
2023 % perl -e 'use Module::Name; method(@ARGV)' ...
2025 % perl -mModule::Name ... (in perl5.002 or higher)
2031 Perl does not enforce private and public parts of its modules as you may
2032 have been used to in other languages like C++, Ada, or Modula-17. Perl
2033 doesn't have an infatuation with enforced privacy. It would prefer
2034 that you stayed out of its living room because you weren't invited, not
2035 because it has a shotgun.
2037 The module and its user have a contract, part of which is common law,
2038 and part of which is "written". Part of the common law contract is
2039 that a module doesn't pollute any namespace it wasn't asked to. The
2040 written contract for the module (A.K.A. documentation) may make other
2041 provisions. But then you know when you C<use RedefineTheWorld> that
2042 you're redefining the world and willing to take the consequences.