- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 01 Oct 2009 16:01:31 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/perl/modules/W3C/LinkChecker/bin In directory hutz:/tmp/cvs-serv7817 Modified Files: checklink Log Message: Don't abbreviate "seconds", just say it. Index: checklink =================================================================== RCS file: /sources/public/perl/modules/W3C/LinkChecker/bin/checklink,v retrieving revision 4.164 retrieving revision 4.165 diff -u -d -r4.164 -r4.165 --- checklink 5 Aug 2009 20:35:11 -0000 4.164 +++ checklink 1 Oct 2009 16:01:29 -0000 4.165 @@ -1120,9 +1120,9 @@ } } } - &hprintf("\nProcessed in %ss.\n", &time_diff($start, &get_timestamp())) + &hprintf("\nProcessed in %s seconds.\n", &time_diff($start, &get_timestamp())) unless $Opts{Summary_Only}; - printf('<script type="text/javascript">show_progress("Done. Document processed in %ss.\n", "status_progress%s", "pre_progress%s");</script>' , &time_diff($start, &get_timestamp()), $result_anchor, $result_anchor) + printf('<script type="text/javascript">show_progress("Done. Document processed in %s seconds.", "status_progress%s", "pre_progress%s");</script>' , &time_diff($start, &get_timestamp()), $result_anchor, $result_anchor) if ($Opts{HTML} && !$Opts{Summary_Only}); # Display results @@ -1413,7 +1413,7 @@ $start, $redirects, $code, $realm, $message, 1); } # @@@ subtract robot delay from the "fetched in" time? - &hprintf(" fetched in %ss\n", + &hprintf(" fetched in %s seconds\n", &time_diff($start, &get_timestamp())) if $verbose_progress; $response->{Realm} = $realm if defined($realm); @@ -1544,7 +1544,7 @@ if (! $Opts{Summary_Only}) { my $stop = &get_timestamp(); print "\r" if $Opts{Progress}; - &hprintf(" done (%d lines in %ss).\n", + &hprintf(" done (%d lines in %s seconds).\n", $p->{Total}, &time_diff($start, $stop)); }
Received on Thursday, 1 October 2009 16:01:32 UTC