X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FEngine%2FApache%2FMP2.pm;fp=lib%2FCatalyst%2FEngine%2FApache%2FMP2.pm;h=fb03a169854a10b75cf8f1c3f78590b45762db5d;hb=479d2af43e49eb898f7453e9888e977f41b65c7c;hp=0000000000000000000000000000000000000000;hpb=6dc87a0f8301391acfe25ee5bcaad0fe48dad559;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Engine/Apache/MP2.pm b/lib/Catalyst/Engine/Apache/MP2.pm new file mode 100644 index 0000000..fb03a16 --- /dev/null +++ b/lib/Catalyst/Engine/Apache/MP2.pm @@ -0,0 +1,56 @@ +package Catalyst::Engine::Apache::MP2; + +use strict; +use base 'Catalyst::Engine::Apache'; + +use Apache2 (); +use Apache::Connection (); +use Apache::RequestIO (); +use Apache::RequestRec (); +use Apache::RequestUtil (); +use Apache::Request (); +use Apache::Cookie (); +use Apache::Upload (); +use Apache::URI (); +use APR::URI (); + +sub handler : method { shift->SUPER::handler(@_) } + +=head1 NAME + +Catalyst::Engine::Apache::MP2 - Catalyst Apache MP2 Engine + +=head1 SYNOPSIS + +See L. + +=head1 DESCRIPTION + +This is the Catalyst engine specialized for Apache mod_perl version 2. + +=head1 OVERLOADED METHODS + +This class overloads some methods from C. + +=over 4 + +=item $c->handler + +=back + +=head1 SEE ALSO + +L, L, L. + +=head1 AUTHOR + +Sebastian Riedel, C + +=head1 COPYRIGHT + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +=cut + +1;