- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 20 Jul 2005 13:26:04 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/conf In directory hutz:/tmp/cvs-serv19778/httpd/conf Modified Files: httpd.conf Log Message: Mark running under mod_perl explicitly unsupported, and remove related code. IPC::Run doesn't seem to help any more with mod_perl 2.0.1, and we have a few new globals which would need reworking anyway. Index: httpd.conf =================================================================== RCS file: /sources/public/validator/httpd/conf/httpd.conf,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- httpd.conf 26 Jan 2005 01:04:46 -0000 1.24 +++ httpd.conf 20 Jul 2005 13:26:02 -0000 1.25 @@ -11,8 +11,7 @@ # The values below assume that you have the validator files in # /usr/share/w3c-markup-validator. If not, tune them according to your setup. -# Note that it is not recommended to run the validator under mod_perl -# at the moment. +# Note: running the validator under mod_perl is not supported at the moment. # This is the directory where you have the validator's "check" # script as well as its and *.html, *.css etc files. @@ -28,38 +27,8 @@ AddCharset utf-8 .html </Directory> -<IfModule mod_perl.c> - - # mod_perl 1.2x: - #PerlModule Apache::Registry - #PerlTaintCheck On - #PerlWarn On - - # mod_perl 1.99+: - #PerlModule ModPerl::Registry - #PerlSwitches -wT - -</IfModule> - # Tell httpd that "check" is a CGI script. <Location "/w3c-validator/check"> - SetHandler cgi-script - - <IfModule mod_perl.c> - - # All mod_perl versions: - #SetHandler perl-script - - # mod_perl 1.2x: - #PerlHandler Apache::Registry - #PerlSendHeader On - - # mod_perl 1.99+: - #PerlResponseHandler ModPerl::Registry - #PerlOptions +ParseHeaders - - </IfModule> - </Location>
Received on Wednesday, 20 July 2005 13:26:07 UTC