From 23bfeef5d168666d17343d5484974b7b65db5441 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 28 Mar 2013 17:03:04 -0400 Subject: webapp: Progess bar fixes for many types of special remotes. There was confusion in different parts of the progress bar code about whether an update contained the total number of bytes transferred, or the number of bytes transferred since the last update. One way this bug showed up was progress bars that seemed to stick at zero for a long time. In order to fix it comprehensively, I add a new BytesProcessed data type, that is explicitly a total quantity of bytes, not a delta. Note that this doesn't necessarily fix every problem with progress bars. Particularly, buffering can now cause progress bars to seem to run ahead of transfers, reaching 100% when data is still being uploaded. --- Types.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Types.hs') diff --git a/Types.hs b/Types.hs index d19ac3de1..ea0fa6b89 100644 --- a/Types.hs +++ b/Types.hs @@ -14,8 +14,7 @@ module Types ( RemoteGitConfig(..), Remote, RemoteType, - Option, - MeterUpdate + Option ) where import Annex @@ -25,7 +24,6 @@ import Types.Key import Types.UUID import Types.Remote import Types.Option -import Types.Meters type Backend = BackendA Annex type Remote = RemoteA Annex -- cgit v1.2.3