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 # $Id: Apache2Handler.pm,v 1.1 2010-12-27 00:03:43 ivan Exp $
18 # Stanislav Sinyagin <ssinyagin@yahoo.com>
20 # Apache mod_perl handler. See http://perl.apache.org
22 package Torrus::Apache2Handler;
25 use Apache2::Const -compile => qw(:common);
33 # Before torrus-1.0.9, Apache2 handler was designed
34 # for "SetHandler modperl". Now it should be used with perl-script
37 if( $r->handler() ne 'perl-script')
39 $r->content_type('text/plain');
40 $r->print("Apache configuration must be changed.\n");
41 $r->print("The current version ot Torrus is incompatible with ");
42 $r->print("\"SetHandler modperl\" statement.\n");
43 $r->print("Change it to:\n");
44 $r->print(" SetHandler perl-script\n");
45 return Apache2::Const::OK;
49 Torrus::CGI->process( $q );
51 return Apache2::Const::OK;
60 # indent-tabs-mode: nil
61 # perl-indent-level: 4