- From: Terje Bless <link@hutz.w3.org>
- Date: Tue, 18 May 2004 00:32:35 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/cgi-bin In directory hutz:/tmp/cvs-serv604 Modified Files: Tag: validator-0_6_0-branch check Log Message: Tweak indentation etc. of error message output. Index: check =================================================================== RCS file: /sources/public/validator/httpd/cgi-bin/check,v retrieving revision 1.305.2.130 retrieving revision 1.305.2.131 diff -u -d -r1.305.2.130 -r1.305.2.131 --- check 17 May 2004 21:03:57 -0000 1.305.2.130 +++ check 18 May 2004 00:32:32 -0000 1.305.2.131 @@ -1919,16 +1919,16 @@ if ($err->{num} and $File->{Opt}->{Verbose}) { my(undef, $num) = split /\./, $err->{num}; if (exists $Msgs{$num}) { - print qq(\n<div class="hidden mid-$num"></div>\n); + print qq(\n <div class="hidden mid-$num"></div>\n); } else { $Msgs{$num} = 1; - print $RSRC->{msg}->{$num}->{verbose} + print "\n $RSRC->{msg}->{$num}->{verbose}\n" if exists $RSRC->{msg}->{$num} && exists $RSRC->{msg}->{$num}->{verbose}; } my $_msg = $RSRC->{msg}->{nomsg}->{verbose}; $_msg =~ s/<!--MID-->/$num/g; - print $_msg; # The send feedback plea. + print " $_msg\n"; # The send feedback plea. } print "</li>\n"; }
Received on Monday, 17 May 2004 20:34:27 UTC