mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/net/http.rb: merge a patch contributed by Daniel Berger, with some modification. (RubyForge #2128)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
36987b005e
commit
bf96629711
2 changed files with 25 additions and 42 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Jul 26 22:05:12 2005 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
|
* lib/net/http.rb: merge a patch contributed by Daniel Berger,
|
||||||
|
with some modification. (RubyForge #2128)
|
||||||
|
|
||||||
Tue Jul 26 18:11:33 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Jul 26 18:11:33 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* ruby.h: support LLP64 model. [ruby-talk:149524]
|
* ruby.h: support LLP64 model. [ruby-talk:149524]
|
||||||
|
|
|
@ -262,19 +262,13 @@ module Net # :nodoc:
|
||||||
#
|
#
|
||||||
# or:
|
# or:
|
||||||
#
|
#
|
||||||
# Net::HTTP.get_print('www.example.com', '/index.html')
|
# Net::HTTP.get_print 'www.example.com', '/index.html'
|
||||||
#
|
#
|
||||||
def HTTP.get_print(arg1, arg2 = nil, port = nil)
|
def HTTP.get_print(uri_or_host, path = nil, port = nil)
|
||||||
if arg2
|
get_response(uri_or_host, path, port) {|res|
|
||||||
addr, path = arg1, arg2
|
res.read_body do |chunk|
|
||||||
else
|
$stdout.print chunk
|
||||||
uri = arg1
|
end
|
||||||
addr = uri.host
|
|
||||||
path = uri.request_uri
|
|
||||||
port = uri.port
|
|
||||||
end
|
|
||||||
new(addr, port || HTTP.default_port).start {|http|
|
|
||||||
http.get path, nil, $stdout
|
|
||||||
}
|
}
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
@ -289,8 +283,8 @@ module Net # :nodoc:
|
||||||
#
|
#
|
||||||
# print Net::HTTP.get('www.example.com', '/index.html')
|
# print Net::HTTP.get('www.example.com', '/index.html')
|
||||||
#
|
#
|
||||||
def HTTP.get(arg1, arg2 = nil, arg3 = nil)
|
def HTTP.get(uri_or_host, path = nil, port = nil)
|
||||||
get_response(arg1, arg2, arg3).body
|
get_response(uri_or_host, path, port).body
|
||||||
end
|
end
|
||||||
|
|
||||||
# Send a GET request to the target and return the response
|
# Send a GET request to the target and return the response
|
||||||
|
@ -305,30 +299,20 @@ module Net # :nodoc:
|
||||||
# res = Net::HTTP.get_response('www.example.com', '/index.html')
|
# res = Net::HTTP.get_response('www.example.com', '/index.html')
|
||||||
# print res.body
|
# print res.body
|
||||||
#
|
#
|
||||||
def HTTP.get_response(arg1, arg2 = nil, arg3 = nil)
|
def HTTP.get_response(uri_or_host, path = nil, port = nil, &block)
|
||||||
if arg2
|
if path
|
||||||
get_by_path(arg1, arg2, arg3)
|
host = uri_or_host
|
||||||
|
new(host, port || HTTP.default_port).start {|http|
|
||||||
|
return http.request_get(path, &block)
|
||||||
|
}
|
||||||
else
|
else
|
||||||
get_by_uri(arg1)
|
uri = uri_or_host
|
||||||
|
new(uri.host, uri.port).start {|http|
|
||||||
|
return http.request_get(uri.request_uri, &block)
|
||||||
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def HTTP.get_by_path(addr, path, port = nil) #:nodoc:
|
|
||||||
new(addr, port || HTTP.default_port).start {|http|
|
|
||||||
return http.request(Get.new(path))
|
|
||||||
}
|
|
||||||
end
|
|
||||||
private_class_method :get_by_path
|
|
||||||
|
|
||||||
def HTTP.get_by_uri(uri) #:nodoc:
|
|
||||||
# Should we allow this?
|
|
||||||
# uri = URI.parse(uri) unless uri.respond_to?(:host)
|
|
||||||
new(uri.host, uri.port).start {|http|
|
|
||||||
return http.request(Get.new(uri.request_uri))
|
|
||||||
}
|
|
||||||
end
|
|
||||||
private_class_method :get_by_uri
|
|
||||||
|
|
||||||
# Posts HTML form data to the +URL+.
|
# Posts HTML form data to the +URL+.
|
||||||
# Form data must be represented as a Hash of String to String, e.g:
|
# Form data must be represented as a Hash of String to String, e.g:
|
||||||
#
|
#
|
||||||
|
@ -759,14 +743,8 @@ module Net # :nodoc:
|
||||||
# the socket. Note that in this case, the returned response
|
# the socket. Note that in this case, the returned response
|
||||||
# object will *not* contain a (meaningful) body.
|
# object will *not* contain a (meaningful) body.
|
||||||
#
|
#
|
||||||
# +dest+ is an alternative method of collecting the body. It
|
# +dest+ argument is obsolete.
|
||||||
# must be an object responding to the "<<" operator (such as
|
# It still works but you must not use it.
|
||||||
# a String or an Array). Each fragment of the entity body
|
|
||||||
# will be "<<"-ed in turn onto +dest+ if provided, and it will
|
|
||||||
# also become the body of the returned response object.
|
|
||||||
#
|
|
||||||
# You must *not* provide both +dest+ and a block; doing so
|
|
||||||
# will result in an ArgumentError.
|
|
||||||
#
|
#
|
||||||
# In version 1.1, this method might raise an exception for
|
# In version 1.1, this method might raise an exception for
|
||||||
# 3xx (redirect). In this case you can get an HTTPResponse object
|
# 3xx (redirect). In this case you can get an HTTPResponse object
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue