- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 26 Jun 2009 21:15:08 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/cgi-bin In directory hutz:/tmp/cvs-serv22092/httpd/cgi-bin Modified Files: check Log Message: Whitespace, NFC. Index: check =================================================================== RCS file: /sources/public/validator/httpd/cgi-bin/check,v retrieving revision 1.660 retrieving revision 1.661 diff -u -d -r1.660 -r1.661 --- check 26 Jun 2009 20:51:50 -0000 1.660 +++ check 26 Jun 2009 21:15:06 -0000 1.661 @@ -206,27 +206,27 @@ # Use passive FTP by default. $ENV{FTP_PASSIVE} = 1 unless exists($ENV{FTP_PASSIVE}); -# Read friendly error message file -my %rsrc = Config::General->new( - -MergeDuplicateBlocks => 1, - -ConfigFile => catfile($CFG->{Paths}->{Templates}, 'en_US', - 'error_messages.cfg'), + # Read friendly error message file + my %rsrc = Config::General->new( + -MergeDuplicateBlocks => 1, + -ConfigFile => catfile($CFG->{Paths}->{Templates}, 'en_US', + 'error_messages.cfg'), )->getall(); -# 'en_US' should be replaced by $lang for lang-neg -# Config::General 2.31 workaround for <msg 0> issues: -# http://lists.w3.org/Archives/Public/public-qa-dev/2006Feb/0022.html -# http://lists.w3.org/Archives/Public/public-qa-dev/2006Feb/0025.html -# https://rt.cpan.org/Public/Bug/Display.html?id=17852 -$rsrc{msg}{0} ||= + # 'en_US' should be replaced by $lang for lang-neg + # Config::General 2.31 workaround for <msg 0> issues: + # http://lists.w3.org/Archives/Public/public-qa-dev/2006Feb/0022.html + # http://lists.w3.org/Archives/Public/public-qa-dev/2006Feb/0025.html + # https://rt.cpan.org/Public/Bug/Display.html?id=17852 + $rsrc{msg}{0} ||= { original => delete($rsrc{msg}{original}), verbose => delete($rsrc{msg}{verbose}), }; -$RSRC = \%rsrc; + $RSRC = \%rsrc; -eval { - local $SIG{__DIE__}; - require Encode::JIS2K; # for optional extra Japanese encodings -}; + eval { + local $SIG{__DIE__}; + require Encode::JIS2K; # for optional extra Japanese encodings + }; } # end of BEGIN block.
Received on Friday, 26 June 2009 21:15:17 UTC