- From: Olivier Thereaux <ot@hutz.w3.org>
- Date: Tue, 13 Apr 2004 01:45:59 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/cgi-bin In directory hutz:/tmp/cvs-serv18634/httpd/cgi-bin Modified Files: Tag: validator-0_6_0-branch check Log Message: commenting out fussy mode altogether, per our 2004-04 meeting decision Index: check =================================================================== RCS file: /sources/public/validator/httpd/cgi-bin/check,v retrieving revision 1.305.2.85 retrieving revision 1.305.2.86 diff -u -d -r1.305.2.85 -r1.305.2.86 --- check 15 Mar 2004 21:33:18 -0000 1.305.2.85 +++ check 13 Apr 2004 01:45:51 -0000 1.305.2.86 @@ -284,7 +284,7 @@ $File->{Opt}->{'Verbose'} = $q->param('verbose') ? TRUE : FALSE; $File->{Opt}->{'Debug'} = $q->param('debug') ? TRUE : FALSE; $File->{Opt}->{'No200'} = $q->param('No200') ? TRUE : FALSE; - $File->{Opt}->{'Fussy'} = $q->param('fussy') ? TRUE : FALSE; + # $File->{Opt}->{'Fussy'} = $q->param('fussy') ? TRUE : FALSE; $File->{Opt}->{'Charset'} = $q->param('charset') ? lc $q->param('charset'): ''; $File->{Opt}->{'DOCTYPE'} = $q->param('doctype') ? $q->param('doctype') : ''; $File->{Opt}->{'URI'} = $q->param('uri') ? $q->param('uri') : ''; @@ -620,21 +620,21 @@ title="Limitations in Validator XML support">some limitations</a>. .EOF. } else { # Only add these in SGML mode. - if ($File->{Opt}->{'Fussy'}) { - push @spopt, '-wmin-tag'; - push @spopt, '-wfully-tagged'; - push @spopt, '-wrefc'; - push @spopt, '-wmissing-att-name'; - push @spopt, '-wdata-delim'; - &add_warning($File, 'note', 'Note:', <<".EOF."); - The Validator is running in "Fussy" mode. In this mode it will generate - warnings about some things that are not strictly forbidden in the HTML - Recommendation, but that are known to be problematic in popular browsers. - In general it is recommended that you fix any such errors regardless, but - if in doubt you can rerun the Validator in its lax mode to find out if it - will pass your document then. -.EOF. - } +# if ($File->{Opt}->{'Fussy'}) { +# push @spopt, '-wmin-tag'; +# push @spopt, '-wfully-tagged'; +# push @spopt, '-wrefc'; +# push @spopt, '-wmissing-att-name'; +# push @spopt, '-wdata-delim'; +# &add_warning($File, 'note', 'Note:', <<".EOF."); +# The Validator is running in "Fussy" mode. In this mode it will generate +# warnings about some things that are not strictly forbidden in the HTML +# Recommendation, but that are known to be problematic in popular browsers. +# In general it is recommended that you fix any such errors regardless, but +# if in doubt you can rerun the Validator in its lax mode to find out if it +# will pass your document then. +#.EOF. +# } } @@ -1009,13 +1009,13 @@ ($File->{Opt}->{'Verbose'} ? q(checked="checked" ) : '') . q(/>Verbose Output</label>) ); - add_table($Options, '', - # Fussy Parse Mode? - q(<label title="Use Fussy Error Reporting" for="fussy"><input type="checkbox" value="1" id="fussy" name="fussy" ) . - # @@@ accesskey missing - ($File->{Opt}->{Fussy} ? q(checked="checked" ) : '') . - q(/>Fussy Parsing</label>), - ); +# add_table($Options, '', +# # Fussy Parse Mode? +# q(<label title="Use Fussy Error Reporting" for="fussy"><input type="checkbox" value="1" id="fussy" name="fussy" ) . +# # @@@ accesskey missing +# ($File->{Opt}->{Fussy} ? q(checked="checked" ) : '') . +# q(/>Fussy Parsing</label>), +# ); add_table( $Form,
Received on Monday, 12 April 2004 21:46:08 UTC