aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-01-11 04:45:06 +0000
committerMichael Koziarski <michael@koziarski.com>2008-01-11 04:45:06 +0000
commite6de95889dd361359bcd885c9f38087f14f57628 (patch)
tree6886ef6ae276e44d41df2e6b077f35ee3ae00a6f /actionpack/lib/action_view/base.rb
parentfeea0f106ed705986f2efc1d244b03df9a45739b (diff)
downloadrails-e6de95889dd361359bcd885c9f38087f14f57628.tar.gz
rails-e6de95889dd361359bcd885c9f38087f14f57628.tar.bz2
rails-e6de95889dd361359bcd885c9f38087f14f57628.zip
* Pass around handler instances, not their classes [Koz]
* Move compilation, rendering and 'compilable?' checks into the Handlers [Koz] * Remove delegate_* methods as the handler is now an instance [Koz] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8624 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb24
1 files changed, 6 insertions, 18 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 6fde9ccf73..34572e442d 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -252,7 +252,7 @@ module ActionView #:nodoc:
@@default_template_handlers = klass
end
- def self.handler_for_extension(extension)
+ def self.handler_class_for_extension(extension)
(extension && @@template_handlers[extension.to_sym]) || @@default_template_handlers
end
@@ -361,13 +361,13 @@ If you are rendering a subtemplate, you must now use controller-like partial syn
# Renders the +template+ which is given as a string as either erb or builder depending on <tt>template_extension</tt>.
# The hash in <tt>local_assigns</tt> is made available as local variables.
def render_template(template_extension, template, file_path = nil, local_assigns = {}) #:nodoc:
- handler = self.class.handler_for_extension(template_extension)
+ handler = self.class.handler_class_for_extension(template_extension).new(self)
- if template_handler_is_compilable?(handler)
+ if handler.compilable?
compile_and_render_template(handler, template, file_path, local_assigns)
else
template ||= read_template_file(file_path, template_extension) # Make sure that a lazyily-read template is loaded.
- delegate_render(handler, template, local_assigns)
+ handler.render(template, local_assigns)
end
end
@@ -513,18 +513,6 @@ If you are rendering a subtemplate, you must now use controller-like partial syn
end
end
- def delegate_render(handler, template, local_assigns)
- handler.new(self).render(template, local_assigns)
- end
-
- def delegate_compile(handler, template)
- handler.new(self).compile(template)
- end
-
- def template_handler_is_compilable?(handler)
- handler.new(self).respond_to?(:compile)
- end
-
# Assigns instance variables from the controller to the view.
def assign_variables_from_controller
@assigns.each { |key, value| instance_variable_set("@#{key}", value) }
@@ -565,7 +553,7 @@ If you are rendering a subtemplate, you must now use controller-like partial syn
# Method to create the source code for a given template.
def create_template_source(handler, template, render_symbol, locals)
- body = delegate_compile(handler, template)
+ body = handler.compile(template)
@@template_args[render_symbol] ||= {}
locals_keys = @@template_args[render_symbol].keys | locals
@@ -585,7 +573,7 @@ If you are rendering a subtemplate, you must now use controller-like partial syn
end
def compiled_method_name(handler, template, file_name)
- ['_run', handler.to_s.demodulize.underscore, compiled_method_name_file_path_segment(file_name)].compact.join('_').to_sym
+ ['_run', handler.class.to_s.demodulize.underscore, compiled_method_name_file_path_segment(file_name)].compact.join('_').to_sym
end
def compiled_method_name_file_path_segment(file_name)