diff options
-rw-r--r-- | htdocs/config/validator.conf | 6 | ||||
-rwxr-xr-x | httpd/cgi-bin/check | 9 |
2 files changed, 8 insertions, 7 deletions
diff --git a/htdocs/config/validator.conf b/htdocs/config/validator.conf index d0748ea..5a4466c 100644 --- a/htdocs/config/validator.conf +++ b/htdocs/config/validator.conf @@ -1,7 +1,7 @@ # # Main Configuration File for the W3C MarkUp Validation Service. # -# $Id: validator.conf,v 1.3 2002-12-07 03:48:58 link Exp $ +# $Id: validator.conf,v 1.4 2002-12-07 04:00:18 link Exp $ # # See 'perldoc Config::General' for the syntax, and be aware that the # 'SplitPolicy' is 'equalsign', ie. keys and values are separated by '\s*=\s*'. @@ -15,11 +15,11 @@ Maintainer = www-validator@w3.org # # The "Home Page" for the service. -Home_Page = http://mail.tj.unn.no/ +Home_Page = http://validator.w3.org/ # # Base URI To Error Explanations (doc/errors.html) -Msg_FAQ_URI = http://mail.tj.unn.no/docs/errors.html +Msg_FAQ_URI = ${Home_Page}docs/errors.html # # Base URI for the Element Reference. diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 71dcf0b..4de17ba 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -9,7 +9,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.317 2002-12-07 03:30:52 link Exp $ +# $Id: check,v 1.318 2002-12-07 04:00:18 link Exp $ # # Disable buffering on STDOUT! @@ -99,8 +99,9 @@ BEGIN { (-ConfigFile => $ENV{W3C_VALIDATOR_CFG} || '/etc/w3c/validator.conf', -MergeDuplicateOptions => 'yes', -SplitPolicy => 'equalsign', - -UseApacheInclude => 1, - -IncludeRelative => 1, + -UseApacheInclude => TRUE, + -IncludeRelative => TRUE, + -InterPolateVars => TRUE, -DefaultConfig => { Allowed_Protocols => 'http,https', SGML_Parser => '/usr/bin/onsgmls', }, @@ -133,7 +134,7 @@ The error reported was: '$@' # # Strings - $VERSION = q$Revision: 1.317 $; + $VERSION = q$Revision: 1.318 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; } # end of BEGIN block. |