- From: Mercurial notifier <nobody@w3.org>
- Date: Thu, 05 Aug 2010 14:47:14 +0000
- To: link-checker updates <www-validator-cvs@w3.org>
changeset: 238:fa96404467ee user: ville date: Sun May 04 16:59:22 2008 +0000 files: bin/checklink description: Don't do javascript progress callbacks in command line HTML mode. diff -r e0948599499a -r fa96404467ee bin/checklink --- a/bin/checklink Sun May 04 16:57:33 2008 +0000 +++ b/bin/checklink Sun May 04 16:59:22 2008 +0000 @@ -5,7 +5,7 @@ # (c) 1999-2008 World Wide Web Consortium # based on Renaud Bruyeron's checklink.pl # -# $Id: checklink,v 4.108 2008-05-04 16:57:33 ville Exp $ +# $Id: checklink,v 4.109 2008-05-04 16:59:22 ville Exp $ # # This program is licensed under the W3C(r) Software License: # http://www.w3.org/Consortium/Legal/copyright-software @@ -242,7 +242,7 @@ $PROGRAM = 'W3C-checklink'; $VERSION = '4.3'; $REVISION = sprintf('version %s (c) 1999-2008 W3C', $VERSION); - my ($cvsver) = q$Revision: 4.108 $ =~ /(\d+[\d\.]*\.\d+)/; + my ($cvsver) = q$Revision: 4.109 $ =~ /(\d+[\d\.]*\.\d+)/; $AGENT = sprintf('%s/%s [%s] %s', $PROGRAM, $VERSION, $cvsver, LWP::RobotUA->_agent()); @@ -955,7 +955,7 @@ print ' ' if ($Opts{HTML} && !$Opts{Command_Line}); } else { printf('<script type="text/javascript">show_progress("Checking link %s", "status_progress%s");</script>' , &encode($u), $result_anchor) - if ($Opts{HTML} && !$Opts{Summary_Only}); + if (!$Opts{Command_Line} && $Opts{HTML} && !$Opts{Summary_Only}); &hprintf("Checking link %s\n", $u); }
Received on Thursday, 5 August 2010 14:47:26 UTC