Closed (fixed)
Project:
Backup and Migrate
Version:
7.x-3.x-dev
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
20 Dec 2009 at 19:07 UTC
Updated:
24 Apr 2013 at 19:40 UTC
Jump to comment: Most recent file
Comments
Comment #1
ronan commentedGlad it's working out. ms is Milliseconds. 1000 ms per second. Your backup took 46 seconds to complete.
http://en.wikipedia.org/wiki/Millisecond
Computer timing is usually done in milliseconds for accuracy. I suppose I could convert to seconds to make it more user friendly, but it's a fairly easy bit of mental math and 46.44564 seconds doesn't look a whole lot more friendly.
Comment #2
gappleOne method I've seen in use that I think is pretty user-friendly but still functional, is to round the value for display but use a tooltip to show the full value. This way you could write "backup took 46.4 seconds" on the page (or minutes if more appropriate), and if anyone wants more specific information they can hover over the value to get "backup took precisely 46445.64 ms" in the tooltip.
I've attached a quick patch to show what I mean. It could use some styling to indicate that the value is now hover worthy (eg., a dotted underline). I wasn't sure if using an
<abbr>tag, which usually has an underline by default, would be appropriate instead of a<span>with custom styling.Comment #3
ronan commentedWell better late than never. This is now the behavior in the 3.x branch