- From: Mercurial notifier <nobody@w3.org>
- Date: Thu, 05 Aug 2010 14:47:26 +0000
- To: link-checker updates <www-validator-cvs@w3.org>
changeset: 360:132872da47d3 user: ville date: Thu Mar 11 17:13:42 2010 +0000 files: Makefile.PL bin/checklink description: Fix HTML::Parser dependency version. diff -r d70651a64418 -r 132872da47d3 Makefile.PL --- a/Makefile.PL Wed Mar 10 20:58:58 2010 +0000 +++ b/Makefile.PL Thu Mar 11 17:13:42 2010 +0000 @@ -15,7 +15,7 @@ CSS::DOM::Style => 0, CSS::DOM::Util => 0, HTML::Entities => 0, - HTML::Parser => "3.20", + HTML::Parser => "3.40", HTTP::Headers::Util => 0, HTTP::Request => 0, HTTP::Response => "1.50", diff -r d70651a64418 -r 132872da47d3 bin/checklink --- a/bin/checklink Wed Mar 10 20:58:58 2010 +0000 +++ b/bin/checklink Thu Mar 11 17:13:42 2010 +0000 @@ -5,7 +5,7 @@ # (c) 1999-2010 World Wide Web Consortium # based on Renaud Bruyeron's checklink.pl # -# $Id: checklink,v 4.191 2010-03-09 20:52:16 ville Exp $ +# $Id: checklink,v 4.192 2010-03-11 17:13:42 ville Exp $ # # This program is licensed under the W3C(r) Software License: # http://www.w3.org/Consortium/Legal/copyright-software @@ -226,7 +226,7 @@ use CSS::DOM::Style qw(); use CSS::DOM::Util qw(); use HTML::Entities qw(); -use HTML::Parser 3.20 qw(); # >= 3.20 for "line" argspec identifier +use HTML::Parser 3.40 qw(); # >= 3.40 for utf8_mode() use HTTP::Headers::Util qw(); use HTTP::Request qw(); use HTTP::Response 1.50 qw(); # >= 1.50 for decoded_content() @@ -306,7 +306,7 @@ $PROGRAM = 'W3C-checklink'; $VERSION = '4.5'; $REVISION = sprintf('version %s (c) 1999-2010 W3C', $VERSION); - my ($cvsver) = q$Revision: 4.191 $ =~ /(\d+[\d\.]*\.\d+)/; + my ($cvsver) = q$Revision: 4.192 $ =~ /(\d+[\d\.]*\.\d+)/; $AGENT = sprintf( '%s/%s [%s] %s', $PROGRAM, $VERSION, $cvsver,
Received on Thursday, 5 August 2010 14:47:39 UTC