summaryrefslogtreecommitdiff
path: root/lib/cgi
diff options
context:
space:
mode:
-rw-r--r--lib/cgi/cookie.rb1
-rw-r--r--lib/cgi/core.rb1
-rw-r--r--lib/cgi/html.rb1
-rw-r--r--lib/cgi/session.rb1
-rw-r--r--lib/cgi/session/pstore.rb1
-rw-r--r--lib/cgi/util.rb1
6 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,4 @@
require 'cgi/util'
class CGI
# Class representing an HTTP cookie.
@@ -1,3 +1,4 @@
#--
# Methods for generating HTML, parsing CGI-related parameters, and
# generating HTTP responses.
@@ -1,3 +1,4 @@
class CGI
# Base module for HTML-generation mixins.
#
@@ -1,3 +1,4 @@
#
# cgi/session.rb - session support for cgi scripts
#
@@ -1,3 +1,4 @@
#
# cgi/session/pstore.rb - persistent storage of marshalled session data
#
@@ -1,3 +1,4 @@
class CGI; module Util; end; extend Util; end
module CGI::Util
@@accept_charset="UTF-8" unless defined?(@@accept_charset)