* [JGIT PATCH] Allow http_proxy values without protocol-part
@ 2009-07-09 21:28 Christian Halstrick
2009-07-10 15:22 ` Shawn O. Pearce
0 siblings, 1 reply; 2+ messages in thread
From: Christian Halstrick @ 2009-07-09 21:28 UTC (permalink / raw)
To: Shawn O. Pearce, Robin Rosenberg; +Cc: git
From: Christian Halstrick <christian.halstrick@sap.com>
jgit reads the environment variable http_proxy to configure the proxy
for http traffic in the same way as applications using the libcurl
library. It would be nice if jgit would understand the same values as
libcurl, but for libcurl the protocol part is optional (e.g.
http_proxy=proxy:8080 is valid). I changed jgit to also support
http_proxy values without a protocol spec. When no protocol is
specified "http://" is assumed.
Signed-off-by: Christian Halstrick <christian.halstrick@sap.com>
---
.../src/org/spearce/jgit/util/HttpSupport.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java b/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java
index 33dfcee..5f21677 100644
--- a/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java
+++ b/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java
@@ -69,7 +69,7 @@ public static void configureHttpProxy() throws MalformedURLException {
if (s == null || s.equals(""))
return;
- final URL u = new URL(s);
+ final URL u = new URL((s.indexOf("://")==-1) ? "http://"+s : s);
if (!"http".equals(u.getProtocol()))
throw new MalformedURLException("Invalid http_proxy: " + s
+ ": Only http supported.");
--
1.6.3.2.1299.gee46c
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [JGIT PATCH] Allow http_proxy values without protocol-part
2009-07-09 21:28 [JGIT PATCH] Allow http_proxy values without protocol-part Christian Halstrick
@ 2009-07-10 15:22 ` Shawn O. Pearce
0 siblings, 0 replies; 2+ messages in thread
From: Shawn O. Pearce @ 2009-07-10 15:22 UTC (permalink / raw)
To: Christian Halstrick; +Cc: Robin Rosenberg, git
Sorry I didn't respond earlier this week, I was more or less offline
for basically 2.5 days.
Christian Halstrick <christian.halstrick@gmail.com> wrote:
> jgit reads the environment variable http_proxy to configure the proxy
> for http traffic in the same way as applications using the libcurl
> library. It would be nice if jgit would understand the same values as
> libcurl, but for libcurl the protocol part is optional (e.g.
> http_proxy=proxy:8080 is valid). I changed jgit to also support
> http_proxy values without a protocol spec. When no protocol is
> specified "http://" is assumed.
This didn't really fit with our style of commit messages. Instead of
saying what you did, we prefer to say *why* you did it. The what
is clear from the diff. The why is usually less clear.
I replaced the message with the following:
--8<--
Allow http_proxy values without protocol-part
jgit reads the environment variable http_proxy to configure the
JRE's URL library for HTTP traffic through the proxy in the same
way as other applications that are using the libcurl library.
libcurl assumes "http://" when the protocol is not specified in
http_proxy, so jgit should do the same.
Thus http_proxy=proxy:8080 is now valid.
Signed-off-by: Christian Halstrick <christian.halstrick@sap.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-->8--
> diff --git a/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java b/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java
> index 33dfcee..5f21677 100644
> --- a/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java
> +++ b/org.spearce.jgit/src/org/spearce/jgit/util/HttpSupport.java
> @@ -69,7 +69,7 @@ public static void configureHttpProxy() throws MalformedURLException {
> if (s == null || s.equals(""))
> return;
>
> - final URL u = new URL(s);
> + final URL u = new URL((s.indexOf("://")==-1) ? "http://"+s : s);
Also, our formatting rules tend to place spaces around operators,
so this line was reformatted slightly to honor that convention.
If you are using Eclipse, the projects should be configured
automatically with our preferred code formatting rules, though
Eclipse often gets Javadoc blocks wrong and adds a trailing space
on the end of a blank line.
But, patches applied clean, so your techique of sending works.
Thanks.
--
Shawn.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-07-10 15:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-09 21:28 [JGIT PATCH] Allow http_proxy values without protocol-part Christian Halstrick
2009-07-10 15:22 ` Shawn O. Pearce
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).