~ubuntu-branches/ubuntu/lucid/libwww-perl/lucid-security

« back to all changes in this revision

Viewing changes to lib/HTTP/Headers.pm

  • Committer: Bazaar Package Importer
  • Author(s): Antonio Radici, Antonio Radici, gregor herrmann
  • Date: 2009-02-27 23:41:21 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090227234121-j82kazqk5lmg6t4b
Tags: 5.825-1
[ Antonio Radici ]
* New upstream release
* debian/control:
  + Adding me to the Uploaders
  + removing duplicate 'priority' and 'section' from the binary package
  + added quilt dependency
  + bumped dependency to debhelper 7
* debian/compat:
  + bumped to 7
* debian/rules:
  + refreshed with dh-make-perl --dh 7
  + added quilt directives
* debian/README.source
  + added as per Debian Policy
* debian/patches/fix_no_proxy_desc.patch:
  + fix some erorrs in the description of no_proxy() on LWP::UserAgent 
  + bug already forwarded upstream (Closes: #277970)
* debian/patches/fix_ua_ssl_deps.patch:
  + fix the error message when some perl modules are not installed 
    to support HTTPS
  + bug already forwarded upstream (Closes: #500186)

[ gregor herrmann ]
* debian/control: Changed: Switched Vcs-Browser field to ViewSVN
  (source stanza).
* debian/control: Added: ${misc:Depends} to Depends: field.
* debian/copyright: update years of upstream copyright.
* debian/control: add libcrypt-ssleay-perl as an alternative suggestion
  to libio-socket-ssl-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
use Carp ();
5
5
 
6
6
use vars qw($VERSION $TRANSLATE_UNDERSCORE);
7
 
$VERSION = "5.818";
 
7
$VERSION = "5.822";
8
8
 
9
9
# The $TRANSLATE_UNDERSCORE variable controls whether '_' can be used
10
10
# as a replacement for '-' in header field names.
680
680
This header field is used in request messages and contains information
681
681
about the user agent originating the request.  I<E.g.>:
682
682
 
683
 
  $h->user_agent('Mozilla/1.2');
 
683
  $h->user_agent('Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0)');
684
684
 
685
685
=item $h->server
686
686