[Rt-commit] r17451 - in rt/3.8/trunk: lib/RT/Interface/Web lib/RT/Interface/Web/Mason

falcone at bestpractical.com falcone at bestpractical.com
Tue Dec 30 15:22:30 EST 2008


Author: falcone
Date: Tue Dec 30 15:22:30 2008
New Revision: 17451

Removed:
   rt/3.8/trunk/lib/RT/Interface/Web/Mason/
Modified:
   rt/3.8/trunk/   (props changed)
   rt/3.8/trunk/lib/RT/Interface/Web/Handler.pm

Log:
 r42998 at ketch:  falcone | 2008-12-30 15:22:16 -0500
 * finish reverting 16050 because it breaks fastcgi servers


Modified: rt/3.8/trunk/lib/RT/Interface/Web/Handler.pm
==============================================================================
--- rt/3.8/trunk/lib/RT/Interface/Web/Handler.pm	(original)
+++ rt/3.8/trunk/lib/RT/Interface/Web/Handler.pm	Tue Dec 30 15:22:30 2008
@@ -137,12 +137,8 @@
 =cut
 
 sub NewApacheHandler {
-    require RT::Interface::Web::Mason::ApacheHandler;
-    return NewHandler(
-        'RT::Interface::Web::Mason::ApacheHandler',
-        args_method => "CGI",
-        @_
-    );
+    require HTML::Mason::ApacheHandler;
+    return NewHandler('HTML::Mason::ApacheHandler', args_method => "CGI", @_);
 }
 
 # }}}
@@ -156,8 +152,8 @@
 =cut
 
 sub NewCGIHandler {
-    require RT::Interface::Web::Mason::CGIHandler;
-    return NewHandler('RT::Interface::Web::Mason::CGIHandler', @_);
+    require HTML::Mason::CGIHandler;
+    return NewHandler('HTML::Mason::CGIHandler', @_);
 }
 
 sub NewHandler {


More information about the Rt-commit mailing list