1afdfc21a9745d39469b320a13661f3d768879cb
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Apache / MP2.pm
1 package Catalyst::Engine::Apache::MP2;
2
3 use strict;
4 use base 'Catalyst::Engine::Apache';
5
6 use Apache2 ();
7 use Apache::Connection ();
8 use Apache::Const ( -compile => qw(:common) );
9 use Apache::RequestIO ();
10 use Apache::RequestRec ();
11 use Apache::RequestUtil ();
12 use Apache::Request ();
13 use Apache::Cookie ();
14 use Apache::Upload ();
15 use Apache::URI ();
16 use APR::URI ();
17
18 sub handler : method { shift->SUPER::handler(@_) }
19
20 =head1 NAME
21
22 Catalyst::Engine::Apache::MP2 - Catalyst Apache MP2 Engine
23
24 =head1 SYNOPSIS
25
26 See L<Catalyst>.
27
28 =head1 DESCRIPTION
29
30 This is the Catalyst engine specialized for Apache mod_perl version 2.
31
32 =head1 OVERLOADED METHODS
33
34 This 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
44 L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::Apache>.
45
46 =head1 AUTHOR
47
48 Sebastian Riedel, C<sri@cpan.org>
49
50 =head1 COPYRIGHT
51
52 This program is free software, you can redistribute it and/or modify it under
53 the same terms as Perl itself.
54
55 =cut
56
57 1;