validator/httpd/cgi-bin check,1.680,1.681

Update of /sources/public/validator/httpd/cgi-bin
In directory hutz:/tmp/cvs-serv18816

Modified Files:
	check 
Log Message:
Preserve validate error pages, verbosity and error grouping options in self referential validation URLs.

Index: check
===================================================================
RCS file: /sources/public/validator/httpd/cgi-bin/check,v
retrieving revision 1.680
retrieving revision 1.681
diff -u -d -r1.680 -r1.681
--- check	13 Aug 2009 15:33:05 -0000	1.680
+++ check	31 Aug 2009 21:17:39 -0000	1.681
@@ -2972,15 +2972,13 @@
   $thispage .= ';sp=1'      if $File->{Opt}->{'Show Parsetree'};
   $thispage .= ';noatt=1'   if $File->{Opt}->{'No Attributes'};
   $thispage .= ';outline=1' if $File->{Opt}->{'Outline'};
+  $thispage .= ';No200=1'   if $File->{Opt}->{'No200'};
+  $thispage .= ';verbose=1' if $File->{Opt}->{'Verbose'};
+  $thispage .= ';group=1'   if $File->{Opt}->{'Group Errors'};
   $thispage .= ';accept=' . uri_escape($File->{Opt}->{'Accept Header'}) if $File->{Opt}->{'Accept Header'};
   $thispage .= ';accept-language=' . uri_escape($File->{Opt}->{'Accept-Language Header'}) if $File->{Opt}->{'Accept-Language Header'};
   $thispage .= ';accept-charset=' . uri_escape($File->{Opt}->{'Accept-Charset Header'}) if $File->{Opt}->{'Accept-Charset Header'};
 
-  # These were not added by report_valid; perhaps they should be?
-  # $thispage .= ';verbose=1' if $File->{Opt}->{'Verbose'};
-  # $thispage .= ';group=1' if $File->{Opt}->{'Group Errors'};
-  # $thispage .= ';No200=1'   if $File->{Opt}->{'No200'};
-
   return $thispage;
 }
 

Received on Monday, 31 August 2009 21:17:51 UTC