Sha256: e0df3c44cc310764744460d10a93c345995ccfc5c9c55c379f2a08bd6b0c6a37
Contents?: true
Size: 971 Bytes
Versions: 22
Compression:
Stored size: 971 Bytes
Contents
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
Version data entries
22 entries across 22 versions & 4 rubygems