diff options
author | link <link@localhost> | 2002-10-30 19:07:15 +0000 |
---|---|---|
committer | link <link@localhost> | 2002-10-30 19:07:15 +0000 |
commit | 6d667b42e32e5bec75c195d95ebfd618e05090a1 (patch) | |
tree | c856644701ba7cd2fba0da55c9dd3e5d69dd244c | |
parent | 220895d9c4f7f9e3c4f699f6486d7a92cb782a77 (diff) | |
download | markup-validator-6d667b42e32e5bec75c195d95ebfd618e05090a1.zip markup-validator-6d667b42e32e5bec75c195d95ebfd618e05090a1.tar.gz markup-validator-6d667b42e32e5bec75c195d95ebfd618e05090a1.tar.bz2 |
Add back in note about limitations to XML support.
-rwxr-xr-x | httpd/cgi-bin/check | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 934b211..909da8c 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.278 2002-10-30 18:54:49 link Exp $ +# $Id: check,v 1.279 2002-10-30 19:07:15 link Exp $ # # Disable buffering on STDOUT! @@ -95,7 +95,7 @@ BEGIN { # # Strings - $VERSION = q$Revision: 1.278 $; + $VERSION = q$Revision: 1.279 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; @@ -157,7 +157,7 @@ $File->{'Header'} = &prepSSI({ }); $File->{'Footer'} = &prepSSI({ File => $CFG->{'Footer'}, - Date => q$Date: 2002-10-30 18:54:49 $, + Date => q$Date: 2002-10-30 19:07:15 $, }); # @@ -460,6 +460,11 @@ my @xmlflags = qw( if (&is_xml($File->{Type})) { $catalog = File::Spec->catfile($CFG->{'SGML Library'}, 'xml.soc'); push(@xmlflags, '-wxml'); + &add_warning($File, <<".EOF."); + <em>Note</em>: The Validator XML support has + <a href="http://openjade.sf.net/doc/xml.htm" + title="Limitations in Validator XML support">some limitations</a>. +.EOF. } |