summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/site/lib/HTTP/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/site/lib/HTTP/Config.pm')
-rw-r--r--Master/tlpkg/tlperl/site/lib/HTTP/Config.pm32
1 files changed, 24 insertions, 8 deletions
diff --git a/Master/tlpkg/tlperl/site/lib/HTTP/Config.pm b/Master/tlpkg/tlperl/site/lib/HTTP/Config.pm
index 50d95958a00..3da0e5dc88a 100644
--- a/Master/tlpkg/tlperl/site/lib/HTTP/Config.pm
+++ b/Master/tlpkg/tlperl/site/lib/HTTP/Config.pm
@@ -3,9 +3,9 @@ package HTTP::Config;
use strict;
use warnings;
-use URI;
+our $VERSION = '6.14';
-our $VERSION = "6.11";
+use URI;
sub new {
my $class = shift;
@@ -235,12 +235,18 @@ sub matching_items {
1;
-__END__
+=pod
+
+=encoding UTF-8
=head1 NAME
HTTP::Config - Configuration for request and response objects
+=head1 VERSION
+
+version 6.14
+
=head1 SYNOPSIS
use HTTP::Config;
@@ -293,7 +299,7 @@ You can either pass separate key/value pairs or a hash reference.
=item $conf->remove( %spec )
Removes (and returns) the entries that have matches for all the key/value pairs in %spec.
-If %spec is empty this will match all entries; so it will empty the configuation object.
+If %spec is empty this will match all entries; so it will empty the configuration object.
=item $conf->matching( $uri, $request, $response )
@@ -428,11 +434,21 @@ Matches if the response object has that key, or the entry has the given value.
L<URI>, L<HTTP::Request>, L<HTTP::Response>
-=head1 COPYRIGHT
+=head1 AUTHOR
+
+Gisle Aas <gisle@activestate.com>
-Copyright 2008, Gisle Aas
+=head1 COPYRIGHT AND LICENSE
-This library is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
+This software is copyright (c) 1994-2017 by Gisle Aas.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
=cut
+
+__END__
+
+
+#ABSTRACT: Configuration for request and response objects
+