diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-11 07:22:19 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-11 07:22:19 +0000 |
| commit | db49f5350fbb327579d70b4e1f4ac2559c8ec216 (patch) | |
| tree | f450f83b406adf54c9b9e6e8980221347bd458d5 /lib/webrick/httputils.rb | |
| parent | 65092b6d8c85e9bebea18db5c3431e66e7d0ccfd (diff) | |
| download | ruby-db49f5350fbb327579d70b4e1f4ac2559c8ec216.tar.gz ruby-db49f5350fbb327579d70b4e1f4ac2559c8ec216.tar.xz ruby-db49f5350fbb327579d70b4e1f4ac2559c8ec216.zip | |
* lib/webrick/cgi.rb: new methods WEBrick::CGI#[], WEBrick::CGI#logger
and WEBrick::CGI#config. (backported from HEAD)
* lib/webrick/httputils.rb (WEBrick::HTTPUtils.escape_path): should
not use String#split("/"). (backported from HEAD)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/webrick/httputils.rb')
| -rw-r--r-- | lib/webrick/httputils.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/webrick/httputils.rb b/lib/webrick/httputils.rb index e0855222f..67bc281c5 100644 --- a/lib/webrick/httputils.rb +++ b/lib/webrick/httputils.rb @@ -384,9 +384,11 @@ module WEBrick end def escape_path(str) - str.split("/").collect{|i| - _escape(i, UNESCAPED_PCHAR) - }.join("/") + result = "" + str.scan(%r{/([^/]*)}).each{|i| + result << "/" << _escape(i[0], UNESCAPED_PCHAR) + } + return result end def escape8bit(str) |
