aboutsummaryrefslogtreecommitdiff
path: root/doc/design/assistant/progressbars.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-05-26 21:11:19 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-05-26 21:11:19 -0400
commit45a01db6add3399ff6ca93f2e7c7d83dbf59992d (patch)
tree0616e646feb8e663c9c995be32c03260483554a8 /doc/design/assistant/progressbars.mdwn
parentf7524811e2e47ca8455d3038b6d0a8102e5a5044 (diff)
add preliminary design
Diffstat (limited to 'doc/design/assistant/progressbars.mdwn')
-rw-r--r--doc/design/assistant/progressbars.mdwn14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/design/assistant/progressbars.mdwn b/doc/design/assistant/progressbars.mdwn
new file mode 100644
index 000000000..f76b42d73
--- /dev/null
+++ b/doc/design/assistant/progressbars.mdwn
@@ -0,0 +1,14 @@
+Currently, git-annex takes a very lazy approch to displaying
+progress into. It just lets rsync or whatever display the progress
+for it, in the terminal.
+
+Something better is needed for the [[webapp]]. There needs to be a
+way for the web app to know what the current progress is of all transfers.
+
+To get this info for downloads, git-annex can watch the file as it arrives
+and use its size.
+
+TODO: What about uploads? Will i have to parse rsync's progresss output?
+Ugh.
+
+This is one of those potentially hidden but time consuming problems.