ok ok server gone too now.
[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 ();
7c655b47 7use Apache::Constants qw(:common);
479d2af4 8use Apache::Request ();
9use Apache::Cookie ();
10
11sub handler ($$) { shift->SUPER::handler(@_) }
12
13=head1 NAME
14
15Catalyst::Engine::Apache::MP1 - Catalyst Apache MP1 Engine
16
17=head1 SYNOPSIS
18
19See L<Catalyst>.
20
21=head1 DESCRIPTION
22
23This is the Catalyst engine specialized for Apache mod_perl version 1.
24
25=head1 OVERLOADED METHODS
26
27This class overloads some methods from C<Catalyst::Engine::Apache>.
28
29=over 4
30
31=item $c->handler
32
33=back
34
35=head1 SEE ALSO
36
37L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::Apache>.
38
39=head1 AUTHOR
40
41Sebastian Riedel, C<sri@cpan.org>
42
43=head1 COPYRIGHT
44
45This program is free software, you can redistribute it and/or modify it under
46the same terms as Perl itself.
47
48=cut
49
501;