aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/layout.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/layout.rb')
-rw-r--r--actionpack/lib/action_controller/layout.rb22
1 files changed, 7 insertions, 15 deletions
diff --git a/actionpack/lib/action_controller/layout.rb b/actionpack/lib/action_controller/layout.rb
index 027ae42aeb..ff4a4057a2 100644
--- a/actionpack/lib/action_controller/layout.rb
+++ b/actionpack/lib/action_controller/layout.rb
@@ -233,29 +233,23 @@ module ActionController #:nodoc:
end
protected
- def render_with_a_layout(options = nil, deprecated_status = nil, deprecated_layout = nil, &block) #:nodoc:
+ def render_with_a_layout(options = nil, &block) #:nodoc:
template_with_options = options.is_a?(Hash)
- if apply_layout?(template_with_options, options) && (layout = pick_layout(template_with_options, options, deprecated_layout))
+ if apply_layout?(template_with_options, options) && (layout = pick_layout(template_with_options, options))
assert_existence_of_template_file(layout)
options = options.merge :layout => false if template_with_options
logger.info("Rendering template within #{layout}") if logger
- if template_with_options
- content_for_layout = render_with_no_layout(options, &block)
- deprecated_status = options[:status] || deprecated_status
- else
- content_for_layout = render_with_no_layout(options, deprecated_status, &block)
- end
-
+ content_for_layout = render_with_no_layout(options, &block)
erase_render_results
add_variables_to_assigns
@template.instance_variable_set("@content_for_layout", content_for_layout)
response.layout = layout
- render_text(@template.render_file(layout, true), deprecated_status)
+ render_for_text(@template.render_file(layout, true))
else
- render_with_no_layout(options, deprecated_status, &block)
+ render_with_no_layout(options, &block)
end
end
@@ -272,10 +266,8 @@ module ActionController #:nodoc:
!template_exempt_from_layout?(default_template_name(options[:action] || options[:template]))
end
- def pick_layout(template_with_options, options, deprecated_layout)
- if deprecated_layout
- deprecated_layout
- elsif template_with_options
+ def pick_layout(template_with_options, options)
+ if template_with_options
case layout = options[:layout]
when FalseClass
nil