diff options
-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. } |