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

* lib/cgi.rb (CGI::initialize): remove at_exit code for CGI_PARAMS

and CGI_COOKIES.  they will no longer be used.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2004-07-28 13:26:01 +00:00
parent 953d425b83
commit 1784fd2790
2 changed files with 10 additions and 26 deletions

View file

@ -1,3 +1,8 @@
Wed Jul 28 18:59:17 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/cgi.rb (CGI::initialize): remove at_exit code for CGI_PARAMS
and CGI_COOKIES. they will no longer be used.
Wed Jul 28 01:04:44 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* gc.c (run_final): wrong order of data. [ruby-dev:23984]

View file

@ -2258,33 +2258,12 @@ class CGI
extend QueryExtension
@multipart = false
if "POST" != env_table['REQUEST_METHOD']
initialize_query() # set @params, @cookies
if defined?(CGI_PARAMS)
warn "do not use CGI_PARAMS and CGI_COOKIES"
@params = CGI_PARAMS.dup
@cookies = CGI_COOKIES.dup
else
if defined?(CGI_PARAMS)
@params = CGI_PARAMS.nil? ? nil : CGI_PARAMS.dup
@cookies = CGI_COOKIES.nil? ? nil : CGI_COOKIES.dup
else
initialize_query() # set @params, @cookies
params = @params.nil? ? nil : @params.dup
cookies = @cookies.nil? ? nil : @cookies.dup
(class << self; self; end).class_eval do
const_set(:CGI_PARAMS, params)
const_set(:CGI_COOKIES, cookies)
end
if defined?(MOD_RUBY) and (RUBY_VERSION < "1.4.3")
raise "Please, use ruby1.4.3 or later."
else
at_exit() do
if defined?(CGI_PARAMS)
CGI.class_eval do
remove_const(:CGI_PARAMS)
remove_const(:CGI_COOKIES)
end
end
end
end
end
initialize_query() # set @params, @cookies
end
@output_cookies = nil
@output_hidden = nil