diff options
author | duerst <duerst@localhost> | 2002-01-08 07:18:36 +0000 |
---|---|---|
committer | duerst <duerst@localhost> | 2002-01-08 07:18:36 +0000 |
commit | f8e250700598d7afbcfacce4ffc32d18772c0ed2 (patch) | |
tree | b30c216a00cac81d0b8d2b3cdddbd00c95836f89 | |
parent | 028e241fc8a903dc0e30006c3f0b815821ab7302 (diff) | |
download | markup-validator-f8e250700598d7afbcfacce4ffc32d18772c0ed2.zip markup-validator-f8e250700598d7afbcfacce4ffc32d18772c0ed2.tar.gz markup-validator-f8e250700598d7afbcfacce4ffc32d18772c0ed2.tar.bz2 |
added comment about incomplete support of 'macintosh' encoding
(iconv bug).
-rwxr-xr-x | httpd/cgi-bin/check | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index d80330b..43daee2 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.195 2001-11-14 08:02:03 duerst Exp $ +# $Id: check,v 1.196 2002-01-08 07:18:36 duerst Exp $ # # We need Perl 5.004. @@ -95,9 +95,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/'; # # Strings -$VERSION = q$Revision: 1.195 $; +$VERSION = q$Revision: 1.196 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; -$DATE = q$Date: 2001-11-14 08:02:03 $; +$DATE = q$Date: 2002-01-08 07:18:36 $; $MAINTAINER = 'gerald@w3.org'; $NOTICE = ''; # "<p><strong>Note: This service will be ...</strong>"; @@ -475,6 +475,10 @@ if ($File->{Use_Charset} eq 'unknown') { EOHD $File->{Tentative} |= T_DEBUG; # WOuld be T_WARN, but the complaints... } +## special warning because of iconv bug +if ( $File->{Use_Charset} eq 'macintosh' ) { + &add_warning("Charset not completely supported, sorry."); +} { # block for character conversion and checking my @lines; |