diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-19 12:56:31 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-12-19 12:56:31 +0000 |
commit | eeae1eecb9d02c4a3d8cf8436503f594acd8b302 (patch) | |
tree | 41383b455ca9fd00eaaa330c8519fae3909d6360 /actionpack | |
parent | d19b1810db071ac9b4f8e8eb954ea539b0295df9 (diff) | |
download | rails-eeae1eecb9d02c4a3d8cf8436503f594acd8b302.tar.gz rails-eeae1eecb9d02c4a3d8cf8436503f594acd8b302.tar.bz2 rails-eeae1eecb9d02c4a3d8cf8436503f594acd8b302.zip |
Added documentation for automatic layout inclusion #328 [Marcel]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@220 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/layout.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/layout.rb b/actionpack/lib/action_controller/layout.rb index 25c0afd83b..6785967208 100644 --- a/actionpack/lib/action_controller/layout.rb +++ b/actionpack/lib/action_controller/layout.rb @@ -114,6 +114,15 @@ module ActionController #:nodoc: # If you have a layout that by default is applied to all the actions of a controller, you still have the option to rendering # a given action without a layout. Just use the method <tt>render_without_layout</tt>, which works just like Base.render -- # it just doesn't apply any layouts. + # + # == Automatic layout assignment + # + # If there is a template in <tt>app/views/layouts/</tt> with the same name as the current controller then it will be automatically + # set as that controller's layout unless explicitly told otherwise. Say you have a WeblogController, for example. If a template named + # <tt>app/views/layouts/weblog.rhtml</tt> or <tt>app/views/layouts/weblog.rxml</tt> exists then it will be automatically set as + # the layout for your WeblogController. You can create a layout with the name <tt>application.rhtml</tt> or <tt>application.rxml</tt> + # and this will be set as the default controller if there is no layout with the same name as the current controller and there is + # no layout explicitly assigned with the +layout+ method. Setting a layout explicity will always override the automatic behaviour. module ClassMethods # If a layout is specified, all actions rendered through render and render_action will have their result assigned # to <tt>@content_for_layout</tt>, which can then be used by the layout to insert their contents with |