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