Index: libwww-perl/bin/lwp-request
===================================================================
--- libwww-perl.orig/bin/lwp-request
+++ libwww-perl/bin/lwp-request
@@ -6,13 +6,13 @@
=head1 NAME
-lwp-request - Simple command line user agent
+lwp-request, GET, POST, HEAD - Simple command line user agent
=head1 SYNOPSIS
- lwp-request [-aeEdvhx] [-m method] [-b <base URL>] [-t <timeout>]
- [-i <if-modified-since>] [-c <content-type>] [-C <credentials>]
- [-p <proxy-url>] [-o <format>] <url>...
+B<lwp-request> [B<-afPuUsSedvhx>] [B<-m> I<method>] [B<-b> I<base URL>] [B<-t> I<timeout>]
+ [B<-i> I<if-modified-since>] [B<-c> I<content-type>]
+ [B<-C> I<credentials>] [B<-p> I<proxy-url>] [B<-o> I<format>] I<url>...
=head1 DESCRIPTION
@@ -71,6 +71,10 @@ Set the proxy to be used for the request
proxy settings from the environment. You can disable this with the
C<-P> option.
+=item -P
+
+Don't load proxy settings from environment.
+
=item -H <header>
Send this HTTP header with each request. You can specify several, e.g.:
@@ -528,6 +532,8 @@ Usage: $progname [-options] <url>...
-p <proxyurl> use this as a proxy
-P don't load proxy settings from environment
-H <header> send this HTTP header (you can specify several)
+ -C <username>:<password>
+ provide credentials for basic authentication
-u Display method and URL before any response
-U Display request headers (implies -u)
Index: libwww-perl/lib/HTTP/Cookies.pm
===================================================================
--- libwww-perl.orig/lib/HTTP/Cookies.pm
+++ libwww-perl/lib/HTTP/Cookies.pm
@@ -199,7 +199,7 @@ sub extract_cookies
if (@ns_set) {
# The old Netscape cookie format for Set-Cookie
- #
http://www.netscape.com/newsref/std/cookie_spec.html
+ #
http://wp.netscape.com/newsref/std/cookie_spec.html
# can for instance contain an unquoted "," in the expires
# field, so we have to use this ad-hoc parser.
my $now = time();
@@ -626,7 +626,7 @@ knows about.
Cookies are a general mechanism which server side connections can use
to both store and retrieve information on the client side of the
connection. For more information about cookies refer to
-<URL:
http://www.netscape.com/newsref/std/cookie_spec.html> and
+<URL:
http://wp.netscape.com/newsref/std/cookie_spec.html> and
<URL:
http://www.cookiecentral.com/>. This module also implements the
new style cookies described in I<RFC 2965>.
The two variants of cookies are supposed to be able to coexist happily.