~ubuntu-branches/ubuntu/karmic/libwww-perl/karmic

« back to all changes in this revision

Viewing changes to lib/LWP/Simple.pm

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2008-04-16 16:36:16 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080416163616-06kg47nxqi6xrwts
Tags: 5.812-1
New upstream release, fixes the SSL regression (closes: #476390).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package LWP::Simple;
2
2
 
3
 
# $Id: Simple.pm,v 1.41 2004/05/21 09:11:55 gisle Exp $
4
 
 
5
3
use strict;
6
4
use vars qw($ua %loop_check $FULL_LWP @EXPORT @EXPORT_OK $VERSION);
7
5
 
16
14
use HTTP::Status;
17
15
push(@EXPORT, @HTTP::Status::EXPORT);
18
16
 
19
 
$VERSION = sprintf("%d.%02d", q$Revision: 1.41 $ =~ /(\d+)\.(\d+)/);
 
17
$VERSION = "5.810";
20
18
$FULL_LWP++ if grep {lc($_) eq "http_proxy"} keys %ENV;
21
19
 
22
20