summaryrefslogtreecommitdiff
path: root/doc/bugs/addurl_file_doesn__39__t_work_with_spaces_in_filenames_and_--fast.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/bugs/addurl_file_doesn__39__t_work_with_spaces_in_filenames_and_--fast.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/bugs/addurl_file_doesn__39__t_work_with_spaces_in_filenames_and_--fast.mdwn')
-rw-r--r--doc/bugs/addurl_file_doesn__39__t_work_with_spaces_in_filenames_and_--fast.mdwn29
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/bugs/addurl_file_doesn__39__t_work_with_spaces_in_filenames_and_--fast.mdwn b/doc/bugs/addurl_file_doesn__39__t_work_with_spaces_in_filenames_and_--fast.mdwn
deleted file mode 100644
index 40a310df4..000000000
--- a/doc/bugs/addurl_file_doesn__39__t_work_with_spaces_in_filenames_and_--fast.mdwn
+++ /dev/null
@@ -1,29 +0,0 @@
-###What steps will reproduce the problem?
- $ git annex addurl 'file:///$HOME/space file' --fast
- addurl _$HOME_space%20file
- unable to access url: file:///$HOME/space file
- failed
- git-annex: addurl: 1 failed
-
- $ git annex addurl 'file:///home/arand/space\ file' --fast
- addurl _home_arand_space%5C%20file
- unable to access url: file:///home/arand/space\ file
- failed
- git-annex: addurl: 1 failed
-
-###What is the expected output? What do you see instead?
-
-I guess it's semi-expected to fail since spaces aren't supposed to be in urls, but with file:// it would be nice if that restriction was lessened.
-
-###What version of git-annex are you using? On what operating system?
-
-Debian sid/experimental
-
- git-annex version: 4.20130227
- local repository version: 4
- default repository version: 3
- supported repository versions: 3 4
- upgrade supported from repository versions: 0 1 2
-
-> Relaxed url parsing so this will work, and also in http:// urls etc.
-> [[done]] --[[Joey]]