Skip to content

Commit

Permalink
Make ActionController#render(symbol) behave same as ActionController#…
Browse files Browse the repository at this point in the history
…render(string) [#1435]
  • Loading branch information
lifo committed Dec 26, 2008
1 parent cd1d6e8 commit 80307c8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
1 change: 1 addition & 0 deletions actionpack/CHANGELOG
Expand Up @@ -4,6 +4,7 @@

# Instead of render(:action => 'other_action')
render('other_action') # argument has no '/'
render(:other_action)

# Instead of render(:template => 'controller/action')
render('controller/action') # argument must not begin with a '/', but contain a '/'
Expand Down
10 changes: 5 additions & 5 deletions actionpack/lib/action_controller/base.rb
Expand Up @@ -859,14 +859,14 @@ def append_view_path(path)
def render(options = nil, extra_options = {}, &block) #:doc:
raise DoubleRenderError, "Can only render or redirect once per action" if performed?

validate_render_arguments(options, extra_options)
validate_render_arguments(options, extra_options, block_given?)

if options.nil?
return render(:file => default_template, :layout => true)
elsif options == :update
options = extra_options.merge({ :update => true })
elsif options.is_a?(String)
case options.index('/')
elsif options.is_a?(String) || options.is_a?(Symbol)
case options.to_s.index('/')
when 0
extra_options[:file] = options
when nil
Expand Down Expand Up @@ -1193,8 +1193,8 @@ def render_for_text(text = nil, status = nil, append_response = false) #:nodoc:
end
end

def validate_render_arguments(options, extra_options)
if options && options != :update && !options.is_a?(String) && !options.is_a?(Hash)
def validate_render_arguments(options, extra_options, has_block)
if options && (has_block && options != :update) && !options.is_a?(String) && !options.is_a?(Hash) && !options.is_a?(Symbol)
raise RenderError, "You called render with invalid options : #{options.inspect}"
end

Expand Down
11 changes: 10 additions & 1 deletion actionpack/test/controller/render_test.rb
Expand Up @@ -304,6 +304,10 @@ def layout_test_with_different_layout_and_string_action
render "hello_world", :layout => "standard"
end

def layout_test_with_different_layout_and_symbol_action
render :hello_world, :layout => "standard"
end

def rendering_without_layout
render :action => "hello_world", :layout => false
end
Expand Down Expand Up @@ -1057,11 +1061,16 @@ def test_layout_test_with_different_layout
assert_equal "<html>Hello world!</html>", @response.body
end

def test_layout_test_with_different_layout
def test_layout_test_with_different_layout_and_string_action
get :layout_test_with_different_layout_and_string_action
assert_equal "<html>Hello world!</html>", @response.body
end

def test_layout_test_with_different_layout_and_symbol_action
get :layout_test_with_different_layout_and_symbol_action
assert_equal "<html>Hello world!</html>", @response.body
end

def test_rendering_without_layout
get :rendering_without_layout
assert_equal "Hello world!", @response.body
Expand Down

1 comment on commit 80307c8

@imownbey
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank jesus

Please sign in to comment.