X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FCGI.pm;h=38a869ccdd881829fda9ca7d8af9faa23b1d8035;hb=e3dffa23a03cd9f88946ceb78bc75ada29bc013a;hp=a85d48ab6622647db5d86f2ff1703a3a9b6ed6c9;hpb=28d0e1291b3119b0bef1e1e887676f2c29e35c25;p=freeside.git diff --git a/FS/FS/CGI.pm b/FS/FS/CGI.pm index a85d48ab6..38a869ccd 100644 --- a/FS/FS/CGI.pm +++ b/FS/FS/CGI.pm @@ -79,14 +79,7 @@ Sets an http header. sub http_header { my ( $header, $value ) = @_; if (exists $ENV{MOD_PERL}) { - if ( defined $main::Response - && $main::Response->isa('Apache::ASP::Response') ) { #Apache::ASP - if ( $header =~ /^Content-Type$/ ) { - $main::Response->{ContentType} = $value; - } else { - $main::Response->AddHeader( $header => $value ); - } - } elsif ( defined $HTML::Mason::Commands::r ) { #Mason + if ( defined $HTML::Mason::Commands::r ) { #Mason ## is this the correct pacakge for $r ??? for 1.0x and 1.1x ? if ( $header =~ /^Content-Type$/ ) { $HTML::Mason::Commands::r->content_type($value); @@ -186,12 +179,7 @@ If running under mod_perl, calles Apache::exit, otherwise, calls exit. sub myexit { if (exists $ENV{MOD_PERL}) { - if ( defined $main::Response - && $main::Response->isa('Apache::ASP::Response') ) { #Apache::ASP - $main::Response->End(); - require Apache; - Apache::exit(); - } elsif ( defined $HTML::Mason::Commands::m ) { #Mason + if ( defined $HTML::Mason::Commands::m ) { #Mason #$HTML::Mason::Commands::m->flush_buffer(); $HTML::Mason::Commands::m->abort(); die "shouldn't fall through to here (mason \$m->abort didn't)"; @@ -237,10 +225,12 @@ sub rooturl { $url_string =~ s/\?.*//; #even though this is kludgy + $url_string =~ s{ / index\.html /? $ } + {/}x; $url_string =~ s{ / - (browse|config|docs|edit|graph|misc|search|view|pref|rt) + (browse|config|docs|edit|graph|misc|search|view|pref|rt|elements) / (process/)? ([\w\-\.\/]+) @@ -248,6 +238,10 @@ sub rooturl { } {}x; + #elements because of progress-popup.html... + #XXX remove anything from elements that is called directly & prevent + #those pages from being served up + $url_string .= '/' unless $url_string =~ /\/$/; $url_string; @@ -331,7 +325,7 @@ sub small_custview { if $url; $html .= 'Customer #'. $cust_main->custnum. ''. - ' - '. + ' - '. ucfirst($cust_main->status). ''. ntable('#e8e8e8'). ''. ntable("#cccccc",2). 'Billing
Address'.