Commit b0994841407366ac7e1d50a62fab8fca2ecb1c8f
- Diff rendering mode:
- inline
- side by side
Changes
(44 / 0)
|   | |||
| 1 | 2008-09-24 Gisle Aas <gisle@ActiveState.com> | ||
| 2 | |||
| 3 | Release 5.815 | ||
| 4 | |||
| 5 | Gisle Aas (23): | ||
| 6 | We don't need to build the docs to run the tests. | ||
| 7 | Style tweaks. | ||
| 8 | The jigsaw service isn't up to much good these days. | ||
| 9 | HTTP::Cookies produces warnings for undefined cookie param names [RT#38480] | ||
| 10 | Typo fix; HTTP::Message will never include x-bzip2 in Accept-Encoding [RT#38617] | ||
| 11 | Added HTTP::Config module | ||
| 12 | Add methods to configure processing handlers. | ||
| 13 | 100 Continue response not complete. | ||
| 14 | Use 3-arg open when response content to files. | ||
| 15 | Make the show_progress attribute official (by documenting it). | ||
| 16 | Start using handlers for driving the inner logic of LWP::UserAgent. | ||
| 17 | Expose the content_is_html and content_is_xhtml methods from HTTP::Headers. | ||
| 18 | Make credentials method able to get/set values. | ||
| 19 | An auth handler per realm. | ||
| 20 | Match proxy setting for request. | ||
| 21 | Set up separate handler for adding proxy authentication. | ||
| 22 | Add request_preprepare to be able to initialize proxy early enough. | ||
| 23 | Smarter get_my_handler() that can also create handlers. | ||
| 24 | Refactor; introduce run_handlers method | ||
| 25 | Pass in handler hash to the handler callback. | ||
| 26 | Don't let version=1 override behaviour if specified with a plan Set-Cookie header. | ||
| 27 | Remove handler when we don't have a username/password for the realm. | ||
| 28 | Make tests use Test.pm | ||
| 29 | |||
| 30 | Bron Gondwana (2): | ||
| 31 | Double-check that username or password has changed after a failed login. | ||
| 32 | Update Digest Authen to subclass Basic. | ||
| 33 | |||
| 34 | Ondrej Hanak (1): | ||
| 35 | Avoid running out of filehandles with DYNAMIC_FILE_UPLOAD. | ||
| 36 | |||
| 37 | Todd Lipcon (1): | ||
| 38 | Fixed parsing of header values starting with ':' [RT#39367] | ||
| 39 | |||
| 40 | amire80 (1): | ||
| 41 | Documentation typo fixes [RT#38203] | ||
| 42 | |||
| 43 | |||
| 44 | |||
| 1 | 45 | 2008-07-25 Gisle Aas <gisle@ActiveState.com> | |
| 2 | 46 | ||
| 3 | 47 | Release 5.814 |
lib/HTTP/Config.pm
(3 / 0)
|   | |||
| 2 | 2 | ||
| 3 | 3 | use strict; | |
| 4 | 4 | use URI; | |
| 5 | use vars qw($VERSION); | ||
| 6 | |||
| 7 | $VERSION = "5.815"; | ||
| 5 | 8 | ||
| 6 | 9 | sub new { | |
| 7 | 10 | my $class = shift; |
lib/HTTP/Cookies.pm
(1 / 1)
|   | |||
| 6 | 6 | use LWP::Debug (); | |
| 7 | 7 | ||
| 8 | 8 | use vars qw($VERSION $EPOCH_OFFSET); | |
| 9 | $VERSION = "5.810"; | ||
| 9 | $VERSION = "5.815"; | ||
| 10 | 10 | ||
| 11 | 11 | # Legacy: because "use "HTTP::Cookies" used be the ONLY way | |
| 12 | 12 | # to load the class HTTP::Cookies::Netscape. |
lib/HTTP/Daemon.pm
(1 / 1)
|   | |||
| 3 | 3 | use strict; | |
| 4 | 4 | use vars qw($VERSION @ISA $PROTO $DEBUG); | |
| 5 | 5 | ||
| 6 | $VERSION = "5.810"; | ||
| 6 | $VERSION = "5.815"; | ||
| 7 | 7 | ||
| 8 | 8 | use IO::Socket qw(AF_INET INADDR_ANY inet_ntoa); | |
| 9 | 9 | @ISA=qw(IO::Socket::INET); |
lib/HTTP/Headers.pm
(1 / 1)
|   | |||
| 4 | 4 | use Carp (); | |
| 5 | 5 | ||
| 6 | 6 | use vars qw($VERSION $TRANSLATE_UNDERSCORE); | |
| 7 | $VERSION = "5.810"; | ||
| 7 | $VERSION = "5.815"; | ||
| 8 | 8 | ||
| 9 | 9 | # The $TRANSLATE_UNDERSCORE variable controls whether '_' can be used | |
| 10 | 10 | # as a replacement for '-' in header field names. |
lib/HTTP/Message.pm
(1 / 1)
|   | |||
| 2 | 2 | ||
| 3 | 3 | use strict; | |
| 4 | 4 | use vars qw($VERSION $AUTOLOAD); | |
| 5 | $VERSION = "5.814"; | ||
| 5 | $VERSION = "5.815"; | ||
| 6 | 6 | ||
| 7 | 7 | require HTTP::Headers; | |
| 8 | 8 | require Carp; |
lib/HTTP/Request.pm
(1 / 1)
|   | |||
| 2 | 2 | ||
| 3 | 3 | require HTTP::Message; | |
| 4 | 4 | @ISA = qw(HTTP::Message); | |
| 5 | $VERSION = "5.814"; | ||
| 5 | $VERSION = "5.815"; | ||
| 6 | 6 | ||
| 7 | 7 | use strict; | |
| 8 | 8 |
lib/HTTP/Request/Common.pm
(1 / 1)
|   | |||
| 13 | 13 | require HTTP::Request; | |
| 14 | 14 | use Carp(); | |
| 15 | 15 | ||
| 16 | $VERSION = "5.814"; | ||
| 16 | $VERSION = "5.815"; | ||
| 17 | 17 | ||
| 18 | 18 | my $CRLF = "\015\012"; # "\r\n" is not portable | |
| 19 | 19 |
lib/LWP.pm
(1 / 1)
|   | |||
| 1 | 1 | package LWP; | |
| 2 | 2 | ||
| 3 | $VERSION = "5.814"; | ||
| 3 | $VERSION = "5.815"; | ||
| 4 | 4 | sub Version { $VERSION; } | |
| 5 | 5 | ||
| 6 | 6 | require 5.005; |
lib/LWP/Protocol.pm
(1 / 1)
|   | |||
| 2 | 2 | ||
| 3 | 3 | require LWP::MemberMixin; | |
| 4 | 4 | @ISA = qw(LWP::MemberMixin); | |
| 5 | $VERSION = "5.810"; | ||
| 5 | $VERSION = "5.815"; | ||
| 6 | 6 | ||
| 7 | 7 | use strict; | |
| 8 | 8 | use Carp (); |
lib/LWP/UserAgent.pm
(1 / 1)
|   | |||
| 5 | 5 | ||
| 6 | 6 | require LWP::MemberMixin; | |
| 7 | 7 | @ISA = qw(LWP::MemberMixin); | |
| 8 | $VERSION = "5.814"; | ||
| 8 | $VERSION = "5.815"; | ||
| 9 | 9 | ||
| 10 | 10 | use HTTP::Request (); | |
| 11 | 11 | use HTTP::Response (); |
lib/Net/HTTP/Methods.pm
(1 / 1)
|   | |||
| 5 | 5 | use strict; | |
| 6 | 6 | use vars qw($VERSION); | |
| 7 | 7 | ||
| 8 | $VERSION = "5.812"; | ||
| 8 | $VERSION = "5.815"; | ||
| 9 | 9 | ||
| 10 | 10 | my $CRLF = "\015\012"; # "\r\n" is not portable | |
| 11 | 11 |

