diff options
author | bjoern <bjoern@localhost> | 2005-09-10 09:32:06 +0000 |
---|---|---|
committer | bjoern <bjoern@localhost> | 2005-09-10 09:32:06 +0000 |
commit | 0002b0a52fafe496e4503a8aa0f9a4776522d0eb (patch) | |
tree | 3e97a51d4d47335f2c80d2d132ee2d69d882b4a9 | |
parent | 6dc904c8cab91e03f1fff8ca5540a3f33dd1a62e (diff) | |
download | markup-validator-0002b0a52fafe496e4503a8aa0f9a4776522d0eb.zip markup-validator-0002b0a52fafe496e4503a8aa0f9a4776522d0eb.tar.gz markup-validator-0002b0a52fafe496e4503a8aa0f9a4776522d0eb.tar.bz2 |
minor cleanup, drop some obsolete code/comments
-rwxr-xr-x | httpd/cgi-bin/check | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 60212c1..ccb3ef9 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.447 2005-09-10 09:00:28 bjoern Exp $ +# $Id: check,v 1.448 2005-09-10 09:32:06 bjoern Exp $ # # Disable buffering on STDOUT! @@ -83,9 +83,6 @@ use constant MODE_SGML => 1; # 0000 0001 use constant MODE_XML => 2; # 0000 0010 use constant MODE_TBD => 4; # 0000 0100, needs further info to decide. -#@@FIXME: XML WF checking isn't implemented. -use constant MODE_WF => 8; # 0000 1000, only XML well-formed checking. - # # Define global variables. use vars qw($DEBUG $CFG $RSRC $VERSION); @@ -190,7 +187,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.447 $; + $VERSION = q$Revision: 1.448 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -366,7 +363,7 @@ if ($CFG->{'Allow Debug'}) { $DEBUG = FALSE; # The default. } -&abort_if_error_flagged($File, O_NONE); # Too early to &print_table. +&abort_if_error_flagged($File, O_NONE); # # Get the file and metadata. @@ -1023,9 +1020,7 @@ sub handle_file { $File->{Modified} = $q->http('Last-Modified'); $File->{Server} = $q->http('User-Agent'); # Fake a "server". :-) $File->{Size} = $q->http('Content-Length'); - $File->{URI} = "$f"; # Need to stringify because we want ref - # to return false later in add_table. This - # is also a file handle... see man CGI. + $File->{URI} = "$f"; $File->{'Is Upload'} = TRUE; return $File; @@ -1380,8 +1375,8 @@ sub preparse_doctype { # # Reset DOCTYPE, Root (for second invocation, probably not needed anymore). - $File->{DOCTYPE} = ''; - $File->{Root} = ''; + $File->{DOCTYPE} = ''; + $File->{Root} = ''; my $dtd = sub { return if $File->{Root}; |