60caf0e661
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@294 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
17 lines
633 B
Ruby
Executable File
17 lines
633 B
Ruby
Executable File
module ActionController
|
|
class AbstractResponse #:nodoc:
|
|
DEFAULT_HEADERS = { "Cache-Control" => "no-cache" }
|
|
attr_accessor :body, :headers, :session, :cookies, :assigns, :template, :redirected_to, :redirected_to_method_params
|
|
|
|
def initialize
|
|
@body, @headers, @session, @assigns = "", DEFAULT_HEADERS.merge("cookie" => []), [], []
|
|
end
|
|
|
|
def redirect(to_url, permanently = false)
|
|
@headers["Status"] = permanently ? "301 Moved Permanently" : "302 Found"
|
|
@headers["location"] = to_url
|
|
|
|
@body = "<html><body>You are being <a href=\"#{to_url}\">redirected</a>.</body></html>"
|
|
end
|
|
end
|
|
end |