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