aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderer
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-03 16:51:08 +0200
committerJosé Valim <jose.valim@gmail.com>2011-05-03 16:51:47 +0200
commitf9849070acb4c7df0b60c61cea3a927191851e92 (patch)
tree0ac9c778331d7be47c83e1eabafb88c2175718ce /actionpack/lib/action_view/renderer
parentf82767e276b7f6fcd7c0770348cb8f1716365dba (diff)
downloadrails-f9849070acb4c7df0b60c61cea3a927191851e92.tar.gz
rails-f9849070acb4c7df0b60c61cea3a927191851e92.tar.bz2
rails-f9849070acb4c7df0b60c61cea3a927191851e92.zip
Add a shared entry point for AV and AC render which can be used as extension in the future.
Diffstat (limited to 'actionpack/lib/action_view/renderer')
-rw-r--r--actionpack/lib/action_view/renderer/renderer.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/renderer/renderer.rb b/actionpack/lib/action_view/renderer/renderer.rb
index 3c0126f6bb..1fa51d276f 100644
--- a/actionpack/lib/action_view/renderer/renderer.rb
+++ b/actionpack/lib/action_view/renderer/renderer.rb
@@ -10,6 +10,15 @@ module ActionView
@controller = controller
end
+ # Main render entry point shared by AV and AC.
+ def render(context, options)
+ if options.key?(:partial)
+ render_partial(context, options)
+ else
+ render_template(context, options)
+ end
+ end
+
# Render but returns a valid Rack body. If fibers are defined, we return
# a streaming body that renders the template piece by piece.
#