aboutsummaryrefslogtreecommitdiff
path: root/doc/todo/interface_to_the___34__progress__34___of_annex_operations.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/todo/interface_to_the___34__progress__34___of_annex_operations.mdwn
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
Diffstat (limited to 'doc/todo/interface_to_the___34__progress__34___of_annex_operations.mdwn')
-rw-r--r--doc/todo/interface_to_the___34__progress__34___of_annex_operations.mdwn19
1 files changed, 0 insertions, 19 deletions
diff --git a/doc/todo/interface_to_the___34__progress__34___of_annex_operations.mdwn b/doc/todo/interface_to_the___34__progress__34___of_annex_operations.mdwn
deleted file mode 100644
index 68125c53b..000000000
--- a/doc/todo/interface_to_the___34__progress__34___of_annex_operations.mdwn
+++ /dev/null
@@ -1,19 +0,0 @@
-It would be really nice if external tools working with annex could obtain updates on the progress of operations so they could report using their own UI back to the user. Especially relevant for --batch --json modes of operations (e.g. for get or addurl) whenever no progress is reported by annex itself at all.
-
-Related:
-[datalad #478](https://github.com/datalad/datalad/issues/478)
-
-
-[[!meta author=yoh]]
-
-> --status-fd is one way, or the progress could be included as
-> part of the --batch protocol. In either case, it might make sense to
-> reuse part of the external special remote protocol. (Which would let you
-> relay the progress messages when datalad is doing a nested retrieval, I
-> suppose.) --[[Joey]]
-
->> [[done]]; --json-progress implemented. I limited the frequency of json
->> progress items to 10 per second max, and it's typically only 1 per
->> second or less, so didn't implement
->> --json-progress=N to tune it. Also added --json and --json-progress to
->> copy, move, mirror commands. --[[Joey]]