diff options
author | ville <ville@localhost> | 2009-10-23 20:46:21 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-10-23 20:46:21 +0000 |
commit | e901993d2506ee76d262343d970706029d619e5f (patch) | |
tree | 51585ecd988bd2f98a6271aa4137a80822d38c31 /httpd | |
parent | d4a8d1ea7bd9069c35827b1cd5a697c574bda55d (diff) | |
download | markup-validator-e901993d2506ee76d262343d970706029d619e5f.zip markup-validator-e901993d2506ee76d262343d970706029d619e5f.tar.gz markup-validator-e901993d2506ee76d262343d970706029d619e5f.tar.bz2 |
Remove proprietary XML output option.
It has been deprecated for years, and was announced to be removed in 0.8
in 2006 but has stuck around for some reason until now.
Diffstat (limited to 'httpd')
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 84d3abf..b2395e5 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -14,7 +14,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.714 2009-10-23 19:18:00 ville Exp $ +# $Id: check,v 1.715 2009-10-23 20:46:13 ville Exp $ # # Disable buffering on STDOUT! $| = 1; @@ -208,7 +208,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.714 $; + $VERSION = q$Revision: 1.715 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -829,9 +829,7 @@ if (!$File->{'Is Valid'} && $File->{Opt}->{'Show Tidy'}) { my $template; -if ($File->{Opt}->{Output} eq 'xml') { - $template = &get_template($File, 'xml_output.tmpl'); -} elsif ($File->{Opt}->{Output} eq 'earl') { +if ($File->{Opt}->{Output} eq 'earl') { $template = &get_template($File, 'earl_xml.tmpl'); } elsif ($File->{Opt}->{Output} eq 'n3') { $template = &get_template($File, 'earl_n3.tmpl'); |