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

Merged 13767, 13768, 13769, and 13770 from trunk.

* lib/xmlrpc/parser.rb (XMLRPC::Convert::dateTime): Fixing a bug that
  caused time zone conversion to fail for some ISO 8601 date formats.
  [ruby-Bugs-12677]

* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Explicitly start
  the HTTP connection to support keepalive requests. [ruby-Bugs-9353]

* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Improving the error
  message for Content-Type check failures. [ruby-core:12163]

* lib/xmlrpc/utils.rb (XMLRPC::ParseContentType#parse_content_type):
  Making Content-Type checks case insensitive. [ruby-Bugs-3367]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@13771 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
jeg2 2007-10-24 23:04:42 +00:00
parent 238815c3b2
commit ae8bb3a00c
4 changed files with 25 additions and 5 deletions

View file

@ -157,7 +157,7 @@ module XMLRPC
module ParseContentType
def parse_content_type(str)
a, *b = str.split(";")
return a.strip, *b
return a.strip.downcase, *b
end
end