1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Tentatively accept the ":as or :object, but not both" solution

This commit is contained in:
Yehuda Katz 2009-08-10 08:57:44 -04:00
parent 945a7df9f8
commit 9e62d6d1c0
2 changed files with 22 additions and 23 deletions

View file

@ -184,6 +184,7 @@ module ActionView
def initialize(view_context, options, block)
partial = options[:partial]
@memo = {}
@view = view_context
@options = options
@locals = options[:locals] || {}
@ -222,9 +223,8 @@ module ActionView
def collection_with_template(template)
options = @options
segments, locals, as = [], @locals, options[:as]
segments, locals, as = [], @locals, options[:as] || :object
[].tap do |segments|
variable_name = template.variable_name
counter_name = template.counter_name
locals[counter_name] = -1
@ -236,16 +236,15 @@ module ActionView
segments << template.render(@view, locals)
end
end
segments
end
def collection_without_template
options = @options
segments, locals, as = [], @locals, options[:as]
segments, locals, as = [], @locals, options[:as] || :object
index, template = -1, nil
[].tap do |segments|
collection.each do |object|
template = find_template(partial_path(object))
locals[template.counter_name] = (index += 1)
@ -256,7 +255,7 @@ module ActionView
end
@options[:_template] = template
end
segments
end
def render_template(template, object = @object)

View file

@ -1 +1 @@
<%= customer.name %> <%= object.name %> <%= customer_with_var.name %>
<%= customer.name %> <%= customer.name %> <%= customer_with_var.name %>