jwoolley 02/04/22 00:55:03
Modified: perl-framework/t/conf extra.conf.in
Added: perl-framework/t/htdocs/modules/cgi acceptpathinfodefault.sh
acceptpathinfooff.sh acceptpathinfoon.sh
Log:
More bits and pieces for the CGI AcceptPathInfo tests
Revision Changes Path
1.36 +13 -0 httpd-test/perl-framework/t/conf/extra.conf.in
Index: extra.conf.in
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/t/conf/extra.conf.in,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -u -r1.35 -r1.36
--- extra.conf.in 5 Apr 2002 07:27:28 -0000 1.35
+++ extra.conf.in 22 Apr 2002 07:55:03 -0000 1.36
@@ -202,7 +202,20 @@
<Directory @SERVERROOT@/htdocs/modules/cgi>
Options +ExecCGI
+
+ <IfDefine APACHE2>
+ <Files acceptpathinfoon.sh>
+ AcceptPathInfo on
+ </Files>
+ <Files acceptpathinfooff.sh>
+ AcceptPathInfo off
+ </Files>
+ <Files acceptpathinfodefault.sh>
+ AcceptPathInfo default
+ </Files>
+ </IfDefine>
</Directory>
+
</IfModule>
##
1.1
httpd-test/perl-framework/t/htdocs/modules/cgi/acceptpathinfodefault.sh
Index: acceptpathinfodefault.sh
===================================================================
#!/bin/sh
echo Content-type: text/plain
echo
echo $PATH_INFO
1.1
httpd-test/perl-framework/t/htdocs/modules/cgi/acceptpathinfooff.sh
Index: acceptpathinfooff.sh
===================================================================
#!/bin/sh
echo Content-type: text/plain
echo
echo $PATH_INFO
1.1
httpd-test/perl-framework/t/htdocs/modules/cgi/acceptpathinfoon.sh
Index: acceptpathinfoon.sh
===================================================================
#!/bin/sh
echo Content-type: text/plain
echo
echo $PATH_INFO