Compile common MP constants, so we can shortcut PerlTransHandler
[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::Constants qw(:common);
8 use Apache::Request ();
9 use Apache::Cookie ();
10
11 sub handler ($$) { shift->SUPER::handler(@_) }
12
13 =head1 NAME
14
15 Catalyst::Engine::Apache::MP1 - Catalyst Apache MP1 Engine
16
17 =head1 SYNOPSIS
18
19 See L<Catalyst>.
20
21 =head1 DESCRIPTION
22
23 This is the Catalyst engine specialized for Apache mod_perl version 1.
24
25 =head1 OVERLOADED METHODS
26
27 This 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
37 L<Catalyst>, L<Catalyst::Engine>, L<Catalyst::Engine::Apache>.
38
39 =head1 AUTHOR
40
41 Sebastian Riedel, C<sri@cpan.org>
42
43 =head1 COPYRIGHT
44
45 This program is free software, you can redistribute it and/or modify it under
46 the same terms as Perl itself.
47
48 =cut
49
50 1;