From cf965cda5c755b51292e7c959def80ea54ea41f8 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 7 Jul 2006 22:53:46 +0000 Subject: [PATCH] Clarify partial filename constraints. Closes #1161. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4581 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/base.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index e7fd6d8968..b90cf7f8bf 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -549,6 +549,9 @@ module ActionController #:nodoc: # # each win partial. # render :partial => "win", :collection => @wins, :spacer_template => "win_divider" # + # Note that the partial filename must also be a valid Ruby variable name, + # so e.g. 2005 and register-user are invalid. + # # _Deprecation_ _notice_: This used to have the signatures # render_partial(partial_path = default_template_name, object = nil, local_assigns = {}) and # render_partial_collection(partial_name, collection, partial_spacer_template = nil, local_assigns = {}).