ok ok server gone too now.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Apache / MP2.pm
CommitLineData
479d2af4 1package Catalyst::Engine::Apache::MP2;
2
3use strict;
4use base 'Catalyst::Engine::Apache';
5
6use Apache2 ();
7use Apache::Connection ();
7c655b47 8use Apache::Const ( -compile => qw(:common) );
479d2af4 9use Apache::RequestIO ();
10use Apache::RequestRec ();
11use Apache::RequestUtil ();
12use Apache::Request ();
13use Apache::Cookie ();
14use Apache::Upload ();
15use Apache::URI ();
16use APR::URI ();
17
18sub handler : method { shift->SUPER::handler(@_) }
19
20=head1 NAME
21
22Catalyst::Engine::Apache::MP2 - Catalyst Apache MP2 Engine
23
24=head1 SYNOPSIS
25
26See L<Catalyst>.
27
28=head1 DESCRIPTION
29
30This is the Catalyst engine specialized for Apache mod_perl version 2.
31
32=head1 OVERLOADED METHODS
33
34This class overloads some methods from C<Catalyst::Engine::Apache>.
35
36=over 4
37
38=item $c->handler
39
40=back
41
42=head1 SEE ALSO
43
44L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::Apache>.
45
46=head1 AUTHOR
47
48Sebastian Riedel, C<sri@cpan.org>
49
50=head1 COPYRIGHT
51
52This program is free software, you can redistribute it and/or modify it under
53the same terms as Perl itself.
54
55=cut
56
571;