Searched refs:Cookie (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dcookie.t14 use CGI::Cookie;
33 my $result = CGI::Cookie->parse($test_cookie[0]);
36 my @result = CGI::Cookie->parse($test_cookie[0]);
39 @result = CGI::Cookie->parse($test_cookie[1]);
42 my %result = CGI::Cookie->parse($test_cookie[0]);
48 my @array = CGI::Cookie->parse('');
49 my $scalar = CGI::Cookie->parse('');
53 @array = CGI::Cookie->parse(undef);
54 $scalar = CGI::Cookie->parse(undef);
68 my %result = CGI::Cookie
[all...]
H A Dhtml.t138 my $h = header( -Cookie => $cookie );
141 qr!^Set-Cookie: fred=chocolate&chip\; path=/${CRLF}Date:.*${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}!s,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/
H A DCookie.pm1 package CGI::Cookie;
76 return $r->headers_in->{'Cookie'} if $r;
117 # Ignore mod_perl request object--compatibility with Apache::Cookie.
179 $r->headers_out->add('Set-Cookie' => $self->as_string);
247 CGI::Cookie - Interface to HTTP Cookies
252 use CGI::Cookie;
255 $cookie1 = CGI::Cookie->new(-name=>'ID',-value=>123456);
256 $cookie2 = CGI::Cookie->new(-name=>'preferences',
263 %cookies = CGI::Cookie->fetch;
267 %cookies = CGI::Cookie
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DCGI.pm1606 my $cs = UNIVERSAL::isa($_,'CGI::Cookie') ? $_->as_string : $_;
1607 push(@header,"Set-Cookie: $cs") if $cs ne '';
1665 unshift(@unescaped,'-Cookie'=>$cookie) if $cookie;
2900 # Cookie can then be passed to header().
2916 require CGI::Cookie;
2922 $self->{'.cookies'} = CGI::Cookie->fetch;
2943 return CGI::Cookie->new(@param);
3189 require CGI::Cookie;
3192 $self->{'.raw_cookies'} = CGI::Cookie->raw_fetch
7569 method from the CGI::Cookie modul
[all...]

Completed in 40 milliseconds