2 # BEGIN BPS TAGGED BLOCK {{{
6 # This software is Copyright (c) 1996-2007 Best Practical Solutions, LLC
7 # <jesse@bestpractical.com>
9 # (Except where explicitly superseded by other copyright notices)
14 # This work is made available to you under the terms of Version 2 of
15 # the GNU General Public License. A copy of that license should have
16 # been provided with this software, but in any event can be snarfed
19 # This work is distributed in the hope that it will be useful, but
20 # WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 # General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 # 02110-1301 or visit their web page on the internet at
28 # http://www.gnu.org/copyleft/gpl.html.
31 # CONTRIBUTION SUBMISSION POLICY:
33 # (The following paragraph is not intended to limit the rights granted
34 # to you to modify and distribute this software under the terms of
35 # the GNU General Public License and is only of importance to you if
36 # you choose to contribute your changes and enhancements to the
37 # community by submitting them to Best Practical Solutions, LLC.)
39 # By intentionally submitting any modifications, corrections or
40 # derivatives to this work, or any other work intended for use with
41 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
42 # you are the copyright holder for those contributions and you grant
43 # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
44 # royalty-free, perpetual, license to use, copy, create derivative
45 # works based on those contributions, and sublicense and distribute
46 # those contributions and any derivatives thereof.
48 # END BPS TAGGED BLOCK }}}
54 require ('@RT_BIN_PATH@/webmux.pl');
56 # Enter CGI::Fast mode, which should also work as a vanilla CGI script.
61 while ( my $cgi = CGI::Fast->new ) {
62 # the whole point of fastcgi requires the env to get reset here..
63 # So we must squash it again
64 $ENV{'PATH'} = '/bin:/usr/bin';
65 $ENV{'CDPATH'} = '' if defined $ENV{'CDPATH'};
66 $ENV{'SHELL'} = '/bin/sh' if defined $ENV{'SHELL'};
67 $ENV{'ENV'} = '' if defined $ENV{'ENV'};
68 $ENV{'IFS'} = '' if defined $ENV{'IFS'};
70 Module::Refresh->refresh if $RT::DevelMode;
71 RT::ConnectToDatabase();
73 if ( ( !$Handler->interp->comp_exists( $cgi->path_info ) )
74 && ( $Handler->interp->comp_exists( $cgi->path_info . "/index.html" ) ) ) {
75 $cgi->path_info( $cgi->path_info . "/index.html" );
78 eval { $Handler->handle_cgi_object($cgi); };
80 $RT::Logger->crit($@);
82 RT::Interface::Web::Handler->CleanupRequest();