[Apache-dispatch-devel] SF.net SVN: apache-dispatch: [10] trunk/t/conf
Brought to you by:
geoffrey_young,
phred_moyer
|
From: <phr...@us...> - 2006-04-02 08:37:32
|
Revision: 10 Author: phred_moyer Date: 2006-04-02 00:37:23 -0800 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/apache-dispatch/?rev=10&view=rev Log Message: ----------- Custom configuration directives launch the interpreter, therefore these directives should be in extra.last.conf.in. Added Paths: ----------- trunk/t/conf/extra.last.conf.in Removed Paths: ------------- trunk/t/conf/extra.conf.in Deleted: trunk/t/conf/extra.conf.in =================================================================== --- trunk/t/conf/extra.conf.in 2006-03-31 08:01:03 UTC (rev 9) +++ trunk/t/conf/extra.conf.in 2006-04-02 08:37:23 UTC (rev 10) @@ -1,91 +0,0 @@ -<Perl> - # stuff to get Apache::Test to recognize shared object files - local $^W = 0; - use blib; -</Perl> - -<IfDefine APACHE2> - PerlModule Apache2::Dispatch -</IfDefine> -<IfDefine APACHE1> - PerlModule Apache::Dispatch -</IfDefine> - -DispatchDebug 2 - -<Location /plain> - SetHandler perl-script - - <IfDefine APACHE2> - PerlResponseHandler Apache2::Dispatch - </IfDefine> - <IfDefine APACHE1> - PerlHandler Apache::Dispatch - </IfDefine> - - DispatchPrefix Foo - DispatchRequire On -</Location> - -<Location /filtered> - SetHandler perl-script - - <IfDefine APACHE2> - PerlResponseHandler Apache2::Dispatch Foo::Filter - </IfDefine> - <IfDefine APACHE1> - PerlHandler Apache::Dispatch Foo::Filter - </IfDefine> - - DispatchPrefix Foo - DispatchFilter On - DispatchRequire On - DispatchExtras Pre Post -</Location> - -<Location /extras> - SetHandler perl-script - - <IfDefine APACHE2> - PerlResponseHandler Apache::Dispatch - </IfDefine> - <IfDefine APACHE> - PerlHandler Apache::Dispatch - </IfDefine> - - DispatchPrefix Foo - DispatchRequire On - DispatchExtras Pre Error -</Location> - -<Location /oo> - SetHandler perl-script - - <IfDefine APACHE2> - PerlResponseHandler Apache::Dispatch - </IfDefine> - <IfDefine APACHE> - PerlHandler Apache::Dispatch - </IfDefine> - - DispatchPrefix Foo - DispatchRequire On - DispatchAUTOLOAD On - DispatchISA Foo::Parent -</Location> - -<Location /newloc> - SetHandler perl-script - - <IfDefine APACHE2> - PerlResponseHandler Apache::Dispatch - </IfDefine> - <IfDefine APACHE> - PerlHandler Apache::Dispatch - </IfDefine> - - DispatchPrefix Foo - DispatchLocation /BLARG - DispatchRequire On -</Location> - Copied: trunk/t/conf/extra.last.conf.in (from rev 9, trunk/t/conf/extra.conf.in) =================================================================== --- trunk/t/conf/extra.last.conf.in (rev 0) +++ trunk/t/conf/extra.last.conf.in 2006-04-02 08:37:23 UTC (rev 10) @@ -0,0 +1,91 @@ +<Perl> + # stuff to get Apache::Test to recognize shared object files + local $^W = 0; + use blib; +</Perl> + +<IfDefine APACHE2> + PerlModule Apache2::Dispatch +</IfDefine> +<IfDefine APACHE1> + PerlModule Apache::Dispatch +</IfDefine> + +DispatchDebug 2 + +<Location /plain> + SetHandler perl-script + + <IfDefine APACHE2> + PerlResponseHandler Apache2::Dispatch + </IfDefine> + <IfDefine APACHE1> + PerlHandler Apache::Dispatch + </IfDefine> + + DispatchPrefix Foo + DispatchRequire On +</Location> + +<Location /filtered> + SetHandler perl-script + + <IfDefine APACHE2> + PerlResponseHandler Apache2::Dispatch Foo::Filter + </IfDefine> + <IfDefine APACHE1> + PerlHandler Apache::Dispatch Foo::Filter + </IfDefine> + + DispatchPrefix Foo + DispatchFilter On + DispatchRequire On + DispatchExtras Pre Post +</Location> + +<Location /extras> + SetHandler perl-script + + <IfDefine APACHE2> + PerlResponseHandler Apache::Dispatch + </IfDefine> + <IfDefine APACHE> + PerlHandler Apache::Dispatch + </IfDefine> + + DispatchPrefix Foo + DispatchRequire On + DispatchExtras Pre Error +</Location> + +<Location /oo> + SetHandler perl-script + + <IfDefine APACHE2> + PerlResponseHandler Apache::Dispatch + </IfDefine> + <IfDefine APACHE> + PerlHandler Apache::Dispatch + </IfDefine> + + DispatchPrefix Foo + DispatchRequire On + DispatchAUTOLOAD On + DispatchISA Foo::Parent +</Location> + +<Location /newloc> + SetHandler perl-script + + <IfDefine APACHE2> + PerlResponseHandler Apache::Dispatch + </IfDefine> + <IfDefine APACHE> + PerlHandler Apache::Dispatch + </IfDefine> + + DispatchPrefix Foo + DispatchLocation /BLARG + DispatchRequire On +</Location> + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |