]> git.decadent.org.uk Git - maypole.git/blob - lib/Maypole/Application.pm
Merged Apache2::MVC into Apache::MVC, deprecated $r->{query}
[maypole.git] / lib / Maypole / Application.pm
1 package Maypole::Application;
2
3 use strict;
4 use warnings;
5
6 if ( $ENV{MOD_PERL} ) {
7     require Apache::MVC;
8     our @ISA = qw(Apache::MVC);
9 }
10 else {
11     require CGI::Maypole;
12     our @ISA = qw(CGI::Maypole);
13 }
14
15 1;
16
17 =head1 NAME
18
19 Maypole::Application - all in wonder front-end
20
21 =head1 SYNOPSIS
22
23     use base 'Maypole::Application';
24
25 =head1 DESCRIPTION
26
27 The all in wonder front-end.
28
29 =head1 AUTHOR
30
31 Sebastian Riedel, C<sri@oook.de>
32 Idea by Marcus Ramberg, C<marcus@thefeed.no>
33
34 =head1 LICENSE
35
36 You may distribute this code under the same terms as Perl itself.