Merge remote-tracking branch 'upstream/master'
[torrus-plus.git] / src / lib / Torrus / Apache2Handler.pm
blobc6cbbe40d6607180bdc921c4fb3550baba61ad72
1 # Copyright (C) 2010 Stanislav Sinyagin
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17 # Stanislav Sinyagin <ssinyagin@yahoo.com>
19 # Apache mod_perl handler. See http://perl.apache.org
21 package Torrus::Apache2Handler;
23 use strict;
24 use warnings;
26 use Apache2::Const -compile => qw(:common);
28 use Torrus::CGI;
29 use CGI qw();
31 our $VERSION = 1.0;
33 sub handler : method
35 my($class, $r) = @_;
37 # Before torrus-1.0.9, Apache2 handler was designed
38 # for "SetHandler modperl". Now it should be used with perl-script
39 # handler only
41 if( $r->handler() ne 'perl-script')
43 $r->content_type('text/plain');
44 $r->print("Apache configuration must be changed.\n");
45 $r->print("The current version ot Torrus is incompatible with ");
46 $r->print("\"SetHandler modperl\" statement.\n");
47 $r->print("Change it to:\n");
48 $r->print(" SetHandler perl-script\n");
49 return Apache2::Const::OK;
52 my $q = CGI->new($r);
53 Torrus::CGI->process( $q );
55 return Apache2::Const::OK;
62 # Local Variables:
63 # mode: perl
64 # indent-tabs-mode: nil
65 # perl-indent-level: 4
66 # End: