git-annex/doc/design/assistant/progressbars.mdwn

15 lines
586 B
Text
Raw Normal View History

2012-05-27 01:11:19 +00:00
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?
2012-06-29 19:44:14 +00:00
Feed it via a named pipe? Ugh. Check into librsync.
2012-05-27 01:11:19 +00:00
This is one of those potentially hidden but time consuming problems.