aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/rendering.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-03-08 11:32:01 +0100
committerJosé Valim <jose.valim@gmail.com>2010-03-08 11:32:01 +0100
commit0a85380966e47a38292242e6c3b259d77c738ab5 (patch)
tree60945065b107368e6cd2f06b63cf40d16f6e88ac /actionpack/lib/action_controller/metal/rendering.rb
parent34b2180451f842b180dd925bab10e8f4afa34490 (diff)
downloadrails-0a85380966e47a38292242e6c3b259d77c738ab5.tar.gz
rails-0a85380966e47a38292242e6c3b259d77c738ab5.tar.bz2
rails-0a85380966e47a38292242e6c3b259d77c738ab5.zip
Finally moved the find template logic to the views.
Diffstat (limited to 'actionpack/lib/action_controller/metal/rendering.rb')
-rw-r--r--actionpack/lib/action_controller/metal/rendering.rb41
1 files changed, 12 insertions, 29 deletions
diff --git a/actionpack/lib/action_controller/metal/rendering.rb b/actionpack/lib/action_controller/metal/rendering.rb
index 60d61999de..f892bd9b91 100644
--- a/actionpack/lib/action_controller/metal/rendering.rb
+++ b/actionpack/lib/action_controller/metal/rendering.rb
@@ -6,46 +6,20 @@ module ActionController
include AbstractController::Rendering
def process(*)
- self.formats = request.formats.map {|x| x.to_sym }
+ self.formats = request.formats.map { |x| x.to_sym }
super
end
def render(*args)
raise ::AbstractController::DoubleRenderError if response_body
- args << {} unless args.last.is_a?(Hash)
- super(*args)
- self.content_type ||= args.last[:_template].mime_type.to_s
- response_body
- end
-
- def render_to_body(options)
- _process_options(options)
super
+ response_body
end
private
- def _render_partial(options)
- options[:partial] = action_name if options[:partial] == true
- options[:_details] = details_for_render
- super
- end
-
- def format_for_text
- formats.first
- end
-
def _normalize_args(action=nil, options={}, &blk)
- case action
- when NilClass
- when Hash
- options = super(action.delete(:action), action)
- when String, Symbol
- options = super
- else
- options.merge!(:partial => action)
- end
-
+ options = super
options[:update] = blk if block_given?
options
end
@@ -64,9 +38,18 @@ module ActionController
def _process_options(options)
status, content_type, location = options.values_at(:status, :content_type, :location)
+
self.status = status if status
self.content_type = content_type if content_type
self.headers["Location"] = url_for(location) if location
+
+ super
end
+
+ def _with_template_hook(template)
+ super
+ self.content_type ||= template.mime_type.to_s
+ end
+
end
end