diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-09-16 09:14:27 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-09-16 09:14:27 +0000 |
| commit | c40f3072c4e9e7e1c2727e7711401d6f3c0ffbc9 (patch) | |
| tree | 18d58459f839b19355430fbd2f34f6b5ba1e9e07 /lib/webrick/cgi.rb | |
| parent | f2ebd073764cd6a8dad26416f84d48b6005504fc (diff) | |
| download | ruby-c40f3072c4e9e7e1c2727e7711401d6f3c0ffbc9.tar.gz ruby-c40f3072c4e9e7e1c2727e7711401d6f3c0ffbc9.tar.xz ruby-c40f3072c4e9e7e1c2727e7711401d6f3c0ffbc9.zip | |
* lib/webrick/cgi.rb (WEBrick::CGI#start): should set REMOTE_USER
to request.user attribute.
* lib/webrick/httpservlet/filehandler.rb
(WEBrick::HTTPServlet::FileHandler#initialize): should expand
the pathname of document root directory.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/webrick/cgi.rb')
| -rw-r--r-- | lib/webrick/cgi.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/webrick/cgi.rb b/lib/webrick/cgi.rb index 62c61f519..5c38e42fc 100644 --- a/lib/webrick/cgi.rb +++ b/lib/webrick/cgi.rb @@ -61,6 +61,7 @@ module WEBrick else req.path_info = env["PATH_INFO"].dup end + req.user = env["REMOTE_USER"] res.request_method = req.request_method res.request_uri = req.request_uri res.request_http_version = req.http_version |
