.\" Automatically generated by Pod::Man 2.27 (Pod::Simple 3.28)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings. \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
. ds -- \(*W-
. ds PI pi
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
. ds L" ""
. ds R" ""
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds -- \|\(em\|
. ds PI \(*p
. ds L" ``
. ds R" ''
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is turned on, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{
. if \nF \{
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "HTTP::Cookies::Microsoft 3"
.TH HTTP::Cookies::Microsoft 3 "2017-08-03" "perl v5.16.3" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
HTTP::Cookies::Microsoft \- Access to Microsoft cookies files
.SH "VERSION"
.IX Header "VERSION"
version 6.04
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 5
\& use LWP;
\& use HTTP::Cookies::Microsoft;
\& use Win32::TieRegistry(Delimiter => "/");
\& my $cookies_dir = $Registry\->
\& {"CUser/Software/Microsoft/Windows/CurrentVersion/Explorer/Shell Folders/Cookies"};
\&
\& $cookie_jar = HTTP::Cookies::Microsoft\->new(
\& file => "$cookies_dir\e\eindex.dat",
\& \*(Aqdelayload\*(Aq => 1,
\& );
\& my $browser = LWP::UserAgent\->new;
\& $browser\->cookie_jar( $cookie_jar );
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
This is a subclass of \f(CW\*(C`HTTP::Cookies\*(C'\fR which
loads Microsoft Internet Explorer 5.x and 6.x for Windows (\s-1MSIE\s0)
cookie files.
.PP
See the documentation for HTTP::Cookies.
.SH "METHODS"
.IX Header "METHODS"
The following methods are provided:
.ie n .IP "$cookie_jar = HTTP::Cookies::Microsoft\->new;" 4
.el .IP "\f(CW$cookie_jar\fR = HTTP::Cookies::Microsoft\->new;" 4
.IX Item "$cookie_jar = HTTP::Cookies::Microsoft->new;"
The constructor takes hash style parameters. In addition
to the regular HTTP::Cookies parameters, HTTP::Cookies::Microsoft
recognizes the following:
.Sp
.Vb 5
\& delayload: delay loading of cookie data until a request
\& is actually made. This results in faster
\& runtime unless you use most of the cookies
\& since only the domain\*(Aqs cookie data
\& is loaded on demand.
.Ve
.SH "CAVEATS"
.IX Header "CAVEATS"
Please note that the code \s-1DOESN\s0'T support saving to the \s-1MSIE\s0
cookie file format.
.SH "AUTHOR"
.IX Header "AUTHOR"
Johnny Lee <typo_pl@hotmail.com>
.SH "COPYRIGHT"
.IX Header "COPYRIGHT"
Copyright 2002 Johnny Lee
.PP
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
.SH "AUTHOR"
.IX Header "AUTHOR"
Gisle Aas <gisle@activestate.com>
.SH "COPYRIGHT AND LICENSE"
.IX Header "COPYRIGHT AND LICENSE"
This software is copyright (c) 2002\-2017 by Gisle Aas.
.PP
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.