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:
parent
4fce914d2d
commit
b809da7b8e
2 changed files with 14 additions and 14 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,7 @@
|
|||
Wed Apr 18 04:37:51 2001 Wakou Aoyama <wakou@fsinet.or.jp>
|
||||
|
||||
* lib/cgi.rb: CGI::Cookie: no use PATH_INFO.
|
||||
|
||||
Wed Apr 18 00:24:40 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* regex.c (re_compile_pattern): char class at either edge of range
|
||||
|
@ -293,17 +297,17 @@ Mon Mar 19 11:03:10 2001 Koji Arai <JCA02266@nifty.ne.jp>
|
|||
|
||||
Sun Mar 18 08:58:18 2001 Wakou Aoyama <wakou@fsinet.or.jp>
|
||||
|
||||
* lib/net/cgi.rb: // === '' --> //.match('')
|
||||
* lib/cgi.rb: // === '' --> //.match('')
|
||||
|
||||
* lib/net/cgi.rb: cgi#header(): improvement for mod_ruby.
|
||||
* lib/cgi.rb: cgi#header(): improvement for mod_ruby.
|
||||
|
||||
* lib/net/cgi.rb: cgi#rfc1123date(): improvement.
|
||||
* lib/cgi.rb: cgi#rfc1123date(): improvement.
|
||||
thanks to TADA Tadashi <sho@spc.gr.jp>.
|
||||
|
||||
* lib/net/cgi.rb: cgi#rfc1123date(): document bug fix.
|
||||
* lib/cgi.rb: cgi#rfc1123date(): document bug fix.
|
||||
thanks to Kazuhiro NISHIYAMA <zn@mbf.nifty.com>.
|
||||
|
||||
* lib/net/cgi.rb: cgi#header(): bug fix.
|
||||
* lib/cgi.rb: cgi#header(): bug fix.
|
||||
thanks to IWATSUKI Hiroyuki <don@na.rim.or.jp>.
|
||||
|
||||
Fri Mar 16 17:21:25 2001 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
|
14
lib/cgi.rb
14
lib/cgi.rb
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue