• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/ruby-106/ruby/lib/net/

Lines Matching refs:URI

39   # Net::HTTP is designed to work closely with URI.  URI::HTTP#host,
40 # URI::HTTP#port and URI::HTTP#request_uri are designed to work with
61 # === GET by URI
63 # uri = URI('http://example.com/index.html?count=10')
68 # uri = URI('http://example.com/index.html')
70 # uri.query = URI.encode_www_form(params)
77 # uri = URI('http://www.example.com/search.cgi')
83 # uri = URI('http://www.example.com/search.cgi')
93 # uri = URI('http://example.com/some_path?query=string')
115 # supply either a String for the request path or a URI from which Net::HTTP
120 # uri = URI('http://example.com/index.html')
153 # response = Net::HTTP.get_response(URI(uri_str))
174 # uri = URI('http://www.example.com/todo.cgi')
207 # uri = URI('http://example.com/cached_response')
226 # uri = URI('http://example.com/index.html?key=value')
242 # uri = URI('http://example.com/large_file')
260 # uri = URI('https://secure.example.com/some_path?query=string')
428 # Net::HTTP.get_print URI('http://www.example.com/index.html')
447 # print Net::HTTP.get(URI('http://www.example.com/index.html'))
461 # res = Net::HTTP.get_response(URI('http://www.example.com/index.html'))
484 # Posts HTML form data to the specified URI object.
499 # Net::HTTP.post_form URI('http://www.example.com/search.cgi'),
599 # supply it by hand. See URI::Generic#find_proxy for details of proxy
1025 # The proxy URI determined from the environment for this connection.
1027 @proxy_uri ||= URI("http://#{address}:#{port}").find_proxy
1088 # absolute path String or a URI to extract the path from.