httpclient 2.1.3 → 2.1.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -199,9 +199,9 @@ require 'httpclient/cookie'
199
199
  # ruby -rhttpclient -e 'p HTTPClient.head(ARGV.shift).header["last-modified"]' http://dev.ctor.org/
200
200
  #
201
201
  class HTTPClient
202
- VERSION = '2.1.3'
202
+ VERSION = '2.1.3.1'
203
203
  RUBY_VERSION_STRING = "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
204
- /: (\S+) (\S+)/ =~ %q$Id: httpclient.rb 256 2008-12-29 14:40:49Z nahi $
204
+ /: (\S+) (\S+)/ =~ %q$Id: httpclient.rb 259 2009-01-08 12:49:04Z nahi $
205
205
  LIB_NAME = "(#{$1}/#{$2}, #{RUBY_VERSION_STRING})"
206
206
 
207
207
  include Util
@@ -511,9 +511,7 @@ class HTTPClient
511
511
  # use get method. get returns HTTP::Message as a response and you need to
512
512
  # follow HTTP redirect by yourself if you need.
513
513
  def get_content(uri, query = nil, extheader = {}, &block)
514
- uri = urify(uri)
515
- req = create_request('GET', uri, query, nil, extheader)
516
- follow_redirect(req, &block).content
514
+ follow_redirect(:get, uri, query, nil, extheader, &block).content
517
515
  end
518
516
 
519
517
  # Posts a content.
@@ -539,9 +537,7 @@ class HTTPClient
539
537
  # If you need to get full HTTP response including HTTP status and headers,
540
538
  # use post method.
541
539
  def post_content(uri, body = nil, extheader = {}, &block)
542
- uri = urify(uri)
543
- req = create_request('POST', uri, nil, body, extheader)
544
- follow_redirect(req, &block).content
540
+ follow_redirect(:post, uri, nil, body, extheader, &block).content
545
541
  end
546
542
 
547
543
  # A method for redirect uri callback. How to use:
@@ -551,6 +547,9 @@ class HTTPClient
551
547
  # in HTTP header. (raises BadResponseError instead)
552
548
  def strict_redirect_uri_callback(uri, res)
553
549
  newuri = URI.parse(res.header['location'][0])
550
+ if https?(uri) && !https?(newuri)
551
+ raise BadResponseError.new("redirecting to non-https resource")
552
+ end
554
553
  unless newuri.is_a?(URI::HTTP)
555
554
  raise BadResponseError.new("unexpected location: #{newuri}", res)
556
555
  end
@@ -565,6 +564,9 @@ class HTTPClient
565
564
  # in HTTP header.
566
565
  def default_redirect_uri_callback(uri, res)
567
566
  newuri = URI.parse(res.header['location'][0])
567
+ if https?(uri) && !https?(newuri)
568
+ raise BadResponseError.new("redirecting to non-https resource")
569
+ end
568
570
  unless newuri.is_a?(URI::HTTP)
569
571
  newuri = uri + newuri
570
572
  STDERR.puts("could be a relative URI in location header which is not recommended")
@@ -652,7 +654,7 @@ class HTTPClient
652
654
  def request(method, uri, query = nil, body = nil, extheader = {}, &block)
653
655
  uri = urify(uri)
654
656
  proxy = no_proxy?(uri) ? nil : @proxy
655
- req = create_request(method.to_s.upcase, uri, query, body, extheader)
657
+ req = create_request(method, uri, query, body, extheader)
656
658
  if block
