Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.*
HTTP-Cookies-*
Makefile
Makefile.old
SSL
blib
pm_to_blib
SSL
t/CAN_TALK_TO_OURSELF
t/live/ENABLED
*.tar.gz
t/live/ENABLED
xx*
20 changes: 9 additions & 11 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
_______________________________________________________________________________
2012-02-15 HTTP-Cookies 6.01
Revision history for HTTP-Cookies. The HTTP::Cookies module used to be bundled
with the libwww-perl distribution.

Restore 5.8.1 compatiblity.
{{$NEXT}}

6.01 2012-02-15
- Restore 5.8.1 compatiblity.


_______________________________________________________________________________
2011-02-27 HTTP-Cookies 6.00

Initial release of HTTP-Cookies as a separate distribution. There are no code
changes besides incrementing the version number since libwww-perl-5.837.

The HTTP::Cookies module used to be bundled with the libwww-perl distribution.
6.00 2011-02-27
- Initial release of HTTP-Cookies as a separate distribution. There are no
code changes besides incrementing the version number since
libwww-perl-5.837.
43 changes: 43 additions & 0 deletions Install
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
This is the Perl distribution HTTP-Cookies.

Installing HTTP-Cookies is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm HTTP::Cookies

If it does not have permission to install modules to the current perl, cpanm
will automatically set up and install to a local::lib in your home directory.
See the local::lib documentation (https://metacpan.org/pod/local::lib) for
details on enabling it in your environment.

## Installing with the CPAN shell

Alternatively, if your CPAN shell is set up, you should just be able to do:

% cpan HTTP::Cookies

## Manual installation

As a last resort, you can manually install it. Download the tarball, untar it,
then build it:

% perl Makefile.PL
% make && make test

Then install it:

% make install

If your perl is system-managed, you can create a local::lib in your home
directory to install modules to. For details, see the local::lib documentation:
https://metacpan.org/pod/local::lib

## Documentation

HTTP-Cookies documentation is available as POD.
You can run perldoc from a shell to read the documentation:

% perldoc HTTP::Cookies
Loading