source: main/tags/2.21/gsdl/packages/w3mir/libwww-perl-5.36/README@ 24210

Last change on this file since 24210 was 720, checked in by davidb, 25 years ago

added w3mir package

  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1 L I B W W W - P E R L - 5
2 -----------------------------
3
4Libwww-perl is a collection of Perl modules which provides a simple
5and consistent programming interface (API) to the World-Wide Web. The
6main focus of the library is to provide classes and functions that
7allow you to write WWW clients, thus libwww-perl said to be a WWW
8client library. The library also contain modules that are of more
9general use and even classes that helps you implement simple HTTP
10servers.
11
12There are actually two versions of libwww-perl: one for Perl4, and one
13for Perl5. Both have a similar architecture, loosely based on the CERN
14Library of Common Code (nowadays known as 'w3c-libwww').
15
16The Perl4 version is still(?) maintained by Roy Fielding, and was the
17basis for tools such as MOMSpider. The perl4 version of libwww-perl
18and much more information about its libraries can be found at:
19http://www.ics.uci.edu/pub/websoft/libwww-perl/
20
21The Perl5 version (this package) is a complete rewrite for Perl5: the
22code is organized in Modules, provides an Object Oriented API, is
23updated for the latest HTTP and URL specification, and offers some
24extended functionality.
25
26Full HTTP/1.1 support is on its way. Alpha releases of the LWPng
27package is currently available from CPAN.
28
29
30PREREQUISITES
31
32In order to install and use this package you will need Perl version
335.004 or better. Some modules within this package depend on other
34packages that are distributed separately from Perl. We recommend that
35you have the following packages installed before you install
36libwww-perl:
37
38 MIME-Base64
39 HTML-Parser
40 libnet
41 MD5
42
43These packages should be available on CPAN.
44
45If you want to access sites using the https protocol, then you need to
46install the Crypt-SSLeay modules first. (The Net::SSLeay module is not
47supported any more.)
48
49
50INSTALLATION
51
52You install libwww-perl, as you would install any perl module library,
53by running these commands:
54
55 perl Makefile.PL
56 make
57 make test
58 make install
59
60You can edit the configuration section of Makefile.PL to select which
61programs to install in addition to the library itself. If you don't
62want to install any programs (only the library files) and don't want
63to mess with the Makefile.PL then pass the '-n' option to Makefile.PL:
64
65 perl Makefile.PL -n
66
67If you want to install a private copy of libwww-perl in your home
68directory, then you should try to produce the initial Makefile with
69something like this command:
70
71 perl Makefile.PL LIB=~/perl
72
73The Makefile.PL program will start out by checking your perl
74installation for a few packages that are recommended to be installed
75together with libwww-perl.
76
77Optional network tests are _not_ enabled automatically when you unpack
78this package. Consult the t/README file for instructions on how to
79enable these tests.
80
81
82DOCUMENTATION
83
84See lib/LWP.pm for an overview of the library. See ChangeLog for
85recent changes. POD style documentation is included in all modules
86and scripts. These are normally converted to manual pages and
87installed as part of the "make install" process. You should also be
88able to use the 'perldoc' utility to extract and read documentation
89from the module files directly.
90
91
92SUPPORT
93
94Question about how to use this library should be directed to the
95comp.lang.perl.modules USENET Newsgroup. Bug reports and suggestions
96for improvements can be sendt to the <[email protected]> mailing
97list. This mailing list is also the place for general discussions and
98development of the libwww-perl package.
99
100You can join the mailing list by sending a message to
101<[email protected]> with "Subscribe" as subject.
102 ^^^^^^^^
103
104AVAILABILITY
105
106The latest version of libwww-perl should always be available from:
107
108 http://www.linpro.no/lwp/
109
110The library is also available from the Comprehensive Perl Archive
111Network (CPAN). Visit <URL:http://www.perl.com/CPAN/> to find a CPAN
112site near you.
113
114
115COPYRIGHT
116
117 © 1995-1998 Gisle Aas. All rights reserved.
118 © 1995 Martijn Koster. All rights reserved.
119
120This library is free software; you can redistribute it and/or modify
121it under the same terms as Perl itself.
122
123
124Enjoy!
Note: See TracBrowser for help on using the repository browser.