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

* lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line):

mistook to merge the patch of [ruby-dev:26235] at
  revision 1.11.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gotoyuzo 2005-07-10 17:54:58 +00:00
parent f41e9c805c
commit e3fa33da38
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Mon Jul 11 02:50:23 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line):
mistook to merge the patch of [ruby-dev:26235] at
revision 1.11.
Sun Jul 10 23:58:04 2005 Tanaka Akira <akr@m17n.org>
* lib/pathname.rb (Pathname#unlink): try Dir.unlink first to

View file

@ -148,9 +148,9 @@ module WEBrick
def request_line
meth = @env["REQUEST_METHOD"] || "GET"
url = (@env["SCRIPT_NAME"] || File.expand_path($0)).dup
url << @env["PATH_INFO"].to_s
unless url = @env["REQUEST_URI"]
url = (@env["SCRIPT_NAME"] || File.expand_path($0)).dup
url << @env["PATH_INFO"].to_s
url = WEBrick::HTTPUtils.escape_path(url)
if query_string = @env["QUERY_STRING"]
unless query_string.empty?