home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _d74fcd31c8c0a64eeef79b7313c4553a < prev    next >
Text File  |  2000-03-23  |  24KB  |  528 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>LWP - Library for WWW access in Perl</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> LWP - Library for WWW access in Perl</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#http style communication">HTTP STYLE COMMUNICATION</A></LI>
  26.     <UL>
  27.  
  28.         <LI><A HREF="#the request object">The Request Object</A></LI>
  29.         <LI><A HREF="#the response object">The Response Object</A></LI>
  30.         <LI><A HREF="#the user agent">The User Agent</A></LI>
  31.         <LI><A HREF="#an example">An Example</A></LI>
  32.     </UL>
  33.  
  34.     <LI><A HREF="#network support">NETWORK SUPPORT</A></LI>
  35.     <UL>
  36.  
  37.         <LI><A HREF="#http requests">HTTP Requests</A></LI>
  38.         <LI><A HREF="#https requests">HTTPS Requests</A></LI>
  39.         <LI><A HREF="#ftp requests">FTP Requests</A></LI>
  40.         <LI><A HREF="#news requests">News Requests</A></LI>
  41.         <LI><A HREF="#gopher request">Gopher Request</A></LI>
  42.         <LI><A HREF="#file request">File Request</A></LI>
  43.         <LI><A HREF="#mailto request">Mailto Request</A></LI>
  44.     </UL>
  45.  
  46.     <LI><A HREF="#overview of classes and packages">OVERVIEW OF CLASSES AND PACKAGES</A></LI>
  47.     <LI><A HREF="#more documentation">MORE DOCUMENTATION</A></LI>
  48.     <LI><A HREF="#bugs">BUGS</A></LI>
  49.     <LI><A HREF="#acknowledgements">ACKNOWLEDGEMENTS</A></LI>
  50.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  51.     <LI><A HREF="#availability">AVAILABILITY</A></LI>
  52. </UL>
  53. <!-- INDEX END -->
  54.  
  55. <HR>
  56. <P>
  57. <H1><A NAME="name">NAME</A></H1>
  58. <P>LWP - Library for WWW access in Perl</P>
  59. <P>
  60. <HR>
  61. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  62. <UL>
  63. <LI>Linux</LI>
  64. <LI>Solaris</LI>
  65. <LI>Windows</LI>
  66. </UL>
  67. <HR>
  68. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  69. <PRE>
  70.   use LWP;
  71.   print "This is libwww-perl-$LWP::VERSION\n";</PRE>
  72. <P>
  73. <HR>
  74. <H1><A NAME="description">DESCRIPTION</A></H1>
  75. <P>Libwww-perl is a collection of Perl modules which provides a simple
  76. and consistent application programming interface (API) to the World-Wide Web.  The
  77. main focus of the library is to provide classes and functions that
  78. allow you to write WWW clients, thus libwww-perl is a WWW
  79. client library. The library also contain modules that are of more
  80. general use.</P>
  81. <P>Most modules in this library are object oriented.  The user
  82. agent, requests sent and responses received from the WWW server are
  83. all represented by objects.  This makes a simple and powerful
  84. interface to these services.  The interface should be easy to extend
  85. and customize for your needs.</P>
  86. <P>The main features of the library are:</P>
  87. <UL>
  88. <LI>
  89. Contains various reusable components (modules) that can be
  90. used separately or together.
  91. <P></P>
  92. <LI>
  93. Provides an object oriented model of HTTP-style communication.  Within
  94. this framework we currently support access to http, https, gopher, ftp, news,
  95. file, and mailto resources.
  96. <P></P>
  97. <LI>
  98. Provides a full object oriented interface or
  99. a very simple procedural interface.
  100. <P></P>
  101. <LI>
  102. Supports the basic and digest authorization schemes.
  103. <P></P>
  104. <LI>
  105. Supports transparent redirect handling.
  106. <P></P>
  107. <LI>
  108. Supports access through proxy servers.
  109. <P></P>
  110. <LI>
  111. Provides parser for <EM>robots.txt</EM> files and a framework for constructing robots.
  112. <P></P>
  113. <LI>
  114. Cooperates with Tk.  A simple Tk-based GUI browser
  115. called 'tkweb' is distributed with the Tk extension for perl.
  116. <P></P>
  117. <LI>
  118. Implements HTTP content negotiation algorithm that can
  119. be used both in protocol modules and in server scripts (like CGI
  120. scripts).
  121. <P></P>
  122. <LI>
  123. Supports HTTP cookies.
  124. <P></P>
  125. <LI>
  126. A simple command line client application called <CODE>lwp-request</CODE>.
  127. <P></P></UL>
  128. <P>
  129. <HR>
  130. <H1><A NAME="http style communication">HTTP STYLE COMMUNICATION</A></H1>
  131. <P>The libwww-perl library is based on HTTP style communication. This
  132. section tries to describe what that means.</P>
  133. <P>Let us start with this quote from the HTTP specification document
  134. <URL:http://www.w3.org/pub/WWW/Protocols/>:</P>
  135. <DL>
  136. <DT><DD>
  137. The HTTP protocol is based on a request/response paradigm. A client
  138. establishes a connection with a server and sends a request to the
  139. server in the form of a request method, URI, and protocol version,
  140. followed by a MIME-like message containing request modifiers, client
  141. information, and possible body content. The server responds with a
  142. status line, including the message's protocol version and a success or
  143. error code, followed by a MIME-like message containing server
  144. information, entity meta-information, and possible body content.
  145. <P></P></DL>
  146. <P>What this means to libwww-perl is that communication always take place
  147. through these steps: First a <EM>request</EM> object is created and
  148. configured. This object is then passed to a server and we get a
  149. <EM>response</EM> object in return that we can examine. A request is always
  150. independent of any previous requests, i.e. the service is stateless.
  151. The same simple model is used for any kind of service we want to
  152. access.</P>
  153. <P>For example, if we want to fetch a document from a remote file server,
  154. then we send it a request that contains a name for that document and
  155. the response will contain the document itself.  If we access a search
  156. engine, then the content of the request will contain the query
  157. parameters and the response will contain the query result.  If we want
  158. to send a mail message to somebody then we send a request object which
  159. contains our message to the mail server and the response object will
  160. contain an acknowledgment that tells us that the message has been
  161. accepted and will be forwarded to the recipient(s).</P>
  162. <P>It is as simple as that!</P>
  163. <P>
  164. <H2><A NAME="the request object">The Request Object</A></H2>
  165. <P>The libwww-perl request object has the class name <CODE>HTTP::Request</CODE>.
  166. The fact that the class name uses <CODE>HTTP::</CODE> as a
  167. prefix only implies that we use the HTTP model of communication.  It
  168. does not limit the kind of services we can try to pass this <EM>request</EM>
  169. to.  For instance, we will send <CODE>HTTP::Request</CODE>s both to ftp and
  170. gopher servers, as well as to the local file system.</P>
  171. <P>The main attributes of the request objects are:</P>
  172. <UL>
  173. <LI>
  174. The <STRONG>method</STRONG> is a short string that tells what kind of
  175. request this is.  The most used methods are <STRONG>GET</STRONG>, <STRONG>PUT</STRONG>,
  176. <STRONG>POST</STRONG> and <STRONG>HEAD</STRONG>.
  177. <P></P>
  178. <LI>
  179. The <STRONG>url</STRONG> is a string denoting the protocol, server and
  180. the name of the ``document'' we want to access.  The <STRONG>url</STRONG> might
  181. also encode various other parameters.
  182. <P></P>
  183. <LI>
  184. The <STRONG>headers</STRONG> contain additional information about the
  185. request and can also used to describe the content.  The headers
  186. are a set of keyword/value pairs.
  187. <P></P>
  188. <LI>
  189. The <STRONG>content</STRONG> is an arbitrary amount of data.
  190. <P></P></UL>
  191. <P>
  192. <H2><A NAME="the response object">The Response Object</A></H2>
  193. <P>The libwww-perl response object has the class name <CODE>HTTP::Response</CODE>.
  194. The main attributes of objects of this class are:</P>
  195. <UL>
  196. <LI>
  197. The <STRONG>code</STRONG> is a numerical value that indicates the overall
  198. outcome of the request.
  199. <P></P>
  200. <LI>
  201. The <STRONG>message</STRONG> is a short, human readable string that
  202. corresponds to the <EM>code</EM>.
  203. <P></P>
  204. <LI>
  205. The <STRONG>headers</STRONG> contain additional information about the
  206. response and describe the content.
  207. <P></P>
  208. <LI>
  209. The <STRONG>content</STRONG> is an arbitrary amount of data.
  210. <P></P></UL>
  211. <P>Since we don't want to handle all possible <EM>code</EM> values directly in
  212. our programs, a libwww-perl response object has methods that can be
  213. used to query what kind of response this is.  The most commonly used
  214. response classification methods are:</P>
  215. <DL>
  216. <DT><STRONG><A NAME="item_is_success"><CODE>is_success()</CODE></A></STRONG><BR>
  217. <DD>
  218. The request was was successfully received, understood or accepted.
  219. <P></P>
  220. <DT><STRONG><A NAME="item_is_error"><CODE>is_error()</CODE></A></STRONG><BR>
  221. <DD>
  222. The request failed.  The server or the resource might not be
  223. available, access to the resource might be denied or other things might
  224. have failed for some reason.
  225. <P></P></DL>
  226. <P>
  227. <H2><A NAME="the user agent">The User Agent</A></H2>
  228. <P>Let us assume that we have created a <EM>request</EM> object. What do we
  229. actually do with it in order to receive a <EM>response</EM>?</P>
  230. <P>The answer is that you pass it to a <EM>user agent</EM> object and this
  231. object takes care of all the things that need to be done
  232. (like low-level communication and error handling) and returns
  233. a <EM>response</EM> object. The user agent represents your
  234. application on the network and provides you with an interface that
  235. can accept <EM>requests</EM> and return <EM>responses</EM>.</P>
  236. <P>The user agent is an interface layer between
  237. your application code and the network.  Through this interface you are
  238. able to access the various servers on the network.</P>
  239. <P>The libwww-perl class name for the user agent is
  240. <CODE>LWP::UserAgent</CODE>.  Every libwww-perl application that wants to
  241. communicate should create at least one object of this class. The main
  242. method provided by this object is request(). This method takes an
  243. <CODE>HTTP::Request</CODE> object as argument and (eventually) returns a
  244. <CODE>HTTP::Response</CODE> object.</P>
  245. <P>The user agent has many other attributes that let you
  246. configure how it will interact with the network and with your
  247. application.</P>
  248. <UL>
  249. <LI>
  250. The <STRONG>timeout</STRONG> specifies how much time we give remote servers to
  251. respond before the library disconnects and creates an
  252. internal <EM>timeout</EM> response.
  253. <P></P>
  254. <LI>
  255. The <STRONG>agent</STRONG> specifies the name that your application should use when it
  256. presents itself on the network.
  257. <P></P>
  258. <LI>
  259. The <STRONG>from</STRONG> attribute can be set to the e-mail address of the person
  260. responsible for running the application.  If this is set, then the
  261. address will be sent to the servers with every request.
  262. <P></P>
  263. <LI>
  264. The <STRONG>parse_head</STRONG> specifies whether we should initialize response
  265. headers from the <head> section of HTML documents.
  266. <P></P>
  267. <LI>
  268. The <STRONG>proxy</STRONG> and <STRONG>no_proxy</STRONG> attributes specify if and when to go through
  269. a proxy server. <URL:http://www.w3.org/pub/WWW/Proxies/>
  270. <P></P>
  271. <LI>
  272. The <STRONG>credentials</STRONG> provide a way to set up user names and
  273. passwords needed to access certain services.
  274. <P></P></UL>
  275. <P>Many applications want even more control over how they interact
  276. with the network and they get this by sub-classing
  277. <CODE>LWP::UserAgent</CODE>.  The library includes a
  278. sub-class, <CODE>LWP::RobotUA</CODE>, for robot applications.</P>
  279. <P>
  280. <H2><A NAME="an example">An Example</A></H2>
  281. <P>This example shows how the user agent, a request and a response are
  282. represented in actual perl code:</P>
  283. <PRE>
  284.   # Create a user agent object
  285.   use LWP::UserAgent;
  286.   $ua = new LWP::UserAgent;
  287.   $ua->agent("AgentName/0.1 " . $ua->agent);</PRE>
  288. <PRE>
  289.   # Create a request
  290.   my $req = new HTTP::Request POST => '<A HREF="http://www.perl.com/cgi-bin/BugGlimpse">http://www.perl.com/cgi-bin/BugGlimpse</A>';
  291.   $req->content_type('application/x-www-form-urlencoded');
  292.   $req->content('match=www&errors=0');</PRE>
  293. <PRE>
  294.   # Pass request to the user agent and get a response back
  295.   my $res = $ua->request($req);</PRE>
  296. <PRE>
  297.   # Check the outcome of the response
  298.   if ($res->is_success) {
  299.       print $res->content;
  300.   } else {
  301.       print "Bad luck this time\n";
  302.   }</PRE>
  303. <P>The $ua is created once when the application starts up.  New request
  304. objects should normally created for each request sent.</P>
  305. <P>
  306. <HR>
  307. <H1><A NAME="network support">NETWORK SUPPORT</A></H1>
  308. <P>This section discusses the various protocol schemes and
  309. the HTTP style methods that headers may be used for each.</P>
  310. <P>For all requests, a ``User-Agent'' header is added and initialized from
  311. the $ua->agent attribute before the request is handed to the network
  312. layer.  In the same way, a ``From'' header is initialized from the
  313. $ua->from attribute.</P>
  314. <P>For all responses, the library adds a header called ``Client-Date''.
  315. This header holds the time when the response was received by
  316. your application.  The format and semantics of the header are the
  317. same as the server created ``Date'' header.  You may also encounter other
  318. ``Client-XXX'' headers.  They are all generated by the library
  319. internally and are not received from the servers.</P>
  320. <P>
  321. <H2><A NAME="http requests">HTTP Requests</A></H2>
  322. <P>HTTP requests are just handed off to an HTTP server and it
  323. decides what happens.  Few servers implement methods beside the usual
  324. ``GET'', ``HEAD'', ``POST'' and ``PUT'', but CGI-scripts may implement
  325. any method they like.</P>
  326. <P>If the server is not available then the library will generate an
  327. internal error response.</P>
  328. <P>The library automatically adds a ``Host'' and a ``Content-Length'' header
  329. to the HTTP request before it is sent over the network.</P>
  330. <P>For GET request you might want to add the ``If-Modified-Since'' header
  331. to make the request conditional.</P>
  332. <P>For POST request you should add the ``Content-Type'' header.  When you
  333. try to emulate HTML <FORM> handling you should usually let the value
  334. of the ``Content-Type'' header be ``application/x-www-form-urlencoded''.
  335. See <A HREF="../../site/lib/lwpcook.html">the lwpcook manpage</A> for examples of this.</P>
  336. <P>The libwww-perl HTTP implementation currently support the HTTP/1.0
  337. protocol.  HTTP/0.9 servers are also handled correctly.</P>
  338. <P>The library allows you to access proxy server through HTTP.  This
  339. means that you can set up the library to forward all types of request
  340. through the HTTP protocol module.  See <A HREF="../../site/lib/LWP/UserAgent.html">the LWP::UserAgent manpage</A> for
  341. documentation of this.</P>
  342. <P>
  343. <H2><A NAME="https requests">HTTPS Requests</A></H2>
  344. <P>HTTPS requests are HTTP requests over an encrypted network connection
  345. using the SSL protocol developed by Netscape.  Everything about HTTP
  346. requests above also apply to HTTPS requests.  In addition the library
  347. will add the headers ``Client-SSL-Cipher'', ``Client-SSL-Cert-Subject'' and
  348. ``Client-SSL-Cert-Issuer'' to the response.  These headers denote the
  349. encryption method used and the name of the server owner.</P>
  350. <P>The request can contain the header ``If-SSL-Cert-Subject'' in order to
  351. make the request conditional on the content of the server certificate.
  352. If the certificate subject does not match, no request is sent to the
  353. server and an internally generated error response is returned.  The
  354. value of the ``If-SSL-Cert-Subject'' header is interpreted as a Perl
  355. regular expression.</P>
  356. <P>
  357. <H2><A NAME="ftp requests">FTP Requests</A></H2>
  358. <P>The library currently supports GET, HEAD and PUT requests.  GET
  359. retrieves a file or a directory listing from an FTP server.  PUT
  360. stores a file on a ftp server.</P>
  361. <P>You can specify a ftp account for servers that want this in addition
  362. to user name and password.  This is specified by including an ``Account''
  363. header in the request.</P>
  364. <P>User name/password can be specified using basic authorization or be
  365. encoded in the URL.  Failed logins return an UNAUTHORIZED response with
  366. ``WWW-Authenticate: Basic'' and can be treated like basic authorization
  367. for HTTP.</P>
  368. <P>The library supports ftp ASCII transfer mode by specifying the ``type=a''
  369. parameter in the URL.</P>
  370. <P>Directory listings are by default returned unprocessed (as returned
  371. from the ftp server) with the content media type reported to be
  372. ``text/ftp-dir-listing''. The <CODE>File::Listing</CODE> module provides methods
  373. for parsing of these directory listing.</P>
  374. <P>The ftp module is also able to convert directory listings to HTML and
  375. this can be requested via the standard HTTP content negotiation
  376. mechanisms (add an ``Accept: text/html'' header in the request if you
  377. want this).</P>
  378. <P>For normal file retrievals, the ``Content-Type'' is guessed based on the
  379. file name suffix. See <A HREF="../../site/lib/LWP/MediaTypes.html">the LWP::MediaTypes manpage</A>.</P>
  380. <P>The ``If-Modified-Since'' request header works for servers that implement
  381. the MDTM command.  It will probably not work for directory listings though.</P>
  382. <P>Example:</P>
  383. <PRE>
  384.   $req = HTTP::Request->new(GET => '<A HREF="ftp://me:passwd@ftp.some.where.com/">ftp://me:passwd@ftp.some.where.com/</A>');
  385.   $req->header(Accept => "text/html, */*;q=0.1");</PRE>
  386. <P>
  387. <H2><A NAME="news requests">News Requests</A></H2>
  388. <P>Access to the USENET News system is implemented through the NNTP
  389. protocol.  The name of the news server is obtained from the
  390. NNTP_SERVER environment variable and defaults to ``news''.  It is not
  391. possible to specify the hostname of the NNTP server in news: URLs.</P>
  392. <P>The library supports GET and HEAD to retrieve news articles through the
  393. NNTP protocol.  You can also post articles to newsgroups by using
  394. (surprise!) the POST method.</P>
  395. <P>GET on newsgroups is not implemented yet.</P>
  396. <P>Examples:</P>
  397. <PRE>
  398.   $req = HTTP::Request->new(GET => '<A HREF="news:abc1234@a.sn.no">news:abc1234@a.sn.no</A>');</PRE>
  399. <PRE>
  400.   $req = HTTP::Request->new(POST => '<A HREF="news:comp.lang.perl.test">news:comp.lang.perl.test</A>');
  401.   $req->header(Subject => 'This is a test',
  402.                From    => 'me@some.where.org');
  403.   $req->content(<<EOT);
  404.   This is the content of the message that we are sending to
  405.   the world.
  406.   EOT</PRE>
  407. <P>
  408. <H2><A NAME="gopher request">Gopher Request</A></H2>
  409. <P>The library supports the GET and HEAD methods for gopher requests.  All
  410. request header values are ignored.  HEAD cheats and returns a
  411. response without even talking to server.</P>
  412. <P>Gopher menus are always converted to HTML.</P>
  413. <P>The response ``Content-Type'' is generated from the document type
  414. encoded (as the first letter) in the request URL path itself.</P>
  415. <P>Example:</P>
  416. <PRE>
  417.   $req = HTTP::Request->new(GET => '<A HREF="gopher://gopher.sn.no/">gopher://gopher.sn.no/</A>');</PRE>
  418. <P>
  419. <H2><A NAME="file request">File Request</A></H2>
  420. <P>The library supports GET and HEAD methods for file requests.  The
  421. ``If-Modified-Since'' header is supported.  All other headers are
  422. ignored.  The <EM>host</EM> component of the file URL must be empty or set
  423. to ``localhost''.  Any other <EM>host</EM> value will be treated as an error.</P>
  424. <P>Directories are always converted to an HTML document.  For normal
  425. files, the ``Content-Type'' and ``Content-Encoding'' in the response are
  426. guessed based on the file suffix.</P>
  427. <P>Example:</P>
  428. <PRE>
  429.   $req = HTTP::Request->new(GET => '<A HREF="file:/etc/passwd">file:/etc/passwd</A>');</PRE>
  430. <P>
  431. <H2><A NAME="mailto request">Mailto Request</A></H2>
  432. <P>You can send (aka ``POST'') mail messages using the library.  All
  433. headers specified for the request are passed on to the mail system.
  434. The ``To'' header is initialized from the mail address in the URL.</P>
  435. <P>Example:</P>
  436. <PRE>
  437.   $req = HTTP::Request->new(POST => '<A HREF="mailto:libwww-perl-request@ics.uci.edu">mailto:libwww-perl-request@ics.uci.edu</A>');
  438.   $req->header(Subject => "subscribe");
  439.   $req->content("Please subscribe me to the libwww-perl mailing list!\n");</PRE>
  440. <P>
  441. <HR>
  442. <H1><A NAME="overview of classes and packages">OVERVIEW OF CLASSES AND PACKAGES</A></H1>
  443. <P>This table should give you a quick overview of the classes provided by the
  444. library. Indentation shows class inheritance.</P>
  445. <PRE>
  446.  LWP::MemberMixin   -- Access to member variables of Perl5 classes
  447.    LWP::UserAgent   -- WWW user agent class
  448.      LWP::RobotUA   -- When developing a robot applications
  449.    LWP::Protocol          -- Interface to various protocol schemes
  450.      LWP::Protocol::http  -- <A HREF="http://">http://</A> access
  451.      LWP::Protocol::file  -- <A HREF="file://">file://</A> access
  452.      LWP::Protocol::ftp   -- <A HREF="ftp://">ftp://</A> access
  453.      ...</PRE>
  454. <PRE>
  455.  LWP::Authen::Basic -- Handle 401 and 407 responses
  456.  LWP::Authen::Digest</PRE>
  457. <PRE>
  458.  HTTP::Headers      -- MIME/RFC822 style header (used by HTTP::Message)
  459.  HTTP::Message      -- HTTP style message
  460.    HTTP::Request    -- HTTP request
  461.    HTTP::Response   -- HTTP response
  462.  HTTP::Daemon       -- A HTTP server class</PRE>
  463. <PRE>
  464.  WWW::RobotRules    -- Parse robots.txt files
  465.    WWW::RobotRules::AnyDBM_File -- Persistent RobotRules</PRE>
  466. <P>The following modules provide various functions and definitions.</P>
  467. <PRE>
  468.  LWP                -- This file.  Library version number and documentation.
  469.  LWP::MediaTypes    -- MIME types configuration (text/html etc.)
  470.  LWP::Debug         -- Debug logging module
  471.  LWP::Simple        -- Simplified procedural interface for common functions
  472.  HTTP::Status       -- HTTP status code (200 OK etc)
  473.  HTTP::Date         -- Date parsing module for HTTP date formats
  474.  HTTP::Negotiate    -- HTTP content negotiation calculation
  475.  File::Listing      -- Parse directory listings</PRE>
  476. <P>
  477. <HR>
  478. <H1><A NAME="more documentation">MORE DOCUMENTATION</A></H1>
  479. <P>All modules contain detailed information on the interfaces they
  480. provide.  The <EM>lwpcook</EM> manpage is the libwww-perl cookbook that contain
  481. examples of typical usage of the library.  You might want to take a
  482. look at how the scripts <CODE>lwp-request</CODE>, <CODE>lwp-rget</CODE> and <CODE>lwp-mirror</CODE>
  483. are implemented.</P>
  484. <P>
  485. <HR>
  486. <H1><A NAME="bugs">BUGS</A></H1>
  487. <P>The library can not handle multiple simultaneous requests yet.  Also,
  488. check out what's left in the TODO file.</P>
  489. <P>
  490. <HR>
  491. <H1><A NAME="acknowledgements">ACKNOWLEDGEMENTS</A></H1>
  492. <P>This package owes a lot in motivation, design, and code, to the
  493. libwww-perl library for Perl 4, maintained by Roy Fielding
  494. <<A HREF="mailto:fielding@ics.uci.edu>">fielding@ics.uci.edu></A>.</P>
  495. <P>That package used work from Alberto Accomazzi, James Casey, Brooks
  496. Cutter, Martijn Koster, Oscar Nierstrasz, Mel Melchner, Gertjan van
  497. Oosten, Jared Rhine, Jack Shirazi, Gene Spafford, Marc VanHeyningen,
  498. Steven E. Brenner, Marion Hakanson, Waldemar Kebsch, Tony Sanders, and
  499. Larry Wall; see the libwww-perl-0.40 library for details.</P>
  500. <P>The primary architect for this Perl 5 library is Martijn Koster and
  501. Gisle Aas, with lots of help from Graham Barr, Tim Bunce, Andreas
  502. Koenig, Jared Rhine, and Jack Shirazi.</P>
  503. <P>
  504. <HR>
  505. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  506. <PRE>
  507.   Copyright 1995-1999, Gisle Aas
  508.   Copyright 1995, Martijn Koster</PRE>
  509. <P>This library is free software; you can redistribute it and/or
  510. modify it under the same terms as Perl itself.</P>
  511. <P>
  512. <HR>
  513. <H1><A NAME="availability">AVAILABILITY</A></H1>
  514. <P>The latest version of this library is likely to be available from:</P>
  515. <PRE>
  516.  <A HREF="http://www.sn.no/libwww-perl/">http://www.sn.no/libwww-perl/</A></PRE>
  517. <P>The best place to discuss this code is on the
  518. <<A HREF="mailto:libwww-perl@ics.uci.edu">libwww-perl@ics.uci.edu</A>> mailing list.</P>
  519. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  520. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  521. <STRONG><P CLASS=block> LWP - Library for WWW access in Perl</P></STRONG>
  522. </TD></TR>
  523. </TABLE>
  524.  
  525. </BODY>
  526.  
  527. </HTML>
  528.