/usr/share/perl5/Apache/AuthCookie/Params.pm is in libapache2-authcookie-perl 3.20-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | package Apache::AuthCookie::Params;
{
$Apache::AuthCookie::Params::VERSION = '3.20';
}
# ABSTRACT: AuthCookie Params Driver for mod_perl 1.x
use strict;
use warnings;
use base 'Apache::AuthCookie::Params::Base';
use Class::Load qw(try_load_class load_class);
sub _new_instance {
my ($class, $r) = @_;
my $debug = $r->dir_config('AuthCookieDebug') || 0;
my $obj;
if (try_load_class('Apache::Request')) {
$r->server->log_error("params: using Apache::Request") if $debug >= 3;
return Apache::Request->new($r);
}
else {
load_class('CGI');
$r->server->log_error("params: using CGI") if $debug >= 3;
# CGI->new($r) doesn't work for POST->GET conversion in MP1, so get
# query string manually
my $qstring = $r->method eq 'POST' ? scalar $r->content : scalar $r->args;
return CGI->new($qstring);
}
return;
}
1;
__END__
=pod
=head1 NAME
Apache::AuthCookie::Params - AuthCookie Params Driver for mod_perl 1.x
=head1 VERSION
version 3.20
=head1 SYNOPSIS
Internal Use Only!
=head1 DESCRIPTION
This class handles CGI form data for L<Apache::AuthCookie>. It will try to use
L<Apache::Request> (from libapreq) if it is available. If not, it will fall
back to use L<CGI>.
=head1 SOURCE
The development version is on github at L<http://github.com/mschout/apache-authcookie>
and may be cloned from L<git://github.com/mschout/apache-authcookie.git>
=head1 BUGS
Please report any bugs or feature requests to bug-apache-authcookie@rt.cpan.org or through the web interface at:
http://rt.cpan.org/Public/Dist/Display.html?Name=Apache-AuthCookie
=head1 AUTHOR
Michael Schout <mschout@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2000 by Ken Williams.
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
|