|
|
090be3 |
From 423d042371d0402071c309dc403ea2701600a98b Mon Sep 17 00:00:00 2001
|
|
|
090be3 |
From: nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
|
|
|
090be3 |
Date: Sat, 13 Feb 2016 08:12:21 +0000
|
|
|
090be3 |
Subject: [PATCH] no_proxy with whitespaces and leading dots
|
|
|
090be3 |
|
|
|
090be3 |
* lib/uri/generic.rb (find_proxy): exclude white-spaces and allow
|
|
|
090be3 |
for a leading dot in the domain name in no_proxy.
|
|
|
090be3 |
[ruby-core:54542] [Feature #8317]
|
|
|
090be3 |
|
|
|
090be3 |
The previous implementation wouldn't allow for white-spaces nor a leading dot
|
|
|
090be3 |
in the domain name. The latter is described in the wget documentation as a valid case.
|
|
|
090be3 |
|
|
|
090be3 |
By being more strict on the characters, which are counted to a domainname,
|
|
|
090be3 |
we allow for white-spaces.
|
|
|
090be3 |
Also, a possible leading dot will be handled gracefully.
|
|
|
090be3 |
|
|
|
090be3 |
[Fix GH-285]
|
|
|
090be3 |
|
|
|
090be3 |
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
|
|
|
090be3 |
---
|
|
|
090be3 |
ChangeLog | 6 ++++++
|
|
|
090be3 |
lib/uri/generic.rb | 2 +-
|
|
|
090be3 |
test/uri/test_generic.rb | 4 ++++
|
|
|
090be3 |
3 files changed, 11 insertions(+), 1 deletion(-)
|
|
|
090be3 |
|
|
|
090be3 |
diff --git a/ChangeLog b/ChangeLog
|
|
|
090be3 |
index 2945679..44116e0 100644
|
|
|
090be3 |
--- a/ChangeLog
|
|
|
090be3 |
+++ b/ChangeLog
|
|
|
090be3 |
@@ -1,3 +1,9 @@
|
|
|
090be3 |
+Sat Feb 13 17:11:58 2016 Fabian Wiesel <fabian.wiesel@sap.com>
|
|
|
090be3 |
+
|
|
|
090be3 |
+ * lib/uri/generic.rb (find_proxy): exclude white-spaces and allow
|
|
|
090be3 |
+ for a leading dot in the domain name in no_proxy.
|
|
|
090be3 |
+ [ruby-core:54542] [Feature #8317]
|
|
|
090be3 |
+
|
|
|
090be3 |
Sat Nov 30 13:28:13 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
090be3 |
|
|
|
090be3 |
* siphash.c (sip_hash24): fix for aligned word access little endian
|
|
|
090be3 |
diff --git a/lib/uri/generic.rb b/lib/uri/generic.rb
|
|
|
090be3 |
index aba54c1..f2a2d56 100644
|
|
|
090be3 |
--- a/lib/uri/generic.rb
|
|
|
090be3 |
+++ b/lib/uri/generic.rb
|
|
|
090be3 |
@@ -1662,7 +1662,7 @@ def find_proxy
|
|
|
090be3 |
|
|
|
090be3 |
name = 'no_proxy'
|
|
|
090be3 |
if no_proxy = ENV[name] || ENV[name.upcase]
|
|
|
090be3 |
- no_proxy.scan(/([^:,]*)(?::(\d+))?/) {|host, port|
|
|
|
090be3 |
+ no_proxy.scan(/(?!\.)([^:,\s]+)(?::(\d+))?/) {|host, port|
|
|
|
090be3 |
if /(\A|\.)#{Regexp.quote host}\z/i =~ self.host &&
|
|
|
090be3 |
(!port || self.port == port.to_i)
|
|
|
090be3 |
return nil
|
|
|
090be3 |
diff --git a/test/uri/test_generic.rb b/test/uri/test_generic.rb
|
|
|
090be3 |
index fcfe1f9..ad189fc 100644
|
|
|
090be3 |
--- a/test/uri/test_generic.rb
|
|
|
090be3 |
+++ b/test/uri/test_generic.rb
|
|
|
090be3 |
@@ -773,6 +773,14 @@ def test_find_proxy
|
|
|
090be3 |
assert_equal(URI('http://127.0.0.1:8080'), URI("http://192.0.2.1/").find_proxy)
|
|
|
090be3 |
assert_nil(URI("http://192.0.2.2/").find_proxy)
|
|
|
090be3 |
}
|
|
|
090be3 |
+ with_env('http_proxy'=>'http://127.0.0.1:8080', 'no_proxy'=>'example.org') {
|
|
|
090be3 |
+ assert_nil(URI("http://example.org/").find_proxy)
|
|
|
090be3 |
+ assert_nil(URI("http://www.example.org/").find_proxy)
|
|
|
090be3 |
+ }
|
|
|
090be3 |
+ with_env('http_proxy'=>'http://127.0.0.1:8080', 'no_proxy'=>'.example.org') {
|
|
|
090be3 |
+ assert_nil(URI("http://example.org/").find_proxy)
|
|
|
090be3 |
+ assert_nil(URI("http://www.example.org/").find_proxy)
|
|
|
090be3 |
+ }
|
|
|
090be3 |
with_env('http_proxy'=>'') {
|
|
|
090be3 |
assert_nil(URI("http://192.0.2.1/").find_proxy)
|
|
|
090be3 |
assert_nil(URI("ftp://192.0.2.1/").find_proxy)
|