1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/open-uri.rb (OpenURI.open_http): reject userinfo explicitly.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2005-02-12 05:12:56 +00:00
parent c34e899e4f
commit 203b7c50f2
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sat Feb 12 14:10:24 2005 Tanaka Akira <akr@m17n.org>
* lib/open-uri.rb (OpenURI.open_http): reject userinfo explicitly.
Sat Feb 12 13:54:03 2005 Tanaka Akira <akr@m17n.org>
* lib/open-uri.rb: support https if the platform provides CA

View file

@ -200,6 +200,10 @@ module OpenURI
raise "Non-HTTP proxy URI: #{proxy}" if proxy.class != URI::HTTP
end
if target.userinfo
raise "userinfo not supported. [RFC3986]"
end
require 'net/http'
klass = Net::HTTP
if URI::HTTP === target