summaryrefslogtreecommitdiff
path: root/doc/bugs/Proxy_support.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/Proxy_support.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/Proxy_support.mdwn')
-rw-r--r--doc/bugs/Proxy_support.mdwn42
1 files changed, 0 insertions, 42 deletions
diff --git a/doc/bugs/Proxy_support.mdwn b/doc/bugs/Proxy_support.mdwn
deleted file mode 100644
index 2af63d706..000000000
--- a/doc/bugs/Proxy_support.mdwn
+++ /dev/null
@@ -1,42 +0,0 @@
-What steps will reproduce the problem?
-
-Adding a e.g box.com repository from behind a http proxy via webapp.
-
-What is the expected output? What do you see instead?
-
-Connection should be made. But there is an error message:
-
-"Internal Server Error
-connect: does not exist (Connection refused): user error"
-
-What version of git-annex are you using? On what operating system?
-
-3.20121127 on Archlinux
-
-Please provide any additional information below.
-
-I don't use networkmanager if proxy information is obtained from it. There should be a fallback to environment variables.
-[[!tag confirmed]]
-
-> Here's a patch that shows how to enable proxy support for the
-> parts of git-annex that use http-client and http-conduit:
-> <https://github.com/kiwiroy/git-annex/commit/18a3ceda1beb7c356541270f37ae4c0d56ada726>
->
-> Other parts of git-annex use wget/curl and should already support
-> the environment variables.
-
->> I had a closer look at this, and it turns out that http-client
->> now enables http proxy support by default, when the environment variable
->> is set. Since version 0.4.7. See `defaultProxy`.
->>
->> git-annex uses http-client for all its http access (either directly
->> or through layers like http-conduit and DAV).
->>
->> So I don't need to change
->> git-annex at all; it just needs to be built with a new enough version
->> of http-client. This will happen for the linux autobuilders once the new
->> version reaches Debian. I've updated the OSX autobuilder's http-client
->> so it will already support proxying and anyone can built git-annex
->> using the new http-client and get proxy support.
->>
->> Calling this [[done]] as nothing remains to do in git-annex. --[[Joey]]