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

Wed Apr 18 04:37:51 2001 Wakou Aoyama <wakou@fsinet.or.jp>

* lib/cgi.rb: CGI::Cookie: no use PATH_INFO.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
wakou 2001-04-17 19:43:27 +00:00
parent 4fce914d2d
commit b809da7b8e
2 changed files with 14 additions and 14 deletions

View file

@ -185,10 +185,10 @@ class CGI
CR = "\015"
LF = "\012"
EOL = CR + LF
VERSION = '2.1.3'
RELEASE_DATE = '2001-03-18'
VERSION = '2.1.4'
RELEASE_DATE = '2001-04-18'
VERSION_CODE = 214
RELEASE_CODE = 20010318
RELEASE_CODE = 20010418
REVISION = '$Id$'
NEEDS_BINMODE = true if /WIN/ni.match(RUBY_PLATFORM)
@ -643,13 +643,9 @@ convert string charset, and set language to "ja".
# simple support for IE
if options["path"]
@path = options["path"]
elsif ENV["REQUEST_URI"]
@path = ENV["REQUEST_URI"].sub(/\?.*/n,'')
if ENV["PATH_INFO"]
@path = @path[0...@path.rindex(ENV["PATH_INFO"])]
end
else
@path = (ENV["SCRIPT_NAME"] or "")
%r|^(.*/)|.match(ENV["SCRIPT_NAME"])
@path = ($1 or "")
end
@domain = options["domain"]
@expires = options["expires"]