class PhusionPassenger::ClassicRails::CGIFixed
backwards compatibility is removed.
This is partially based on the FastCGI code, but much of the Ruby 1.6
can hook the request parameters into the environment table.
the right sources. It also exposes the env_table so that RequestHandler
the stdinput and stdoutput so RequestHandler can connect them to
Modifies CGI so that we can use it. Main thing it does is expose
def args
def args @args end
def env_table
def env_table @env_table end
def initialize(params, input, output, *args)
def initialize(params, input, output, *args) @env_table = params @args = *args @input = input @out = output super(*args) end
def stdinput
def stdinput @input end
def stdoutput
def stdoutput @out end