Commit b0994841407366ac7e1d50a62fab8fca2ecb1c8f

Release 5.815.
Changes
(44 / 0)
  
12008-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
1452008-07-25 Gisle Aas <gisle@ActiveState.com>
246
347 Release 5.814
  
22
33use strict;
44use URI;
5use vars qw($VERSION);
6
7$VERSION = "5.815";
58
69sub new {
710 my $class = shift;
  
66use LWP::Debug ();
77
88use vars qw($VERSION $EPOCH_OFFSET);
9$VERSION = "5.810";
9$VERSION = "5.815";
1010
1111# Legacy: because "use "HTTP::Cookies" used be the ONLY way
1212# to load the class HTTP::Cookies::Netscape.
  
33use strict;
44use vars qw($VERSION @ISA $PROTO $DEBUG);
55
6$VERSION = "5.810";
6$VERSION = "5.815";
77
88use IO::Socket qw(AF_INET INADDR_ANY inet_ntoa);
99@ISA=qw(IO::Socket::INET);
  
44use Carp ();
55
66use vars qw($VERSION $TRANSLATE_UNDERSCORE);
7$VERSION = "5.810";
7$VERSION = "5.815";
88
99# The $TRANSLATE_UNDERSCORE variable controls whether '_' can be used
1010# as a replacement for '-' in header field names.
  
22
33use strict;
44use vars qw($VERSION $AUTOLOAD);
5$VERSION = "5.814";
5$VERSION = "5.815";
66
77require HTTP::Headers;
88require Carp;
  
22
33require HTTP::Message;
44@ISA = qw(HTTP::Message);
5$VERSION = "5.814";
5$VERSION = "5.815";
66
77use strict;
88
  
1313require HTTP::Request;
1414use Carp();
1515
16$VERSION = "5.814";
16$VERSION = "5.815";
1717
1818my $CRLF = "\015\012"; # "\r\n" is not portable
1919
lib/LWP.pm
(1 / 1)
  
11package LWP;
22
3$VERSION = "5.814";
3$VERSION = "5.815";
44sub Version { $VERSION; }
55
66require 5.005;
  
22
33require LWP::MemberMixin;
44@ISA = qw(LWP::MemberMixin);
5$VERSION = "5.810";
5$VERSION = "5.815";
66
77use strict;
88use Carp ();
  
55
66require LWP::MemberMixin;
77@ISA = qw(LWP::MemberMixin);
8$VERSION = "5.814";
8$VERSION = "5.815";
99
1010use HTTP::Request ();
1111use HTTP::Response ();
  
55use strict;
66use vars qw($VERSION);
77
8$VERSION = "5.812";
8$VERSION = "5.815";
99
1010my $CRLF = "\015\012"; # "\r\n" is not portable
1111