aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/file_not_found.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:46:11 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:55:29 -0400
commitdbfc00e2a6ad99200da35f75f889174cd7bfd195 (patch)
tree9d8a9d1353ab10376183c1bda881fface04b6fcb /doc/bugs/file_not_found.mdwn
parent41b7950285ef1e91b80c441c2be68a1ef4d0d27c (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 Q3 2015. Command line used: for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --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=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done
Diffstat (limited to 'doc/bugs/file_not_found.mdwn')
-rw-r--r--doc/bugs/file_not_found.mdwn30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/bugs/file_not_found.mdwn b/doc/bugs/file_not_found.mdwn
deleted file mode 100644
index e12ec1e6d..000000000
--- a/doc/bugs/file_not_found.mdwn
+++ /dev/null
@@ -1,30 +0,0 @@
-### Please describe the problem.
-Unable to use webapp after creating annex. Error `The file /annex/webapp.html does not exist.` is shown.
-
-
-### What steps will reproduce the problem?
-Create annex, either using webapp or command line. Kill the webapp and attempt to relaunch.
-
-
-### What version of git-annex are you using? On what operating system?
-git-annex version: 5.20150205
-
-OS X Version: 10.10.3 (14D136)
-
-Installed using homebrew
-
-### Please provide any additional information below.
-
-
-It appears that git-annex is using an absolute path, rather than a relative path pointing to `.git/annex/webapp.html`.
-Manually opening the file at `.git/annex/webapp.html` does however show the correct web interface.
-
-[[!format sh """
- git-annex webapp
-Launching web browser on file://.git/annex/webapp.html
-The file /annex/webapp.html does not exist.
-"""]]
-
-> This is an old version of git-annex and there was known breakage around
-> that time from the relative path conversion, since fixed, which IIRC
-> would manifest this way. [[done]] --[[Joey]]