package Egg::Request::Apache::MP19; # # Masatoshi Mizuno ElusheE<64>cpan.orgE # # $Id: MP19.pm 226 2008-01-27 10:23:16Z lushe $ # use strict; use warnings; use Apache2 (); use Apache::Request (); use Apache::RequestRec (); use Apache::RequestIO (); use Apache::RequestUtil (); use Apache::Compat (); use base qw/ Egg::Request::Apache /; our $VERSION= '3.00'; sub new { my($class, $e, $r)= @_; my $req = $class->SUPER::new($e); my $conf= $req->e->config->{request} ||= {}; $req->r( Apache::Request->new($r, %$conf) ); $req; } 1; __END__ =head1 NAME Egg::Request::Apache::MP19 - mod_perl1.9x for Egg request. =head1 DESCRIPTION It is a request class for mod_perl1.9x. This module is read by the automatic operation if L investigates the environment and it is necessary. Therefore, it is not necessary to read specifying it. =head1 METHODS =head2 new The object is received from the constructor of the succession class, and L object is defined in 'r' method. =head1 SEE ALSO L, L, L, L, =head1 AUTHOR Masatoshi Mizuno ElusheE<64>cpan.orgE =head1 COPYRIGHT Copyright (C) 2007 by Bee Flag, Corp. ELE, All Rights Reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available. =cut