aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-01 10:33:30 +0200
committerJosé Valim <jose.valim@gmail.com>2011-05-01 13:40:12 +0200
commitd08f65118cc328de5493a68db33a155487f5fceb (patch)
treed46ea02ef1b754a81bcd8412a970b849aba45fcb /actionpack/lib/action_view/base.rb
parente68b7a001de0959fcfb90b9d8c82b6b0bc1ccfb6 (diff)
downloadrails-d08f65118cc328de5493a68db33a155487f5fceb.tar.gz
rails-d08f65118cc328de5493a68db33a155487f5fceb.tar.bz2
rails-d08f65118cc328de5493a68db33a155487f5fceb.zip
Start abstracting the renderer.
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 87501d5b88..c1dbbe1613 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -131,7 +131,7 @@ module ActionView #:nodoc:
#
# More builder documentation can be found at http://builder.rubyforge.org.
class Base
- include Helpers, Rendering, Partials, ::ERB::Util, Context
+ include Helpers, Rendering, ::ERB::Util, Context
# Specify the proc used to decorate input tags that refer to attributes with errors.
cattr_accessor :field_error_proc
@@ -162,6 +162,7 @@ module ActionView #:nodoc:
attr_accessor :_template, :_view_flow
attr_internal :request, :controller, :config, :assigns, :lookup_context
+ # TODO Consider removing those setters once we have the renderer in place.
delegate :formats, :formats=, :locale, :locale=, :view_paths, :view_paths=, :to => :lookup_context
delegate :request_forgery_protection_token, :params, :session, :cookies, :response, :headers,
@@ -199,6 +200,8 @@ module ActionView #:nodoc:
@_lookup_context = lookup_context.is_a?(ActionView::LookupContext) ?
lookup_context : ActionView::LookupContext.new(lookup_context)
@_lookup_context.formats = formats if formats
+
+ @_renderer = ActionView::Renderer.new(@_lookup_context, self)
end
def controller_path