657
659
  filtered_block = proc { |res, str|
658
660
  block.call(str)
@@ -722,7 +724,7 @@ class HTTPClient
722
724
  def request_async(method, uri, query = nil, body = nil, extheader = {})
723
725
  uri = urify(uri)
724
726
  proxy = no_proxy?(uri) ? nil : @proxy
725
- req = create_request(method.to_s.upcase, uri, query, body, extheader)
727
+ req = create_request(method, uri, query, body, extheader)
726
728
  do_request_async(req, proxy)
727
729
  end
728
730
 
@@ -802,21 +804,26 @@ private
802
804
  ENV[name.downcase] || ENV[name.upcase]
803
805
  end
804
806
 
805
- def follow_redirect(req, &block)
806
- retry_number = 0
807
+ def follow_redirect(method, uri, query, body, extheader, &block)
808
+ uri = urify(uri)
807
809
  if block
808
810
  filtered_block = proc { |r, str|
809
811
  block.call(str) if HTTP::Status.successful?(r.status)
810
812
  }
811
813
  end
814
+ if HTTP::Message.file?(body)
815
+ pos = body.pos rescue nil
816
+ end
817
+ retry_number = 0
812
818
  while retry_number < @follow_redirect_count
819
+ body.pos = pos if pos
820
+ req = create_request(method, uri, query, body, extheader)
813
821
  proxy = no_proxy?(req.header.request_uri) ? nil : @proxy
814
822
  res = do_request(req, proxy, &filtered_block)
815
823
  if HTTP::Status.successful?(res.status)
816
824
  return res
817
825
  elsif HTTP::Status.redirect?(res.status)
818
826
  uri = urify(@redirect_uri_callback.call(req.header.request_uri, res))
819
- req.header.request_uri = uri
820
827
  retry_number += 1
821
828
  else
822
829
  raise BadResponseError.new("unexpected response: #{res.header.inspect}", res)
@@ -834,6 +841,7 @@ private
834
841
  end
835
842
 
836
843
  def create_request(method, uri, query, body, extheader)
844
+ method = method.to_s.upcase
837
845
  if extheader.is_a?(Hash)
838
846
  extheader = extheader.to_a
839
847
  else
@@ -913,6 +921,10 @@ private
913
921
  false
914
922
  end
915
923
 
924
+ def https?(uri)
925
+ uri.scheme.downcase == 'https'
926
+ end
927
+
916
928
  # !! CAUTION !!
917
929
  # Method 'do_get*' runs under MT conditon. Be careful to change.
918
930
  def do_get_block(req, proxy, conn, &block)
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -1,5 +1,5 @@
1
1
  # HTTPClient - HTTP client library.
2
- # Copyright (C) 2000-2008 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
2
+ # Copyright (C) 2000-2009 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
3
3
  #
4
4
  # This program is copyrighted free software by NAKAMURA, Hiroshi. You can
5
5
  # redistribute it and/or modify it under the same terms of Ruby's license;
@@ -0,0 +1,912 @@
1
+ ::HTTP httpclient/http.rb /^module HTTP/
2
+ ::HTTP.http_date httpclient/http.rb /^ def http_date/
3
+ ::HTTP.keep_alive_enabled? httpclient/http.rb /^ def keep_alive_enabled?/
4
+ ::HTTP::Message httpclient/http.rb /^ class Message/
5
+ ::HTTP::Message#HTTP::Message.new httpclient/http.rb /^ def initialize/
6
+ ::HTTP::Message#body httpclient/http.rb /^ attr_reader :body/
7
+ ::HTTP::Message#body= httpclient/http.rb /^ def body=/
8
+ ::HTTP::Message#code httpclient/http.rb /^ alias code/
9
+ ::HTTP::Message#content httpclient/http.rb /^ def content/
10
+ ::HTTP::Message#contenttype httpclient/http.rb /^ def contenttype/
11
+ ::HTTP::Message#contenttype= httpclient/http.rb /^ def contenttype=/
12
+ ::HTTP::Message#dump httpclient/http.rb /^ def dump/
13
+ ::HTTP::Message#header httpclient/http.rb /^ attr_reader :header/
14
+ ::HTTP::Message#header= httpclient/http.rb /^ def header=/
15
+ ::HTTP::Message#load httpclient/http.rb /^ def load/
16
+ ::HTTP::Message#peer_cert httpclient/http.rb /^ attr_accessor :peer_cert/
17
+ ::HTTP::Message#reason httpclient/http.rb /^ def reason/
18
+ ::HTTP::Message#reason= httpclient/http.rb /^ def reason=/
19
+ ::HTTP::Message#status httpclient/http.rb /^ def status/
20
+ ::HTTP::Message#status= httpclient/http.rb /^ def status=/
21
+ ::HTTP::Message#status_code httpclient/http.rb /^ alias status_code/
22
+ ::HTTP::Message#version httpclient/http.rb /^ def version/
23
+ ::HTTP::Message#version= httpclient/http.rb /^ def version=/
24
+ ::HTTP::Message.create_query_part_str httpclient/http.rb /^ def create_query_part_str/
25
+ ::HTTP::Message.escape httpclient/http.rb /^ def escape/
26
+ ::HTTP::Message.escape_query httpclient/http.rb /^ def escape_query/
27
+ ::HTTP::Message.file? httpclient/http.rb /^ def file?/
28
+ ::HTTP::Message.get_mime_type_func httpclient/http.rb /^ def get_mime_type_func/
29
+ ::HTTP::Message.internal_mime_type httpclient/http.rb /^ def internal_mime_type/
30
+ ::HTTP::Message.mime_type httpclient/http.rb /^ def mime_type/
31
+ ::HTTP::Message.multiparam_query? httpclient/http.rb /^ def multiparam_query?/
32
+ ::HTTP::Message.new_connect_request httpclient/http.rb /^ def self.new_connect_request/
33
+ ::HTTP::Message.new_request httpclient/http.rb /^ def self.new_request/
34
+ ::HTTP::Message.new_response httpclient/http.rb /^ def self.new_response/
35
+ ::HTTP::Message.set_mime_type_func httpclient/http.rb /^ def set_mime_type_func/
36
+ ::HTTP::Message::Body httpclient/http.rb /^ class Body/
37
+ ::HTTP::Message::Body#HTTP::Message::Body.new httpclient/http.rb /^ def initialize/
38
+ ::HTTP::Message::Body#build_query_multipart_str httpclient/http.rb /^ def build_query_multipart_str/
39
+ ::HTTP::Message::Body#chunk_size httpclient/http.rb /^ attr_accessor :chunk_size/
40
+ ::HTTP::Message::Body#content httpclient/http.rb /^ def content/
41
+ ::HTTP::Message::Body#dump httpclient/http.rb /^ def dump/
42
+ ::HTTP::Message::Body#dump_chunk httpclient/http.rb /^ def dump_chunk/
43
+ ::HTTP::Message::Body#dump_chunk_size httpclient/http.rb /^ def dump_chunk_size/
44
+ ::HTTP::Message::Body#dump_chunked httpclient/http.rb /^ def dump_chunked/
45
+ ::HTTP::Message::Body#dump_chunks httpclient/http.rb /^ def dump_chunks/
46
+ ::HTTP::Message::Body#dump_last_chunk httpclient/http.rb /^ def dump_last_chunk/
47
+ ::HTTP::Message::Body#init_request httpclient/http.rb /^ def init_request/
48
+ ::HTTP::Message::Body#init_response httpclient/http.rb /^ def init_response/
49
+ ::HTTP::Message::Body#params_from_file httpclient/http.rb /^ def params_from_file/
50
+ ::HTTP::Message::Body#remember_pos httpclient/http.rb /^ def remember_pos/
51
+ ::HTTP::Message::Body#reset_pos httpclient/http.rb /^ def reset_pos/
52
+ ::HTTP::Message::Body#set_content httpclient/http.rb /^ def set_content/
53
+ ::HTTP::Message::Body#size httpclient/http.rb /^ attr_reader :size/
54
+ ::HTTP::Message::Body::Parts httpclient/http.rb /^ class Parts/
55
+ ::HTTP::Message::Body::Parts#HTTP::Message::Body::Parts.new httpclient/http.rb /^ def initialize/
56
+ ::HTTP::Message::Body::Parts#add httpclient/http.rb /^ def add/
57
+ ::HTTP::Message::Body::Parts#parts httpclient/http.rb /^ def parts/
58
+ ::HTTP::Message::Body::Parts#size httpclient/http.rb /^ attr_reader :size/
59
+ ::HTTP::Message::Headers httpclient/http.rb /^ class Headers/
60
+ ::HTTP::Message::Headers#HTTP::Message::Headers.new httpclient/http.rb /^ def initialize/
61
+ ::HTTP::Message::Headers#[] httpclient/http.rb /^ def []/
62
+ ::HTTP::Message::Headers#[]= httpclient/http.rb /^ def []=/
63
+ ::HTTP::Message::Headers#all httpclient/http.rb /^ def all/
64
+ ::HTTP::Message::Headers#body_charset httpclient/http.rb /^ attr_accessor :body_charset/
65
+ ::HTTP::Message::Headers#body_date httpclient/http.rb /^ attr_accessor :body_date/
66
+ ::HTTP::Message::Headers#body_size httpclient/http.rb /^ attr_reader :body_size/
67
+ ::HTTP::Message::Headers#body_size= httpclient/http.rb /^ def body_size=/
68
+ ::HTTP::Message::Headers#body_type httpclient/http.rb /^ attr_accessor :body_type/
69
+ ::HTTP::Message::Headers#chunked httpclient/http.rb /^ attr_accessor :chunked/
70
+ ::HTTP::Message::Headers#contenttype httpclient/http.rb /^ def contenttype/
71
+ ::HTTP::Message::Headers#contenttype= httpclient/http.rb /^ def contenttype=/
72
+ ::HTTP::Message::Headers#create_query_uri httpclient/http.rb /^ def create_query_uri/
73
+ ::HTTP::Message::Headers#delete httpclient/http.rb /^ def delete/
74
+ ::HTTP::Message::Headers#dump httpclient/http.rb /^ def dump/
75
+ ::HTTP::Message::Headers#get httpclient/http.rb /^ def get/
76
+ ::HTTP::Message::Headers#http_version httpclient/http.rb /^ attr_accessor :http_version/
77
+ ::HTTP::Message::Headers#init_connect_request httpclient/http.rb /^ def init_connect_request/
78
+ ::HTTP::Message::Headers#init_request httpclient/http.rb /^ def init_request/
79
+ ::HTTP::Message::Headers#init_response httpclient/http.rb /^ def init_response/
80
+ ::HTTP::Message::Headers#reason_phrase httpclient/http.rb /^ attr_accessor :reason_phrase/
81
+ ::HTTP::Message::Headers#request_line httpclient/http.rb /^ def request_line/
82
+ ::HTTP::Message::Headers#request_method httpclient/http.rb /^ attr_reader :request_method/
83
+ ::HTTP::Message::Headers#request_query httpclient/http.rb /^ attr_accessor :request_query/
84
+ ::HTTP::Message::Headers#request_uri httpclient/http.rb /^ attr_accessor :request_uri/
85
+ ::HTTP::Message::Headers#request_via_proxy httpclient/http.rb /^ attr_accessor :request_via_proxy/
86
+ ::HTTP::Message::Headers#response_status_code httpclient/http.rb /^ attr_reader :response_status_code/
87
+ ::HTTP::Message::Headers#response_status_code= httpclient/http.rb /^ def response_status_code=/
88
+ ::HTTP::Message::Headers#response_status_line httpclient/http.rb /^ def response_status_line/
89
+ ::HTTP::Message::Headers#set httpclient/http.rb /^ def set/
90
+ ::HTTP::Message::Headers#set_header httpclient/http.rb /^ def set_header/
91
+ ::HTTP::Message::Headers#set_request_header httpclient/http.rb /^ def set_request_header/
92
+ ::HTTP::Message::Headers#set_response_header httpclient/http.rb /^ def set_response_header/
93
+ ::HTTP::Status httpclient/http.rb /^ module Status/
94
+ ::HTTP::Status.redirect? httpclient/http.rb /^ def self.redirect?/
95
+ ::HTTP::Status.successful? httpclient/http.rb /^ def self.successful?/
96
+ ::HTTPClient httpclient.rb /^class HTTPClient/
97
+ ::HTTPClient httpclient/auth.rb /^class HTTPClient/
98
+ ::HTTPClient httpclient/connection.rb /^class HTTPClient/
99
+ ::HTTPClient httpclient/session.rb /^class HTTPClient/
100
+ ::HTTPClient httpclient/ssl_config.rb /^class HTTPClient/
101
+ ::HTTPClient httpclient/timeout.rb /^class HTTPClient/
102
+ ::HTTPClient httpclient/util.rb /^class HTTPClient/
103
+ ::HTTPClient#HTTPClient.new httpclient.rb /^ def initialize/
104
+ ::HTTPClient#cookie_manager httpclient.rb /^ attr_accessor :cookie_manager/
105
+ ::HTTPClient#create_boundary httpclient.rb /^ def create_boundary/
106
+ ::HTTPClient#create_request httpclient.rb /^ def create_request/
107
+ ::HTTPClient#debug_dev httpclient.rb /^ def debug_dev/
108
+ ::HTTPClient#debug_dev= httpclient.rb /^ def debug_dev=/
109
+ ::HTTPClient#default_redirect_uri_callback httpclient.rb /^ def default_redirect_uri_callback/
110
+ ::HTTPClient#delete httpclient.rb /^ def delete/
111
+ ::HTTPClient#delete_async httpclient.rb /^ def delete_async/
112
+ ::HTTPClient#do_get_block httpclient.rb /^ def do_get_block/
113
+ ::HTTPClient#do_get_header httpclient.rb /^ def do_get_header/
114
+ ::HTTPClient#do_get_stream httpclient.rb /^ def do_get_stream/
115
+ ::HTTPClient#do_request httpclient.rb /^ def do_request/
116
+ ::HTTPClient#do_request_async httpclient.rb /^ def do_request_async/
117
+ ::HTTPClient#dump_dummy_request_response httpclient.rb /^ def dump_dummy_request_response/
118
+ ::HTTPClient#file_in_form_data? httpclient.rb /^ def file_in_form_data?/
119
+ ::HTTPClient#follow_redirect httpclient.rb /^ def follow_redirect/
120
+ ::HTTPClient#follow_redirect_count httpclient.rb /^ attr_accessor :follow_redirect_count/
121
+ ::HTTPClient#get httpclient.rb /^ def get/
122
+ ::HTTPClient#get_async httpclient.rb /^ def get_async/
123
+ ::HTTPClient#get_content httpclient.rb /^ def get_content/
124
+ ::HTTPClient#getenv httpclient.rb /^ def getenv/
125
+ ::HTTPClient#head httpclient.rb /^ def head/
126
+ ::HTTPClient#head_async httpclient.rb /^ def head_async/
127
+ ::HTTPClient#load_environment httpclient.rb /^ def load_environment/
128
+ ::HTTPClient#no_proxy httpclient.rb /^ def no_proxy/
129
+ ::HTTPClient#no_proxy= httpclient.rb /^ def no_proxy=/
130
+ ::HTTPClient#no_proxy? httpclient.rb /^ def no_proxy?/
131
+ ::HTTPClient#options httpclient.rb /^ def options/
132
+ ::HTTPClient#options_async httpclient.rb /^ def options_async/
133
+ ::HTTPClient#override_header httpclient.rb /^ def override_header/
134
+ ::HTTPClient#post httpclient.rb /^ def post/
135
+ ::HTTPClient#post_async httpclient.rb /^ def post_async/
136
+ ::HTTPClient#post_content httpclient.rb /^ def post_content/
137
+ ::HTTPClient#propfind httpclient.rb /^ def propfind/
138
+ ::HTTPClient#propfind_async httpclient.rb /^ def propfind_async/
139
+ ::HTTPClient#proppatch httpclient.rb /^ def proppatch/
140
+ ::HTTPClient#proppatch_async httpclient.rb /^ def proppatch_async/
141
+ ::HTTPClient#protect_keep_alive_disconnected httpclient.rb /^ def protect_keep_alive_disconnected/
142
+ ::HTTPClient#proxy httpclient.rb /^ def proxy/
143
+ ::HTTPClient#proxy= httpclient.rb /^ def proxy=/
144
+ ::HTTPClient#proxy_auth httpclient.rb /^ attr_reader :proxy_auth/
145
+ ::HTTPClient#put httpclient.rb /^ def put/
146
+ ::HTTPClient#put_async httpclient.rb /^ def put_async/
147
+ ::HTTPClient#redirect_uri_callback= httpclient.rb /^ def redirect_uri_callback=/
148
+ ::HTTPClient#request httpclient.rb /^ def request/
149
+ ::HTTPClient#request_async httpclient.rb /^ def request_async/
150
+ ::HTTPClient#request_filter httpclient.rb /^ attr_reader :request_filter/
151
+ ::HTTPClient#reset httpclient.rb /^ def reset/
152
+ ::HTTPClient#reset_all httpclient.rb /^ def reset_all/
153
+ ::HTTPClient#save_cookie_store httpclient.rb /^ def save_cookie_store/
154
+ ::HTTPClient#set_auth httpclient.rb /^ def set_auth/
155
+ ::HTTPClient#set_basic_auth httpclient.rb /^ def set_basic_auth/
156
+ ::HTTPClient#set_cookie_store httpclient.rb /^ def set_cookie_store/
157
+ ::HTTPClient#set_proxy_auth httpclient.rb /^ def set_proxy_auth/
158
+ ::HTTPClient#ssl_config httpclient.rb /^ attr_reader :ssl_config/
159
+ ::HTTPClient#strict_redirect_uri_callback httpclient.rb /^ def strict_redirect_uri_callback/
160
+ ::HTTPClient#test_loopback_response httpclient.rb /^ attr_reader :test_loopback_response/
161
+ ::HTTPClient#trace httpclient.rb /^ def trace/
162
+ ::HTTPClient#trace_async httpclient.rb /^ def trace_async/
163
+ ::HTTPClient#www_auth httpclient.rb /^ attr_reader :www_auth/
164
+ ::HTTPClient.attr_proxy httpclient.rb /^ def attr_proxy/
165
+ ::HTTPClient::AuthFilterBase httpclient/auth.rb /^ class AuthFilterBase/
166
+ ::HTTPClient::AuthFilterBase#parse_authentication_header httpclient/auth.rb /^ def parse_authentication_header/
167
+ ::HTTPClient::AuthFilterBase#parse_challenge_header httpclient/auth.rb /^ def parse_challenge_header/
168
+ ::HTTPClient::BadResponseError httpclient.rb /^ class BadResponseError/
169
+ ::HTTPClient::BadResponseError#HTTPClient::BadResponseError.new httpclient.rb /^ def initialize/
170
+ ::HTTPClient::BadResponseError#res httpclient.rb /^ attr_reader :res/
171
+ ::HTTPClient::BasicAuth httpclient/auth.rb /^ class BasicAuth/
172
+ ::HTTPClient::BasicAuth#HTTPClient::BasicAuth.new httpclient/auth.rb /^ def initialize/
173
+ ::HTTPClient::BasicAuth#challenge httpclient/auth.rb /^ def challenge/
174
+ ::HTTPClient::BasicAuth#get httpclient/auth.rb /^ def get/
175
+ ::HTTPClient::BasicAuth#reset_challenge httpclient/auth.rb /^ def reset_challenge/
176
+ ::HTTPClient::BasicAuth#scheme httpclient/auth.rb /^ attr_reader :scheme/
177
+ ::HTTPClient::BasicAuth#set httpclient/auth.rb /^ def set/
178
+ ::HTTPClient::ConfigurationError httpclient.rb /^ class ConfigurationError/
179
+ ::HTTPClient::ConnectTimeoutError httpclient.rb /^ class ConnectTimeoutError/
180
+ ::HTTPClient::Connection httpclient/connection.rb /^ class Connection/
181
+ ::HTTPClient::Connection#HTTPClient::Connection.new httpclient/connection.rb /^ def initialize/
182
+ ::HTTPClient::Connection#async_thread httpclient/connection.rb /^ attr_accessor :async_thread/
183
+ ::HTTPClient::Connection#finished? httpclient/connection.rb /^ def finished?/
184
+ ::HTTPClient::Connection#join httpclient/connection.rb /^ def join/
185
+ ::HTTPClient::Connection#pop httpclient/connection.rb /^ def pop/
186
+ ::HTTPClient::Connection#push httpclient/connection.rb /^ def push/
187
+ ::HTTPClient::DebugSocket httpclient/session.rb /^ module DebugSocket/
188
+ ::HTTPClient::DebugSocket#<< httpclient/session.rb /^ def <</
189
+ ::HTTPClient::DebugSocket#close httpclient/session.rb /^ def close/
190
+ ::HTTPClient::DebugSocket#debug httpclient/session.rb /^ def debug/
191
+ ::HTTPClient::DebugSocket#debug_dev= httpclient/session.rb /^ def debug_dev=/
192
+ ::HTTPClient::DebugSocket#gets httpclient/session.rb /^ def gets/
193
+ ::HTTPClient::DebugSocket#read httpclient/session.rb /^ def read/
194
+ ::HTTPClient::DebugSocket#readpartial httpclient/session.rb /^ def readpartial/
195
+ ::HTTPClient::DigestAuth httpclient/auth.rb /^ class DigestAuth/
196
+ ::HTTPClient::DigestAuth#HTTPClient::DigestAuth.new httpclient/auth.rb /^ def initialize/
197
+ ::HTTPClient::DigestAuth#calc_cred httpclient/auth.rb /^ def calc_cred/
198
+ ::HTTPClient::DigestAuth#challenge httpclient/auth.rb /^ def challenge/
199
+ ::HTTPClient::DigestAuth#get httpclient/auth.rb /^ def get/
200
+ ::HTTPClient::DigestAuth#reset_challenge httpclient/auth.rb /^ def reset_challenge/
201
+ ::HTTPClient::DigestAuth#scheme httpclient/auth.rb /^ attr_reader :scheme/
202
+ ::HTTPClient::DigestAuth#set httpclient/auth.rb /^ def set/
203
+ ::HTTPClient::KeepAliveDisconnected httpclient.rb /^ class KeepAliveDisconnected/
204
+ ::HTTPClient::LoopBackSocket httpclient/session.rb /^ class LoopBackSocket/
205
+ ::HTTPClient::LoopBackSocket#<< httpclient/session.rb /^ def <</
206
+ ::HTTPClient::LoopBackSocket#HTTPClient::LoopBackSocket.new httpclient/session.rb /^ def initialize/
207
+ ::HTTPClient::LoopBackSocket#addr httpclient/session.rb /^ def addr/
208
+ ::HTTPClient::NegotiateAuth httpclient/auth.rb /^ class NegotiateAuth/
209
+ ::HTTPClient::NegotiateAuth#HTTPClient::NegotiateAuth.new httpclient/auth.rb /^ def initialize/
210
+ ::HTTPClient::NegotiateAuth#challenge httpclient/auth.rb /^ def challenge/
211
+ ::HTTPClient::NegotiateAuth#get httpclient/auth.rb /^ def get/
212
+ ::HTTPClient::NegotiateAuth#ntlm_opt httpclient/auth.rb /^ attr_reader :ntlm_opt/
213
+ ::HTTPClient::NegotiateAuth#reset_challenge httpclient/auth.rb /^ def reset_challenge/
214
+ ::HTTPClient::NegotiateAuth#scheme httpclient/auth.rb /^ attr_reader :scheme/
215
+ ::HTTPClient::NegotiateAuth#set httpclient/auth.rb /^ def set/
216
+ ::HTTPClient::ProxyAuth httpclient/auth.rb /^ class ProxyAuth/
217
+ ::HTTPClient::ProxyAuth#HTTPClient::ProxyAuth.new httpclient/auth.rb /^ def initialize/
218
+ ::HTTPClient::ProxyAuth#basic_auth httpclient/auth.rb /^ attr_reader :basic_auth/
219
+ ::HTTPClient::ProxyAuth#filter_request httpclient/auth.rb /^ def filter_request/
220
+ ::HTTPClient::ProxyAuth#filter_response httpclient/auth.rb /^ def filter_response/
221
+ ::HTTPClient::ProxyAuth#negotiate_auth httpclient/auth.rb /^ attr_reader :negotiate_auth/
222
+ ::HTTPClient::ProxyAuth#reset_challenge httpclient/auth.rb /^ def reset_challenge/
223
+ ::HTTPClient::ProxyAuth#set_auth httpclient/auth.rb /^ def set_auth/
224
+ ::HTTPClient::ProxyAuth#sspi_negotiate_auth httpclient/auth.rb /^ attr_reader :sspi_negotiate_auth/
225
+ ::HTTPClient::ReceiveTimeoutError httpclient.rb /^ class ReceiveTimeoutError/
226
+ ::HTTPClient::RetryableResponse httpclient.rb /^ class RetryableResponse/
227
+ ::HTTPClient::SSLConfig httpclient/ssl_config.rb /^ class SSLConfig/
228
+ ::HTTPClient::SSLConfig#HTTPClient::SSLConfig.new httpclient/ssl_config.rb /^ def initialize/
229
+ ::HTTPClient::SSLConfig#cert_store httpclient/ssl_config.rb /^ attr_reader :cert_store # don't use if you don't know what it is./
230
+ ::HTTPClient::SSLConfig#cert_store= httpclient/ssl_config.rb /^ def cert_store=/
231
+ ::HTTPClient::SSLConfig#change_notify httpclient/ssl_config.rb /^ def change_notify/
232
+ ::HTTPClient::SSLConfig#ciphers httpclient/ssl_config.rb /^ attr_reader :ciphers/
233
+ ::HTTPClient::SSLConfig#ciphers= httpclient/ssl_config.rb /^ def ciphers=/
234
+ ::HTTPClient::SSLConfig#clear_cert_store httpclient/ssl_config.rb /^ def clear_cert_store/
235
+ ::HTTPClient::SSLConfig#client_ca httpclient/ssl_config.rb /^ attr_reader :client_ca/
236
+ ::HTTPClient::SSLConfig#client_ca= httpclient/ssl_config.rb /^ def client_ca=/
237
+ ::HTTPClient::SSLConfig#client_cert httpclient/ssl_config.rb /^ attr_reader :client_cert/
238
+ ::HTTPClient::SSLConfig#client_cert= httpclient/ssl_config.rb /^ def client_cert=/
239
+ ::HTTPClient::SSLConfig#client_key httpclient/ssl_config.rb /^ attr_reader :client_key/
240
+ ::HTTPClient::SSLConfig#client_key= httpclient/ssl_config.rb /^ def client_key=/
241
+ ::HTTPClient::SSLConfig#default_verify_callback httpclient/ssl_config.rb /^ def default_verify_callback/
242
+ ::HTTPClient::SSLConfig#load_cacerts httpclient/ssl_config.rb /^ def load_cacerts/
243
+ ::HTTPClient::SSLConfig#options httpclient/ssl_config.rb /^ attr_reader :options/
244
+ ::HTTPClient::SSLConfig#options= httpclient/ssl_config.rb /^ def options=/
245
+ ::HTTPClient::SSLConfig#post_connection_check httpclient/ssl_config.rb /^ def post_connection_check/
246
+ ::HTTPClient::SSLConfig#sample_verify_callback httpclient/ssl_config.rb /^ def sample_verify_callback/
247
+ ::HTTPClient::SSLConfig#set_client_cert_file httpclient/ssl_config.rb /^ def set_client_cert_file/
248
+ ::HTTPClient::SSLConfig#set_context httpclient/ssl_config.rb /^ def set_context/
249
+ ::HTTPClient::SSLConfig#set_crl httpclient/ssl_config.rb /^ def set_crl/
250
+ ::HTTPClient::SSLConfig#set_trust_ca httpclient/ssl_config.rb /^ def set_trust_ca/
251
+ ::HTTPClient::SSLConfig#timeout httpclient/ssl_config.rb /^ attr_reader :timeout/
252
+ ::HTTPClient::SSLConfig#timeout= httpclient/ssl_config.rb /^ def timeout=/
253
+ ::HTTPClient::SSLConfig#verify_callback httpclient/ssl_config.rb /^ attr_reader :verify_callback/
254
+ ::HTTPClient::SSLConfig#verify_callback= httpclient/ssl_config.rb /^ def verify_callback=/
255
+ ::HTTPClient::SSLConfig#verify_depth httpclient/ssl_config.rb /^ attr_reader :verify_depth/
256
+ ::HTTPClient::SSLConfig#verify_depth= httpclient/ssl_config.rb /^ def verify_depth=/
257
+ ::HTTPClient::SSLConfig#verify_mode httpclient/ssl_config.rb /^ attr_reader :verify_mode/
258
+ ::HTTPClient::SSLConfig#verify_mode= httpclient/ssl_config.rb /^ def verify_mode=/
259
+ ::HTTPClient::SSLSocketWrap httpclient/session.rb /^ class SSLSocketWrap/
260
+ ::HTTPClient::SSLSocketWrap#<< httpclient/session.rb /^ def <</
261
+ ::HTTPClient::SSLSocketWrap#HTTPClient::SSLSocketWrap.new httpclient/session.rb /^ def initialize/
262
+ ::HTTPClient::SSLSocketWrap#addr httpclient/session.rb /^ def addr/
263
+ ::HTTPClient::SSLSocketWrap#check_mask httpclient/session.rb /^ def check_mask/
264
+ ::HTTPClient::SSLSocketWrap#close httpclient/session.rb /^ def close/
265
+ ::HTTPClient::SSLSocketWrap#closed? httpclient/session.rb /^ def closed?/
266
+ ::HTTPClient::SSLSocketWrap#create_openssl_socket httpclient/session.rb /^ def create_openssl_socket/
267
+ ::HTTPClient::SSLSocketWrap#debug httpclient/session.rb /^ def debug/
268
+ ::HTTPClient::SSLSocketWrap#eof? httpclient/session.rb /^ def eof?/
269
+ ::HTTPClient::SSLSocketWrap#flush httpclient/session.rb /^ def flush/
270
+ ::HTTPClient::SSLSocketWrap#gets httpclient/session.rb /^ def gets/
271
+ ::HTTPClient::SSLSocketWrap#peer_cert httpclient/session.rb /^ def peer_cert/
272
+ ::HTTPClient::SSLSocketWrap#post_connection_check httpclient/session.rb /^ def post_connection_check/
273
+ ::HTTPClient::SSLSocketWrap#read httpclient/session.rb /^ def read/
274
+ ::HTTPClient::SSLSocketWrap#readpartial httpclient/session.rb /^ def readpartial/
275
+ ::HTTPClient::SSLSocketWrap#ssl_connect httpclient/session.rb /^ def ssl_connect/
276
+ ::HTTPClient::SSLSocketWrap#sync httpclient/session.rb /^ def sync/
277
+ ::HTTPClient::SSLSocketWrap#sync= httpclient/session.rb /^ def sync=/
278
+ ::HTTPClient::SSPINegotiateAuth httpclient/auth.rb /^ class SSPINegotiateAuth/
279
+ ::HTTPClient::SSPINegotiateAuth#HTTPClient::SSPINegotiateAuth.new httpclient/auth.rb /^ def initialize/
280
+ ::HTTPClient::SSPINegotiateAuth#challenge httpclient/auth.rb /^ def challenge/
281
+ ::HTTPClient::SSPINegotiateAuth#get httpclient/auth.rb /^ def get/
282
+ ::HTTPClient::SSPINegotiateAuth#reset_challenge httpclient/auth.rb /^ def reset_challenge/
283
+ ::HTTPClient::SSPINegotiateAuth#scheme httpclient/auth.rb /^ attr_reader :scheme/
284
+ ::HTTPClient::SSPINegotiateAuth#set httpclient/auth.rb /^ def set/
285
+ ::HTTPClient::SendTimeoutError httpclient.rb /^ class SendTimeoutError/
286
+ ::HTTPClient::Session httpclient.rb /^ class Session/
287
+ ::HTTPClient::Session httpclient/session.rb /^ class Session/
288
+ ::HTTPClient::Session#HTTPClient::Session.new httpclient/session.rb /^ def initialize/
289
+ ::HTTPClient::Session#close httpclient/session.rb /^ def close/
290
+ ::HTTPClient::Session#closed? httpclient/session.rb /^ def closed?/
291
+ ::HTTPClient::Session#connect httpclient/session.rb /^ def connect/
292
+ ::HTTPClient::Session#connect_retry httpclient/session.rb /^ attr_accessor :connect_retry/
293
+ ::HTTPClient::Session#connect_ssl_proxy httpclient/session.rb /^ def connect_ssl_proxy/
294
+ ::HTTPClient::Session#connect_timeout httpclient/session.rb /^ attr_accessor :connect_timeout/
295
+ ::HTTPClient::Session#create_socket httpclient/session.rb /^ def create_socket/
296
+ ::HTTPClient::Session#create_ssl_socket httpclient/session.rb /^ def create_ssl_socket/
297
+ ::HTTPClient::Session#debug_dev httpclient/session.rb /^ attr_accessor :debug_dev # Device for dumping log for debugging/
298
+ ::HTTPClient::Session#dest httpclient/session.rb /^ attr_reader :dest # Destination site/
299
+ ::HTTPClient::Session#eof? httpclient/session.rb /^ def eof?/
300
+ ::HTTPClient::Session#get_body httpclient/session.rb /^ def get_body/
301
+ ::HTTPClient::Session#get_header httpclient/session.rb /^ def get_header/
302
+ ::HTTPClient::Session#parse_header httpclient/session.rb /^ def parse_header/
303
+ ::HTTPClient::Session#parse_keepalive_header httpclient/session.rb /^ def parse_keepalive_header/
304
+ ::HTTPClient::Session#protocol_retry_count httpclient/session.rb /^ attr_accessor :protocol_retry_count/
305
+ ::HTTPClient::Session#proxy httpclient/session.rb /^ attr_accessor :proxy # Proxy site/
306
+ ::HTTPClient::Session#query httpclient/session.rb /^ def query/
307
+ ::HTTPClient::Session#read_block_size httpclient/session.rb /^ attr_accessor :read_block_size/
308
+ ::HTTPClient::Session#read_body_chunked httpclient/session.rb /^ def read_body_chunked/
309
+ ::HTTPClient::Session#read_body_length httpclient/session.rb /^ def read_body_length/
310
+ ::HTTPClient::Session#read_body_rest httpclient/session.rb /^ def read_body_rest/
311
+ ::HTTPClient::Session#read_header httpclient/session.rb /^ def read_header/
312
+ ::HTTPClient::Session#receive_timeout httpclient/session.rb /^ attr_accessor :receive_timeout/
313
+ ::HTTPClient::Session#requested_version httpclient/session.rb /^ attr_accessor :requested_version # Requested protocol version/
314
+ ::HTTPClient::Session#send_timeout httpclient/session.rb /^ attr_accessor :send_timeout/
315
+ ::HTTPClient::Session#set_header httpclient/session.rb /^ def set_header/
316
+ ::HTTPClient::Session#socket_sync httpclient/session.rb /^ attr_accessor :socket_sync # Boolean value for Socket#sync/
317
+ ::HTTPClient::Session#src httpclient/session.rb /^ def src/
318
+ ::HTTPClient::Session#ssl_config httpclient/session.rb /^ attr_accessor :ssl_config/
319
+ ::HTTPClient::Session#ssl_peer_cert httpclient/session.rb /^ attr_reader :ssl_peer_cert/
320
+ ::HTTPClient::Session#test_loopback_http_response httpclient/session.rb /^ attr_accessor :test_loopback_http_response/
321
+ ::HTTPClient::Session::Error httpclient/session.rb /^ class Error/
322
+ ::HTTPClient::Session::InvalidState httpclient/session.rb /^ class InvalidState/
323
+ ::HTTPClient::SessionManager httpclient/session.rb /^ class SessionManager/
324
+ ::HTTPClient::SessionManager#HTTPClient::SessionManager.new httpclient/session.rb /^ def initialize/
325
+ ::HTTPClient::SessionManager#add_cached_session httpclient/session.rb /^ def add_cached_session/
326
+ ::HTTPClient::SessionManager#agent_name httpclient/session.rb /^ attr_accessor :agent_name # Name of this client./
327
+ ::HTTPClient::SessionManager#chunk_size httpclient/session.rb /^ attr_accessor :chunk_size # Chunk size for chunked request/
328
+ ::HTTPClient::SessionManager#close httpclient/session.rb /^ def close/
329
+ ::HTTPClient::SessionManager#close_all httpclient/session.rb /^ def close_all/
330
+ ::HTTPClient::SessionManager#connect_retry httpclient/session.rb /^ attr_accessor :connect_retry # Maximum retry count. 0 for infinite./
331
+ ::HTTPClient::SessionManager#connect_timeout httpclient/session.rb /^ attr_accessor :connect_timeout/
332
+ ::HTTPClient::SessionManager#debug_dev httpclient/session.rb /^ attr_accessor :debug_dev # Device for dumping log for debugging/
333
+ ::HTTPClient::SessionManager#from httpclient/session.rb /^ attr_accessor :from # Owner of this client./
334
+ ::HTTPClient::SessionManager#get_cached_session httpclient/session.rb /^ def get_cached_session/
335
+ ::HTTPClient::SessionManager#keep httpclient/session.rb /^ def keep/
336
+ ::HTTPClient::SessionManager#open httpclient/session.rb /^ def open/
337
+ ::HTTPClient::SessionManager#protocol_retry_count httpclient/session.rb /^ attr_accessor :protocol_retry_count/
338
+ ::HTTPClient::SessionManager#protocol_version httpclient/session.rb /^ attr_accessor :protocol_version # Requested protocol version/
339
+ ::HTTPClient::SessionManager#proxy= httpclient/session.rb /^ def proxy=/
340
+ ::HTTPClient::SessionManager#query httpclient/session.rb /^ def query/
341
+ ::HTTPClient::SessionManager#read_block_size httpclient/session.rb /^ attr_accessor :read_block_size/
342
+ ::HTTPClient::SessionManager#receive_timeout httpclient/session.rb /^ attr_accessor :receive_timeout/
343
+ ::HTTPClient::SessionManager#reset httpclient/session.rb /^ def reset/
344
+ ::HTTPClient::SessionManager#reset_all httpclient/session.rb /^ def reset_all/
345
+ ::HTTPClient::SessionManager#send_timeout httpclient/session.rb /^ attr_accessor :send_timeout/
346
+ ::HTTPClient::SessionManager#socket_sync httpclient/session.rb /^ attr_accessor :socket_sync # Boolean value for Socket#sync/
347
+ ::HTTPClient::SessionManager#ssl_config httpclient/session.rb /^ attr_accessor :ssl_config/
348
+ ::HTTPClient::SessionManager#test_loopback_http_response httpclient/session.rb /^ attr_reader :test_loopback_http_response/
349
+ ::HTTPClient::Site httpclient/session.rb /^ class Site/
350
+ ::HTTPClient::Site#== httpclient/session.rb /^ def ==/
351
+ ::HTTPClient::Site#HTTPClient::Site.new httpclient/session.rb /^ def initialize/
352
+ ::HTTPClient::Site#addr httpclient/session.rb /^ def addr/
353
+ ::HTTPClient::Site#eql? httpclient/session.rb /^ def eql?/
354
+ ::HTTPClient::Site#hash httpclient/session.rb /^ def hash/
355
+ ::HTTPClient::Site#host httpclient/session.rb /^ attr_accessor :host/
356
+ ::HTTPClient::Site#inspect httpclient/session.rb /^ def inspect/
357
+ ::HTTPClient::Site#match httpclient/session.rb /^ def match/
358
+ ::HTTPClient::Site#port httpclient/session.rb /^ attr_reader :port/
359
+ ::HTTPClient::Site#port= httpclient/session.rb /^ def port=/
360
+ ::HTTPClient::Site#scheme httpclient/session.rb /^ attr_accessor :scheme/
361
+ ::HTTPClient::Site#to_s httpclient/session.rb /^ def to_s/
362
+ ::HTTPClient::SocketWrap httpclient/session.rb /^ module SocketWrap/
363
+ ::HTTPClient::SocketWrap#<< httpclient/session.rb /^ def <</
364
+ ::HTTPClient::SocketWrap#HTTPClient::SocketWrap.new httpclient/session.rb /^ def initialize/
365
+ ::HTTPClient::SocketWrap#addr httpclient/session.rb /^ def addr/
366
+ ::HTTPClient::SocketWrap#close httpclient/session.rb /^ def close/
367
+ ::HTTPClient::SocketWrap#closed? httpclient/session.rb /^ def closed?/
368
+ ::HTTPClient::SocketWrap#eof? httpclient/session.rb /^ def eof?/
369
+ ::HTTPClient::SocketWrap#flush httpclient/session.rb /^ def flush/
370
+ ::HTTPClient::SocketWrap#gets httpclient/session.rb /^ def gets/
371
+ ::HTTPClient::SocketWrap#read httpclient/session.rb /^ def read/
372
+ ::HTTPClient::SocketWrap#readpartial httpclient/session.rb /^ def readpartial/
373
+ ::HTTPClient::SocketWrap#sync httpclient/session.rb /^ def sync/
374
+ ::HTTPClient::SocketWrap#sync= httpclient/session.rb /^ def sync=/
375
+ ::HTTPClient::Timeout httpclient/timeout.rb /^ module Timeout/
376
+ ::HTTPClient::Timeout#timeout httpclient/timeout.rb /^ def timeout/
377
+ ::HTTPClient::TimeoutError httpclient.rb /^ class TimeoutError/
378
+ ::HTTPClient::TimeoutScheduler httpclient/timeout.rb /^ class TimeoutScheduler/
379
+ ::HTTPClient::TimeoutScheduler#HTTPClient::TimeoutScheduler.new httpclient/timeout.rb /^ def initialize/
380
+ ::HTTPClient::TimeoutScheduler#cancel httpclient/timeout.rb /^ def cancel/
381
+ ::HTTPClient::TimeoutScheduler#register httpclient/timeout.rb /^ def register/
382
+ ::HTTPClient::TimeoutScheduler#start_timer_thread httpclient/timeout.rb /^ def start_timer_thread/
383
+ ::HTTPClient::TimeoutScheduler::Period httpclient/timeout.rb /^ class Period/
384
+ ::HTTPClient::TimeoutScheduler::Period#HTTPClient::TimeoutScheduler::Period.new httpclient/timeout.rb /^ def initialize/
385
+ ::HTTPClient::TimeoutScheduler::Period#ex httpclient/timeout.rb /^ attr_reader :thread, :time, :ex/
386
+ ::HTTPClient::TimeoutScheduler::Period#thread httpclient/timeout.rb /^ attr_reader :thread, :time, :ex/
387
+ ::HTTPClient::TimeoutScheduler::Period#time httpclient/timeout.rb /^ attr_reader :thread, :time, :ex/
388
+ ::HTTPClient::Util httpclient/util.rb /^ module Util/
389
+ ::HTTPClient::Util#hash_find_value httpclient/util.rb /^ def hash_find_value/
390
+ ::HTTPClient::Util#keyword_argument httpclient/util.rb /^ def keyword_argument/
391
+ ::HTTPClient::Util#parse_challenge_param httpclient/util.rb /^ def parse_challenge_param/
392
+ ::HTTPClient::Util#uri_dirname httpclient/util.rb /^ def uri_dirname/
393
+ ::HTTPClient::Util#uri_part_of httpclient/util.rb /^ def uri_part_of/
394
+ ::HTTPClient::Util#urify httpclient/util.rb /^ def urify/
395
+ ::HTTPClient::WWWAuth httpclient/auth.rb /^ class WWWAuth/
396
+ ::HTTPClient::WWWAuth#HTTPClient::WWWAuth.new httpclient/auth.rb /^ def initialize/
397
+ ::HTTPClient::WWWAuth#basic_auth httpclient/auth.rb /^ attr_reader :basic_auth/
398
+ ::HTTPClient::WWWAuth#digest_auth httpclient/auth.rb /^ attr_reader :digest_auth/
399
+ ::HTTPClient::WWWAuth#filter_request httpclient/auth.rb /^ def filter_request/
400
+ ::HTTPClient::WWWAuth#filter_response httpclient/auth.rb /^ def filter_response/
401
+ ::HTTPClient::WWWAuth#negotiate_auth httpclient/auth.rb /^ attr_reader :negotiate_auth/
402
+ ::HTTPClient::WWWAuth#reset_challenge httpclient/auth.rb /^ def reset_challenge/
403
+ ::HTTPClient::WWWAuth#set_auth httpclient/auth.rb /^ def set_auth/
404
+ ::WebAgent httpclient/cookie.rb /^class WebAgent/
405
+ ::WebAgent::Cookie httpclient/cookie.rb /^ class Cookie/
406
+ ::WebAgent::Cookie#WebAgent::Cookie.new httpclient/cookie.rb /^ def initialize/
407
+ ::WebAgent::Cookie#discard httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
408
+ ::WebAgent::Cookie#discard? httpclient/cookie.rb /^ def discard?/
409
+ ::WebAgent::Cookie#domain httpclient/cookie.rb /^ attr_accessor :domain, :path/
410
+ ::WebAgent::Cookie#domain_orig httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
411
+ ::WebAgent::Cookie#domain_orig? httpclient/cookie.rb /^ def domain_orig?/
412
+ ::WebAgent::Cookie#expires httpclient/cookie.rb /^ attr_accessor :expires ## for Netscape Cookie/
413
+ ::WebAgent::Cookie#flag httpclient/cookie.rb /^ def flag/
414
+ ::WebAgent::Cookie#join_quotedstr httpclient/cookie.rb /^ def join_quotedstr/
415
+ ::WebAgent::Cookie#match? httpclient/cookie.rb /^ def match?/
416
+ ::WebAgent::Cookie#name httpclient/cookie.rb /^ attr_accessor :name, :value/
417
+ ::WebAgent::Cookie#override httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
418
+ ::WebAgent::Cookie#override? httpclient/cookie.rb /^ def override?/
419
+ ::WebAgent::Cookie#parse httpclient/cookie.rb /^ def parse/
420
+ ::WebAgent::Cookie#path httpclient/cookie.rb /^ attr_accessor :domain, :path/
421
+ ::WebAgent::Cookie#path_orig httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
422
+ ::WebAgent::Cookie#path_orig? httpclient/cookie.rb /^ def path_orig?/
423
+ ::WebAgent::Cookie#secure httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
424
+ ::WebAgent::Cookie#secure? httpclient/cookie.rb /^ def secure?/
425
+ ::WebAgent::Cookie#set_flag httpclient/cookie.rb /^ def set_flag/
426
+ ::WebAgent::Cookie#url httpclient/cookie.rb /^ attr_accessor :url/
427
+ ::WebAgent::Cookie#use httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
428
+ ::WebAgent::Cookie#use? httpclient/cookie.rb /^ def use?/
429
+ ::WebAgent::Cookie#value httpclient/cookie.rb /^ attr_accessor :name, :value/
430
+ ::WebAgent::CookieManager httpclient/cookie.rb /^ class CookieManager/
431
+ ::WebAgent::CookieManager#WebAgent::CookieManager.new httpclient/cookie.rb /^ def initialize/
432
+ ::WebAgent::CookieManager#accept_domains httpclient/cookie.rb /^ attr_accessor :accept_domains, :reject_domains/
433
+ ::WebAgent::CookieManager#add httpclient/cookie.rb /^ def add/
434
+ ::WebAgent::CookieManager#check_cookie_accept_domain httpclient/cookie.rb /^ def check_cookie_accept_domain/
435
+ ::WebAgent::CookieManager#check_expired_cookies httpclient/cookie.rb /^ def check_expired_cookies/
436
+ ::WebAgent::CookieManager#cookie_error httpclient/cookie.rb /^ def cookie_error/
437
+ ::WebAgent::CookieManager#cookies httpclient/cookie.rb /^ attr_reader :cookies/
438
+ ::WebAgent::CookieManager#cookies= httpclient/cookie.rb /^ def cookies=/
439
+ ::WebAgent::CookieManager#cookies_file httpclient/cookie.rb /^ attr_accessor :cookies_file/
440
+ ::WebAgent::CookieManager#find httpclient/cookie.rb /^ def find/
441
+ ::WebAgent::CookieManager#find_cookie_info httpclient/cookie.rb /^ def find_cookie_info/
442
+ ::WebAgent::CookieManager#load_cookies httpclient/cookie.rb /^ def load_cookies/
443
+ ::WebAgent::CookieManager#make_cookie_str httpclient/cookie.rb /^ def make_cookie_str/
444
+ ::WebAgent::CookieManager#netscape_rule httpclient/cookie.rb /^ attr_accessor :netscape_rule/
445
+ ::WebAgent::CookieManager#parse httpclient/cookie.rb /^ def parse/
446
+ ::WebAgent::CookieManager#reject_domains httpclient/cookie.rb /^ attr_accessor :accept_domains, :reject_domains/
447
+ ::WebAgent::CookieManager#save_all_cookies httpclient/cookie.rb /^ def save_all_cookies/
448
+ ::WebAgent::CookieManager#save_cookies httpclient/cookie.rb /^ def save_cookies/
449
+ ::WebAgent::CookieManager::Error httpclient/cookie.rb /^ class Error/
450
+ ::WebAgent::CookieManager::ErrorOverrideOK httpclient/cookie.rb /^ class ErrorOverrideOK/
451
+ ::WebAgent::CookieManager::SpecialError httpclient/cookie.rb /^ class SpecialError/
452
+ ::WebAgent::CookieUtils httpclient/cookie.rb /^ module CookieUtils/
453
+ ::WebAgent::CookieUtils#domain_match httpclient/cookie.rb /^ def domain_match/
454
+ ::WebAgent::CookieUtils#head_match? httpclient/cookie.rb /^ def head_match?/
455
+ ::WebAgent::CookieUtils#tail_match? httpclient/cookie.rb /^ def tail_match?/
456
+ ::WebAgent::CookieUtils#total_dot_num httpclient/cookie.rb /^ def total_dot_num/
457
+ << httpclient/session.rb /^ def <</
458
+ << httpclient/session.rb /^ def <</
459
+ << httpclient/session.rb /^ def <</
460
+ << httpclient/session.rb /^ def <</
461
+ == httpclient/session.rb /^ def ==/
462
+ AuthFilterBase httpclient/auth.rb /^ class AuthFilterBase/
463
+ BadResponseError httpclient.rb /^ class BadResponseError/
464
+ BasicAuth httpclient/auth.rb /^ class BasicAuth/
465
+ Body httpclient/http.rb /^ class Body/
466
+ ConfigurationError httpclient.rb /^ class ConfigurationError/
467
+ ConnectTimeoutError httpclient.rb /^ class ConnectTimeoutError/
468
+ Connection httpclient/connection.rb /^ class Connection/
469
+ Cookie httpclient/cookie.rb /^ class Cookie/
470
+ CookieManager httpclient/cookie.rb /^ class CookieManager/
471
+ CookieUtils httpclient/cookie.rb /^ module CookieUtils/
472
+ DebugSocket httpclient/session.rb /^ module DebugSocket/
473
+ DigestAuth httpclient/auth.rb /^ class DigestAuth/
474
+ Error httpclient/cookie.rb /^ class Error/
475
+ Error httpclient/session.rb /^ class Error/
476
+ ErrorOverrideOK httpclient/cookie.rb /^ class ErrorOverrideOK/
477
+ HTTP httpclient/http.rb /^module HTTP/
478
+ HTTP::Message.new httpclient/http.rb /^ def initialize/
479
+ HTTP::Message::Body.new httpclient/http.rb /^ def initialize/
480
+ HTTP::Message::Body::Parts.new httpclient/http.rb /^ def initialize/
481
+ HTTP::Message::Headers.new httpclient/http.rb /^ def initialize/
482
+ HTTPClient httpclient.rb /^class HTTPClient/
483
+ HTTPClient httpclient/auth.rb /^class HTTPClient/
484
+ HTTPClient httpclient/connection.rb /^class HTTPClient/
485
+ HTTPClient httpclient/session.rb /^class HTTPClient/
486
+ HTTPClient httpclient/ssl_config.rb /^class HTTPClient/
487
+ HTTPClient httpclient/timeout.rb /^class HTTPClient/
488
+ HTTPClient httpclient/util.rb /^class HTTPClient/
489
+ HTTPClient.new httpclient.rb /^ def initialize/
490
+ HTTPClient::BadResponseError.new httpclient.rb /^ def initialize/
491
+ HTTPClient::BasicAuth.new httpclient/auth.rb /^ def initialize/
492
+ HTTPClient::Connection.new httpclient/connection.rb /^ def initialize/
493
+ HTTPClient::DigestAuth.new httpclient/auth.rb /^ def initialize/
494
+ HTTPClient::LoopBackSocket.new httpclient/session.rb /^ def initialize/
495
+ HTTPClient::NegotiateAuth.new httpclient/auth.rb /^ def initialize/
496
+ HTTPClient::ProxyAuth.new httpclient/auth.rb /^ def initialize/
497
+ HTTPClient::SSLConfig.new httpclient/ssl_config.rb /^ def initialize/
498
+ HTTPClient::SSLSocketWrap.new httpclient/session.rb /^ def initialize/
499
+ HTTPClient::SSPINegotiateAuth.new httpclient/auth.rb /^ def initialize/
500
+ HTTPClient::Session.new httpclient/session.rb /^ def initialize/
501
+ HTTPClient::SessionManager.new httpclient/session.rb /^ def initialize/
502
+ HTTPClient::Site.new httpclient/session.rb /^ def initialize/
503
+ HTTPClient::SocketWrap.new httpclient/session.rb /^ def initialize/
504
+ HTTPClient::TimeoutScheduler.new httpclient/timeout.rb /^ def initialize/
505
+ HTTPClient::TimeoutScheduler::Period.new httpclient/timeout.rb /^ def initialize/
506
+ HTTPClient::WWWAuth.new httpclient/auth.rb /^ def initialize/
507
+ Headers httpclient/http.rb /^ class Headers/
508
+ InvalidState httpclient/session.rb /^ class InvalidState/
509
+ KeepAliveDisconnected httpclient.rb /^ class KeepAliveDisconnected/
510
+ LoopBackSocket httpclient/session.rb /^ class LoopBackSocket/
511
+ Message httpclient/http.rb /^ class Message/
512
+ NegotiateAuth httpclient/auth.rb /^ class NegotiateAuth/
513
+ Parts httpclient/http.rb /^ class Parts/
514
+ Period httpclient/timeout.rb /^ class Period/
515
+ ProxyAuth httpclient/auth.rb /^ class ProxyAuth/
516
+ ReceiveTimeoutError httpclient.rb /^ class ReceiveTimeoutError/
517
+ RetryableResponse httpclient.rb /^ class RetryableResponse/
518
+ SSLConfig httpclient/ssl_config.rb /^ class SSLConfig/
519
+ SSLSocketWrap httpclient/session.rb /^ class SSLSocketWrap/
520
+ SSPINegotiateAuth httpclient/auth.rb /^ class SSPINegotiateAuth/
521
+ SendTimeoutError httpclient.rb /^ class SendTimeoutError/
522
+ Session httpclient.rb /^ class Session/
523
+ Session httpclient/session.rb /^ class Session/
524
+ SessionManager httpclient/session.rb /^ class SessionManager/
525
+ Site httpclient/session.rb /^ class Site/
526
+ SocketWrap httpclient/session.rb /^ module SocketWrap/
527
+ SpecialError httpclient/cookie.rb /^ class SpecialError/
528
+ Status httpclient/http.rb /^ module Status/
529
+ Timeout httpclient/timeout.rb /^ module Timeout/
530
+ TimeoutError httpclient.rb /^ class TimeoutError/
531
+ TimeoutScheduler httpclient/timeout.rb /^ class TimeoutScheduler/
532
+ Util httpclient/util.rb /^ module Util/
533
+ WWWAuth httpclient/auth.rb /^ class WWWAuth/
534
+ WebAgent httpclient/cookie.rb /^class WebAgent/
535
+ WebAgent::Cookie.new httpclient/cookie.rb /^ def initialize/
536
+ WebAgent::CookieManager.new httpclient/cookie.rb /^ def initialize/
537
+ [] httpclient/http.rb /^ def []/
538
+ []= httpclient/http.rb /^ def []=/
539
+ accept_domains httpclient/cookie.rb /^ attr_accessor :accept_domains, :reject_domains/
540
+ add httpclient/cookie.rb /^ def add/
541
+ add httpclient/http.rb /^ def add/
542
+ add_cached_session httpclient/session.rb /^ def add_cached_session/
543
+ addr httpclient/session.rb /^ def addr/
544
+ addr httpclient/session.rb /^ def addr/
545
+ addr httpclient/session.rb /^ def addr/
546
+ addr httpclient/session.rb /^ def addr/
547
+ agent_name httpclient/session.rb /^ attr_accessor :agent_name # Name of this client./
548
+ all httpclient/http.rb /^ def all/
549
+ async_thread httpclient/connection.rb /^ attr_accessor :async_thread/
550
+ attr_proxy httpclient.rb /^ def attr_proxy/
551
+ basic_auth httpclient/auth.rb /^ attr_reader :basic_auth/
552
+ basic_auth httpclient/auth.rb /^ attr_reader :basic_auth/
553
+ body httpclient/http.rb /^ attr_reader :body/
554
+ body= httpclient/http.rb /^ def body=/
555
+ body_charset httpclient/http.rb /^ attr_accessor :body_charset/
556
+ body_date httpclient/http.rb /^ attr_accessor :body_date/
557
+ body_size httpclient/http.rb /^ attr_reader :body_size/
558
+ body_size= httpclient/http.rb /^ def body_size=/
559
+ body_type httpclient/http.rb /^ attr_accessor :body_type/
560
+ build_query_multipart_str httpclient/http.rb /^ def build_query_multipart_str/
561
+ calc_cred httpclient/auth.rb /^ def calc_cred/
562
+ cancel httpclient/timeout.rb /^ def cancel/
563
+ cert_store httpclient/ssl_config.rb /^ attr_reader :cert_store # don't use if you don't know what it is./
564
+ cert_store= httpclient/ssl_config.rb /^ def cert_store=/
565
+ challenge httpclient/auth.rb /^ def challenge/
566
+ challenge httpclient/auth.rb /^ def challenge/
567
+ challenge httpclient/auth.rb /^ def challenge/
568
+ challenge httpclient/auth.rb /^ def challenge/
569
+ change_notify httpclient/ssl_config.rb /^ def change_notify/
570
+ check_cookie_accept_domain httpclient/cookie.rb /^ def check_cookie_accept_domain/
571
+ check_expired_cookies httpclient/cookie.rb /^ def check_expired_cookies/
572
+ check_mask httpclient/session.rb /^ def check_mask/
573
+ chunk_size httpclient/http.rb /^ attr_accessor :chunk_size/
574
+ chunk_size httpclient/session.rb /^ attr_accessor :chunk_size # Chunk size for chunked request/
575
+ chunked httpclient/http.rb /^ attr_accessor :chunked/
576
+ ciphers httpclient/ssl_config.rb /^ attr_reader :ciphers/
577
+ ciphers= httpclient/ssl_config.rb /^ def ciphers=/
578
+ clear_cert_store httpclient/ssl_config.rb /^ def clear_cert_store/
579
+ client_ca httpclient/ssl_config.rb /^ attr_reader :client_ca/
580
+ client_ca= httpclient/ssl_config.rb /^ def client_ca=/
581
+ client_cert httpclient/ssl_config.rb /^ attr_reader :client_cert/
582
+ client_cert= httpclient/ssl_config.rb /^ def client_cert=/
583
+ client_key httpclient/ssl_config.rb /^ attr_reader :client_key/
584
+ client_key= httpclient/ssl_config.rb /^ def client_key=/
585
+ close httpclient/session.rb /^ def close/
586
+ close httpclient/session.rb /^ def close/
587
+ close httpclient/session.rb /^ def close/
588
+ close httpclient/session.rb /^ def close/
589
+ close httpclient/session.rb /^ def close/
590
+ close_all httpclient/session.rb /^ def close_all/
591
+ closed? httpclient/session.rb /^ def closed?/
592
+ closed? httpclient/session.rb /^ def closed?/
593
+ closed? httpclient/session.rb /^ def closed?/
594
+ code httpclient/http.rb /^ alias code/
595
+ connect httpclient/session.rb /^ def connect/
596
+ connect_retry httpclient/session.rb /^ attr_accessor :connect_retry # Maximum retry count. 0 for infinite./
597
+ connect_retry httpclient/session.rb /^ attr_accessor :connect_retry/
598
+ connect_ssl_proxy httpclient/session.rb /^ def connect_ssl_proxy/
599
+ connect_timeout httpclient/session.rb /^ attr_accessor :connect_timeout/
600
+ connect_timeout httpclient/session.rb /^ attr_accessor :connect_timeout/
601
+ content httpclient/http.rb /^ def content/
602
+ content httpclient/http.rb /^ def content/
603
+ contenttype httpclient/http.rb /^ def contenttype/
604
+ contenttype httpclient/http.rb /^ def contenttype/
605
+ contenttype= httpclient/http.rb /^ def contenttype=/
606
+ contenttype= httpclient/http.rb /^ def contenttype=/
607
+ cookie_error httpclient/cookie.rb /^ def cookie_error/
608
+ cookie_manager httpclient.rb /^ attr_accessor :cookie_manager/
609
+ cookies httpclient/cookie.rb /^ attr_reader :cookies/
610
+ cookies= httpclient/cookie.rb /^ def cookies=/
611
+ cookies_file httpclient/cookie.rb /^ attr_accessor :cookies_file/
612
+ create_boundary httpclient.rb /^ def create_boundary/
613
+ create_openssl_socket httpclient/session.rb /^ def create_openssl_socket/
614
+ create_query_part_str httpclient/http.rb /^ def create_query_part_str/
615
+ create_query_uri httpclient/http.rb /^ def create_query_uri/
616
+ create_request httpclient.rb /^ def create_request/
617
+ create_socket httpclient/session.rb /^ def create_socket/
618
+ create_ssl_socket httpclient/session.rb /^ def create_ssl_socket/
619
+ debug httpclient/session.rb /^ def debug/
620
+ debug httpclient/session.rb /^ def debug/
621
+ debug_dev httpclient.rb /^ def debug_dev/
622
+ debug_dev httpclient/session.rb /^ attr_accessor :debug_dev # Device for dumping log for debugging/
623
+ debug_dev httpclient/session.rb /^ attr_accessor :debug_dev # Device for dumping log for debugging/
624
+ debug_dev= httpclient.rb /^ def debug_dev=/
625
+ debug_dev= httpclient/session.rb /^ def debug_dev=/
626
+ default_redirect_uri_callback httpclient.rb /^ def default_redirect_uri_callback/
627
+ default_verify_callback httpclient/ssl_config.rb /^ def default_verify_callback/
628
+ delete httpclient.rb /^ def delete/
629
+ delete httpclient/http.rb /^ def delete/
630
+ delete_async httpclient.rb /^ def delete_async/
631
+ dest httpclient/session.rb /^ attr_reader :dest # Destination site/
632
+ digest_auth httpclient/auth.rb /^ attr_reader :digest_auth/
633
+ discard httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
634
+ discard? httpclient/cookie.rb /^ def discard?/
635
+ do_get_block httpclient.rb /^ def do_get_block/
636
+ do_get_header httpclient.rb /^ def do_get_header/
637
+ do_get_stream httpclient.rb /^ def do_get_stream/
638
+ do_request httpclient.rb /^ def do_request/
639
+ do_request_async httpclient.rb /^ def do_request_async/
640
+ domain httpclient/cookie.rb /^ attr_accessor :domain, :path/
641
+ domain_match httpclient/cookie.rb /^ def domain_match/
642
+ domain_orig httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
643
+ domain_orig? httpclient/cookie.rb /^ def domain_orig?/
644
+ dump httpclient/http.rb /^ def dump/
645
+ dump httpclient/http.rb /^ def dump/
646
+ dump httpclient/http.rb /^ def dump/
647
+ dump_chunk httpclient/http.rb /^ def dump_chunk/
648
+ dump_chunk_size httpclient/http.rb /^ def dump_chunk_size/
649
+ dump_chunked httpclient/http.rb /^ def dump_chunked/
650
+ dump_chunks httpclient/http.rb /^ def dump_chunks/
651
+ dump_dummy_request_response httpclient.rb /^ def dump_dummy_request_response/
652
+ dump_last_chunk httpclient/http.rb /^ def dump_last_chunk/
653
+ eof? httpclient/session.rb /^ def eof?/
654
+ eof? httpclient/session.rb /^ def eof?/
655
+ eof? httpclient/session.rb /^ def eof?/
656
+ eql? httpclient/session.rb /^ def eql?/
657
+ escape httpclient/http.rb /^ def escape/
658
+ escape_query httpclient/http.rb /^ def escape_query/
659
+ ex httpclient/timeout.rb /^ attr_reader :thread, :time, :ex/
660
+ expires httpclient/cookie.rb /^ attr_accessor :expires ## for Netscape Cookie/
661
+ file? httpclient/http.rb /^ def file?/
662
+ file_in_form_data? httpclient.rb /^ def file_in_form_data?/
663
+ filter_request httpclient/auth.rb /^ def filter_request/
664
+ filter_request httpclient/auth.rb /^ def filter_request/
665
+ filter_response httpclient/auth.rb /^ def filter_response/
666
+ filter_response httpclient/auth.rb /^ def filter_response/
667
+ find httpclient/cookie.rb /^ def find/
668
+ find_cookie_info httpclient/cookie.rb /^ def find_cookie_info/
669
+ finished? httpclient/connection.rb /^ def finished?/
670
+ flag httpclient/cookie.rb /^ def flag/
671
+ flush httpclient/session.rb /^ def flush/
672
+ flush httpclient/session.rb /^ def flush/
673
+ follow_redirect httpclient.rb /^ def follow_redirect/
674
+ follow_redirect_count httpclient.rb /^ attr_accessor :follow_redirect_count/
675
+ from httpclient/session.rb /^ attr_accessor :from # Owner of this client./
676
+ get httpclient.rb /^ def get/
677
+ get httpclient/auth.rb /^ def get/
678
+ get httpclient/auth.rb /^ def get/
679
+ get httpclient/auth.rb /^ def get/
680
+ get httpclient/auth.rb /^ def get/
681
+ get httpclient/http.rb /^ def get/
682
+ get_async httpclient.rb /^ def get_async/
683
+ get_body httpclient/session.rb /^ def get_body/
684
+ get_cached_session httpclient/session.rb /^ def get_cached_session/
685
+ get_content httpclient.rb /^ def get_content/
686
+ get_header httpclient/session.rb /^ def get_header/
687
+ get_mime_type_func httpclient/http.rb /^ def get_mime_type_func/
688
+ getenv httpclient.rb /^ def getenv/
689
+ gets httpclient/session.rb /^ def gets/
690
+ gets httpclient/session.rb /^ def gets/
691
+ gets httpclient/session.rb /^ def gets/
692
+ hash httpclient/session.rb /^ def hash/
693
+ hash_find_value httpclient/util.rb /^ def hash_find_value/
694
+ head httpclient.rb /^ def head/
695
+ head_async httpclient.rb /^ def head_async/
696
+ head_match? httpclient/cookie.rb /^ def head_match?/
697
+ header httpclient/http.rb /^ attr_reader :header/
698
+ header= httpclient/http.rb /^ def header=/
699
+ host httpclient/session.rb /^ attr_accessor :host/
700
+ http_date httpclient/http.rb /^ def http_date/
701
+ http_version httpclient/http.rb /^ attr_accessor :http_version/
702
+ init_connect_request httpclient/http.rb /^ def init_connect_request/
703
+ init_request httpclient/http.rb /^ def init_request/
704
+ init_request httpclient/http.rb /^ def init_request/
705
+ init_response httpclient/http.rb /^ def init_response/
706
+ init_response httpclient/http.rb /^ def init_response/
707
+ inspect httpclient/session.rb /^ def inspect/
708
+ internal_mime_type httpclient/http.rb /^ def internal_mime_type/
709
+ join httpclient/connection.rb /^ def join/
710
+ join_quotedstr httpclient/cookie.rb /^ def join_quotedstr/
711
+ keep httpclient/session.rb /^ def keep/
712
+ keep_alive_enabled? httpclient/http.rb /^ def keep_alive_enabled?/
713
+ keyword_argument httpclient/util.rb /^ def keyword_argument/
714
+ load httpclient/http.rb /^ def load/
715
+ load_cacerts httpclient/ssl_config.rb /^ def load_cacerts/
716
+ load_cookies httpclient/cookie.rb /^ def load_cookies/
717
+ load_environment httpclient.rb /^ def load_environment/
718
+ make_cookie_str httpclient/cookie.rb /^ def make_cookie_str/
719
+ match httpclient/session.rb /^ def match/
720
+ match? httpclient/cookie.rb /^ def match?/
721
+ mime_type httpclient/http.rb /^ def mime_type/
722
+ multiparam_query? httpclient/http.rb /^ def multiparam_query?/
723
+ name httpclient/cookie.rb /^ attr_accessor :name, :value/
724
+ negotiate_auth httpclient/auth.rb /^ attr_reader :negotiate_auth/
725
+ negotiate_auth httpclient/auth.rb /^ attr_reader :negotiate_auth/
726
+ netscape_rule httpclient/cookie.rb /^ attr_accessor :netscape_rule/
727
+ new_connect_request httpclient/http.rb /^ def self.new_connect_request/
728
+ new_request httpclient/http.rb /^ def self.new_request/
729
+ new_response httpclient/http.rb /^ def self.new_response/
730
+ no_proxy httpclient.rb /^ def no_proxy/
731
+ no_proxy= httpclient.rb /^ def no_proxy=/
732
+ no_proxy? httpclient.rb /^ def no_proxy?/
733
+ ntlm_opt httpclient/auth.rb /^ attr_reader :ntlm_opt/
734
+ open httpclient/session.rb /^ def open/
735
+ options httpclient.rb /^ def options/
736
+ options httpclient/ssl_config.rb /^ attr_reader :options/
737
+ options= httpclient/ssl_config.rb /^ def options=/
738
+ options_async httpclient.rb /^ def options_async/
739
+ override httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
740
+ override? httpclient/cookie.rb /^ def override?/
741
+ override_header httpclient.rb /^ def override_header/
742
+ params_from_file httpclient/http.rb /^ def params_from_file/
743
+ parse httpclient/cookie.rb /^ def parse/
744
+ parse httpclient/cookie.rb /^ def parse/
745
+ parse_authentication_header httpclient/auth.rb /^ def parse_authentication_header/
746
+ parse_challenge_header httpclient/auth.rb /^ def parse_challenge_header/
747
+ parse_challenge_param httpclient/util.rb /^ def parse_challenge_param/
748
+ parse_header httpclient/session.rb /^ def parse_header/
749
+ parse_keepalive_header httpclient/session.rb /^ def parse_keepalive_header/
750
+ parts httpclient/http.rb /^ def parts/
751
+ path httpclient/cookie.rb /^ attr_accessor :domain, :path/
752
+ path_orig httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
753
+ path_orig? httpclient/cookie.rb /^ def path_orig?/
754
+ peer_cert httpclient/http.rb /^ attr_accessor :peer_cert/
755
+ peer_cert httpclient/session.rb /^ def peer_cert/
756
+ pop httpclient/connection.rb /^ def pop/
757
+ port httpclient/session.rb /^ attr_reader :port/
758
+ port= httpclient/session.rb /^ def port=/
759
+ post httpclient.rb /^ def post/
760
+ post_async httpclient.rb /^ def post_async/
761
+ post_connection_check httpclient/session.rb /^ def post_connection_check/
762
+ post_connection_check httpclient/ssl_config.rb /^ def post_connection_check/
763
+ post_content httpclient.rb /^ def post_content/
764
+ propfind httpclient.rb /^ def propfind/
765
+ propfind_async httpclient.rb /^ def propfind_async/
766
+ proppatch httpclient.rb /^ def proppatch/
767
+ proppatch_async httpclient.rb /^ def proppatch_async/
768
+ protect_keep_alive_disconnected httpclient.rb /^ def protect_keep_alive_disconnected/
769
+ protocol_retry_count httpclient/session.rb /^ attr_accessor :protocol_retry_count/
770
+ protocol_retry_count httpclient/session.rb /^ attr_accessor :protocol_retry_count/
771
+ protocol_version httpclient/session.rb /^ attr_accessor :protocol_version # Requested protocol version/
772
+ proxy httpclient.rb /^ def proxy/
773
+ proxy httpclient/session.rb /^ attr_accessor :proxy # Proxy site/
774
+ proxy= httpclient.rb /^ def proxy=/
775
+ proxy= httpclient/session.rb /^ def proxy=/
776
+ proxy_auth httpclient.rb /^ attr_reader :proxy_auth/
777
+ push httpclient/connection.rb /^ def push/
778
+ put httpclient.rb /^ def put/
779
+ put_async httpclient.rb /^ def put_async/
780
+ query httpclient/session.rb /^ def query/
781
+ query httpclient/session.rb /^ def query/
782
+ read httpclient/session.rb /^ def read/
783
+ read httpclient/session.rb /^ def read/
784
+ read httpclient/session.rb /^ def read/
785
+ read_block_size httpclient/session.rb /^ attr_accessor :read_block_size/
786
+ read_block_size httpclient/session.rb /^ attr_accessor :read_block_size/
787
+ read_body_chunked httpclient/session.rb /^ def read_body_chunked/
788
+ read_body_length httpclient/session.rb /^ def read_body_length/
789
+ read_body_rest httpclient/session.rb /^ def read_body_rest/
790
+ read_header httpclient/session.rb /^ def read_header/
791
+ readpartial httpclient/session.rb /^ def readpartial/
792
+ readpartial httpclient/session.rb /^ def readpartial/
793
+ readpartial httpclient/session.rb /^ def readpartial/
794
+ reason httpclient/http.rb /^ def reason/
795
+ reason= httpclient/http.rb /^ def reason=/
796
+ reason_phrase httpclient/http.rb /^ attr_accessor :reason_phrase/
797
+ receive_timeout httpclient/session.rb /^ attr_accessor :receive_timeout/
798
+ receive_timeout httpclient/session.rb /^ attr_accessor :receive_timeout/
799
+ redirect? httpclient/http.rb /^ def self.redirect?/
800
+ redirect_uri_callback= httpclient.rb /^ def redirect_uri_callback=/
801
+ register httpclient/timeout.rb /^ def register/
802
+ reject_domains httpclient/cookie.rb /^ attr_accessor :accept_domains, :reject_domains/
803
+ remember_pos httpclient/http.rb /^ def remember_pos/
804
+ request httpclient.rb /^ def request/
805
+ request_async httpclient.rb /^ def request_async/
806
+ request_filter httpclient.rb /^ attr_reader :request_filter/
807
+ request_line httpclient/http.rb /^ def request_line/
808
+ request_method httpclient/http.rb /^ attr_reader :request_method/
809
+ request_query httpclient/http.rb /^ attr_accessor :request_query/
810
+ request_uri httpclient/http.rb /^ attr_accessor :request_uri/
811
+ request_via_proxy httpclient/http.rb /^ attr_accessor :request_via_proxy/
812
+ requested_version httpclient/session.rb /^ attr_accessor :requested_version # Requested protocol version/
813
+ res httpclient.rb /^ attr_reader :res/
814
+ reset httpclient.rb /^ def reset/
815
+ reset httpclient/session.rb /^ def reset/
816
+ reset_all httpclient.rb /^ def reset_all/
817
+ reset_all httpclient/session.rb /^ def reset_all/
818
+ reset_challenge httpclient/auth.rb /^ def reset_challenge/
819
+ reset_challenge httpclient/auth.rb /^ def reset_challenge/
820
+ reset_challenge httpclient/auth.rb /^ def reset_challenge/
821
+ reset_challenge httpclient/auth.rb /^ def reset_challenge/
822
+ reset_challenge httpclient/auth.rb /^ def reset_challenge/
823
+ reset_challenge httpclient/auth.rb /^ def reset_challenge/
824
+ reset_pos httpclient/http.rb /^ def reset_pos/
825
+ response_status_code httpclient/http.rb /^ attr_reader :response_status_code/
826
+ response_status_code= httpclient/http.rb /^ def response_status_code=/
827
+ response_status_line httpclient/http.rb /^ def response_status_line/
828
+ sample_verify_callback httpclient/ssl_config.rb /^ def sample_verify_callback/
829
+ save_all_cookies httpclient/cookie.rb /^ def save_all_cookies/
830
+ save_cookie_store httpclient.rb /^ def save_cookie_store/
831
+ save_cookies httpclient/cookie.rb /^ def save_cookies/
832
+ scheme httpclient/auth.rb /^ attr_reader :scheme/
833
+ scheme httpclient/auth.rb /^ attr_reader :scheme/
834
+ scheme httpclient/auth.rb /^ attr_reader :scheme/
835
+ scheme httpclient/auth.rb /^ attr_reader :scheme/
836
+ scheme httpclient/session.rb /^ attr_accessor :scheme/
837
+ secure httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
838
+ secure? httpclient/cookie.rb /^ def secure?/
839
+ send_timeout httpclient/session.rb /^ attr_accessor :send_timeout/
840
+ send_timeout httpclient/session.rb /^ attr_accessor :send_timeout/
841
+ set httpclient/auth.rb /^ def set/
842
+ set httpclient/auth.rb /^ def set/
843
+ set httpclient/auth.rb /^ def set/
844
+ set httpclient/auth.rb /^ def set/
845
+ set httpclient/http.rb /^ def set/
846
+ set_auth httpclient.rb /^ def set_auth/
847
+ set_auth httpclient/auth.rb /^ def set_auth/
848
+ set_auth httpclient/auth.rb /^ def set_auth/
849
+ set_basic_auth httpclient.rb /^ def set_basic_auth/
850
+ set_client_cert_file httpclient/ssl_config.rb /^ def set_client_cert_file/
851
+ set_content httpclient/http.rb /^ def set_content/
852
+ set_context httpclient/ssl_config.rb /^ def set_context/
853
+ set_cookie_store httpclient.rb /^ def set_cookie_store/
854
+ set_crl httpclient/ssl_config.rb /^ def set_crl/
855
+ set_flag httpclient/cookie.rb /^ def set_flag/
856
+ set_header httpclient/http.rb /^ def set_header/
857
+ set_header httpclient/session.rb /^ def set_header/
858
+ set_mime_type_func httpclient/http.rb /^ def set_mime_type_func/
859
+ set_proxy_auth httpclient.rb /^ def set_proxy_auth/
860
+ set_request_header httpclient/http.rb /^ def set_request_header/
861
+ set_response_header httpclient/http.rb /^ def set_response_header/
862
+ set_trust_ca httpclient/ssl_config.rb /^ def set_trust_ca/
863
+ size httpclient/http.rb /^ attr_reader :size/
864
+ size httpclient/http.rb /^ attr_reader :size/
865
+ socket_sync httpclient/session.rb /^ attr_accessor :socket_sync # Boolean value for Socket#sync/
866
+ socket_sync httpclient/session.rb /^ attr_accessor :socket_sync # Boolean value for Socket#sync/
867
+ src httpclient/session.rb /^ def src/
868
+ ssl_config httpclient.rb /^ attr_reader :ssl_config/
869
+ ssl_config httpclient/session.rb /^ attr_accessor :ssl_config/
870
+ ssl_config httpclient/session.rb /^ attr_accessor :ssl_config/
871
+ ssl_connect httpclient/session.rb /^ def ssl_connect/
872
+ ssl_peer_cert httpclient/session.rb /^ attr_reader :ssl_peer_cert/
873
+ sspi_negotiate_auth httpclient/auth.rb /^ attr_reader :sspi_negotiate_auth/
874
+ start_timer_thread httpclient/timeout.rb /^ def start_timer_thread/
875
+ status httpclient/http.rb /^ def status/
876
+ status= httpclient/http.rb /^ def status=/
877
+ status_code httpclient/http.rb /^ alias status_code/
878
+ strict_redirect_uri_callback httpclient.rb /^ def strict_redirect_uri_callback/
879
+ successful? httpclient/http.rb /^ def self.successful?/
880
+ sync httpclient/session.rb /^ def sync/
881
+ sync httpclient/session.rb /^ def sync/
882
+ sync= httpclient/session.rb /^ def sync=/
883
+ sync= httpclient/session.rb /^ def sync=/
884
+ tail_match? httpclient/cookie.rb /^ def tail_match?/
885
+ test_loopback_http_response httpclient/session.rb /^ attr_accessor :test_loopback_http_response/
886
+ test_loopback_http_response httpclient/session.rb /^ attr_reader :test_loopback_http_response/
887
+ test_loopback_response httpclient.rb /^ attr_reader :test_loopback_response/
888
+ thread httpclient/timeout.rb /^ attr_reader :thread, :time, :ex/
889
+ time httpclient/timeout.rb /^ attr_reader :thread, :time, :ex/
890
+ timeout httpclient/ssl_config.rb /^ attr_reader :timeout/
891
+ timeout httpclient/timeout.rb /^ def timeout/
892
+ timeout= httpclient/ssl_config.rb /^ def timeout=/
893
+ to_s httpclient/session.rb /^ def to_s/
894
+ total_dot_num httpclient/cookie.rb /^ def total_dot_num/
895
+ trace httpclient.rb /^ def trace/
896
+ trace_async httpclient.rb /^ def trace_async/
897
+ uri_dirname httpclient/util.rb /^ def uri_dirname/
898
+ uri_part_of httpclient/util.rb /^ def uri_part_of/
899
+ urify httpclient/util.rb /^ def urify/
900
+ url httpclient/cookie.rb /^ attr_accessor :url/
901
+ use httpclient/cookie.rb /^ attr_writer :use, :secure, :discard, :domain_orig, :path_orig, :override/
902
+ use? httpclient/cookie.rb /^ def use?/
903
+ value httpclient/cookie.rb /^ attr_accessor :name, :value/
904
+ verify_callback httpclient/ssl_config.rb /^ attr_reader :verify_callback/
905
+ verify_callback= httpclient/ssl_config.rb /^ def verify_callback=/
906
+ verify_depth httpclient/ssl_config.rb /^ attr_reader :verify_depth/
907
+ verify_depth= httpclient/ssl_config.rb /^ def verify_depth=/
908
+ verify_mode httpclient/ssl_config.rb /^ attr_reader :verify_mode/
909
+ verify_mode= httpclient/ssl_config.rb /^ def verify_mode=/
910
+ version httpclient/http.rb /^ def version/
911
+ version= httpclient/http.rb /^ def version=/
912
+ www_auth httpclient.rb /^ attr_reader :www_auth/
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: httpclient
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - NAKAMURA, Hiroshi
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-12-29 00:00:00 +09:00
12
+ date: 2009-01-08 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -22,19 +22,20 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
 
24
24
  files:
25
+ - lib/tags
26
+ - lib/http-access2
27
+ - lib/http-access2/http.rb
28
+ - lib/http-access2/cookie.rb
25
29
  - lib/httpclient
26
- - lib/httpclient/cookie.rb
27
- - lib/httpclient/ssl_config.rb
28
- - lib/httpclient/auth.rb
29
- - lib/httpclient/cacert.p7s
30
+ - lib/httpclient/connection.rb
30
31
  - lib/httpclient/http.rb
32
+ - lib/httpclient/auth.rb
33
+ - lib/httpclient/util.rb
31
34
  - lib/httpclient/session.rb
35
+ - lib/httpclient/ssl_config.rb
32
36
  - lib/httpclient/timeout.rb
33
- - lib/httpclient/connection.rb
34
- - lib/httpclient/util.rb
35
- - lib/http-access2
36
- - lib/http-access2/cookie.rb
37
- - lib/http-access2/http.rb
37
+ - lib/httpclient/cookie.rb
38
+ - lib/httpclient/cacert.p7s
38
39
  - lib/httpclient.rb
39
40
  - lib/http-access2.rb
40
41
  has_rdoc: true