diff options
Diffstat (limited to 'httpd/cgi-bin/check')
-rwxr-xr-x | httpd/cgi-bin/check | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 4b79d6c..c968863 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.304 2002-11-24 19:03:30 link Exp $ +# $Id: check,v 1.305 2002-11-25 19:24:51 ville Exp $ # # Disable buffering on STDOUT! @@ -95,7 +95,7 @@ BEGIN { # # Strings - $VERSION = q$Revision: 1.304 $; + $VERSION = q$Revision: 1.305 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; @@ -157,7 +157,7 @@ $File->{'Header'} = &prepSSI({ }); $File->{'Footer'} = &prepSSI({ File => $CFG->{'Footer'}, - Date => q$Date: 2002-11-24 19:03:30 $, + Date => q$Date: 2002-11-25 19:24:51 $, }); # @@ -774,24 +774,24 @@ sub print_table { add_table($Options, '', # Show source? - q(<label title="Show Page Source (accesskey: 5)"><input type="checkbox" value="" name="ss" ) . + q(<label title="Show Page Source (accesskey: 5)"><input type="checkbox" value="1" name="ss" ) . q(accesskey="5" ) . ($File->{Opt}->{'Show Source'} ? q(checked="checked" ) : '') . q(/>Show Source</label>), # Outline? - q(<label title="Show an Outline of the document (accesskey: 6)"><input type="checkbox" value="" name="outline" ) . + q(<label title="Show an Outline of the document (accesskey: 6)"><input type="checkbox" value="1" name="outline" ) . q(accesskey="6" ) . ($File->{Opt}->{'Outline'} ? q(checked="checked" ) : '') . q(/>Outline</label>) ); add_table($Options, '', # Parse tree? - q(<label title="Show Parse Tree (accesskey: 7)"><input type="checkbox" value="" name="sp" ) . + q(<label title="Show Parse Tree (accesskey: 7)"><input type="checkbox" value="1" name="sp" ) . q(accesskey="7" ) . ($File->{Opt}->{'Show Parsetree'} ? q(checked="checked" ) : '') . q(/>Parse Tree</label>), # No attributes? - q(<label title="Exclude Attributes from Parse Tree (accesskey: 8)"><input type="checkbox" value="" name="noatt" ) . + q(<label title="Exclude Attributes from Parse Tree (accesskey: 8)"><input type="checkbox" value="1" name="noatt" ) . q(accesskey="8" ) . ($File->{Opt}->{'No Attributes'} ? q(checked="checked" ) : '') . q(/>...no attributes</label>) @@ -799,7 +799,7 @@ sub print_table { add_table($Options, '', # Validate error pages? [1, $File->{Table}->{Max}, - q(<label title="Validate also pages for which the HTTP status code indicates an error"><input type="checkbox" value="" name="No200" ) . + q(<label title="Validate also pages for which the HTTP status code indicates an error"><input type="checkbox" value="1" name="No200" ) . # @@@ accesskey missing ($File->{Opt}->{'No200'} ? q(checked="checked" ) : '') . q(/>Validate error pages</label>) |