aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/cgi_ext/cgi_ext.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-05-15 00:08:05 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-05-15 00:08:05 +0000
commitf8273e430916f8c7b0d21ad14aab90e427f8c0a6 (patch)
tree4dfec8ec427d1c1d3b2fc98184790a95f5ff7919 /actionpack/lib/action_controller/cgi_ext/cgi_ext.rb
parent7fb5d44df77c377a02797d0dbdddbf6817d55ce8 (diff)
downloadrails-f8273e430916f8c7b0d21ad14aab90e427f8c0a6.tar.gz
rails-f8273e430916f8c7b0d21ad14aab90e427f8c0a6.tar.bz2
rails-f8273e430916f8c7b0d21ad14aab90e427f8c0a6.zip
Shine some sunlight on the CGI extensions. Remove unused CGI#session.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6733 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/cgi_ext/cgi_ext.rb')
-rw-r--r--actionpack/lib/action_controller/cgi_ext/cgi_ext.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/actionpack/lib/action_controller/cgi_ext/cgi_ext.rb b/actionpack/lib/action_controller/cgi_ext/cgi_ext.rb
deleted file mode 100644
index 06958272ab..0000000000
--- a/actionpack/lib/action_controller/cgi_ext/cgi_ext.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-require 'cgi'
-require 'cgi/session'
-require 'cgi/session/pstore'
-require 'action_controller/cgi_ext/cgi_methods'
-
-# Wrapper around the CGIMethods that have been secluded to allow testing without
-# an instantiated CGI object
-class CGI #:nodoc:
- class << self
- alias :escapeHTML_fail_on_nil :escapeHTML
-
- def escapeHTML(string)
- escapeHTML_fail_on_nil(string) unless string.nil?
- end
- end
-
- # Returns a parameter hash including values from both the request (POST/GET)
- # and the query string with the latter taking precedence.
- def parameters
- request_parameters.update(query_parameters)
- end
-
- def query_parameters
- CGIMethods.parse_query_parameters(query_string)
- end
-
- def request_parameters
- CGIMethods.parse_request_parameters(params, env_table)
- end
-
- def session(parameters = nil)
- parameters = {} if parameters.nil?
- parameters['database_manager'] = CGI::Session::PStore
- CGI::Session.new(self, parameters)
- end
-end