--- !ruby/object:RI::MethodDescription
aliases: []
block_params:
comment:
- !ruby/struct:SM::Flow::P
body: Create a new CGI::Session object for request.
- !ruby/struct:SM::Flow::P
body: "request is an instance of the CGI class (see cgi.rb). option is a hash of options for initialising this CGI::Session instance. The following options are recognised:"
- !ruby/object:SM::Flow::LIST
contents:
- !ruby/struct:SM::Flow::LI
label: "session_key:"
body: the parameter name used for the session id. Defaults to '_session_id'.
- !ruby/struct:SM::Flow::LI
label: "session_id:"
body: the session id to use. If not provided, then it is retrieved from the session_key parameter of the request, or automatically generated for a new session.
- !ruby/struct:SM::Flow::LI
label: "new_session:"
body: if true, force creation of a new session. If not set, a new session is only created if none currently exists. If false, a new session is never created, and if none currently exists and the session_id option is not set, an ArgumentError is raised.
- !ruby/struct:SM::Flow::LI
label: "database_manager:"
body: the name of the class providing storage facilities for session state persistence. Built-in support is provided for FileStore (the default), MemoryStore, and PStore (from cgi/session/pstore.rb). See the documentation for these classes for more details.
type: :NOTE
- !ruby/struct:SM::Flow::P
body: The following options are also recognised, but only apply if the session id is stored in a cookie.
- !ruby/object:SM::Flow::LIST
contents:
- !ruby/struct:SM::Flow::LI
label: "session_expires:"
body: the time the current session expires, as a Time object. If not set, the session will terminate when the user's browser is closed.
- !ruby/struct:SM::Flow::LI
label: "session_domain:"
body: the hostname domain for which this session is valid. If not set, defaults to the hostname of the server.
- !ruby/struct:SM::Flow::LI
label: "session_secure:"
body: if true, this session will only work over HTTPS.
- !ruby/struct:SM::Flow::LI
label: "session_path:"
body: the path for which this session applies. Defaults to the directory of the CGI script.
type: :NOTE
- !ruby/struct:SM::Flow::P
body: option is also passed on to the session storage class initializer; see the documentation for each session storage class for the options they support.
- !ruby/struct:SM::Flow::P
body: The retrieved or created session is automatically added to request as a cookie, and also to its output_hidden table, which is used to add hidden input elements to forms.
- !ruby/struct:SM::Flow::P
body: WARNING the output_hidden fields are surrounded by a <fieldset> tag in HTML 4 generation, which is not invisible on many browsers; you may wish to disable the use of fieldsets with code similar to the following (see http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-list/37805)
- !ruby/struct:SM::Flow::VERB
body: " cgi = CGI.new("html4")\n class << cgi\n undef_method :fieldset\n end\n"
full_name: CGI::Session::new
is_singleton: true
name: new
params: (request, option={})
visibility: public