aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/layout.rb
Commit message (Expand)AuthorAgeFilesLines
* Consistent public/protected/private visibility for chained methods. Closes #7...Jeremy Kemper2007-03-131-19/+20
* Options are more often than not meaningless babble, just go nondescript insteadDavid Heinemeier Hansson2007-03-011-2/+2
* Added .erb and .builder as preferred aliases to the now deprecated .rhtml and...David Heinemeier Hansson2007-02-201-3/+3
* Allow Controllers to have multiple view_paths instead of a single template_ro...Rick Olson2007-02-041-7/+12
* Make RDoc not spew errors on install because of HTML comments in code commentsDavid Heinemeier Hansson2006-12-311-4/+4
* Ensure render :json => ... skips the layout. Closes #6808 [Josh Peek]Rick Olson2006-12-191-1/+1
* Deprecate @responseJeremy Kemper2006-09-291-1/+1
* New dependencies implementationNicholas Seckar2006-08-081-1/+0
* Added exception handling of missing layouts (closes #5373) [chris@ozmm.org]David Heinemeier Hansson2006-07-051-0/+2
* Add layout attribute to response object with the name of the layout that was ...Marcel Molina2006-05-171-0/+1
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ...Marcel Molina2006-04-291-2/+3
* Update layout and content_for documentation to use yield rather than magic @c...Marcel Molina2006-04-251-5/+7
* Performance speedup for ActionController (closes #4174) [Stefan Kaes] Include...David Heinemeier Hansson2006-03-201-2/+7
* Simplify controller_pathNicholas Seckar2006-03-131-3/+22
* Rendering xml shouldnt happen inside any layout. Added class proxying to RJS,...David Heinemeier Hansson2006-03-131-1/+1
* Replace dubious controller parent class in filter docs. Closes #3655, #3722.Marcel Molina2006-02-081-4/+6
* Added reusable reloading support through the inclusion of the Relodable modul...David Heinemeier Hansson2006-01-291-4/+5
* Fix render(:update) to not render layoutsSam Stephenson2006-01-231-0/+1
* Change layout discovery to take into account the change in semantics with Fil...Marcel Molina2006-01-221-1/+1
* Add render :update for inline RJSSam Stephenson2006-01-201-4/+4
* Automatically discover layouts when a controller is namespaced. Closes #2199,...Marcel Molina2006-01-151-4/+9
* Allow auto-discovery of third party template library layouts.Marcel Molina2006-01-121-2/+2
* Don't include a layout when rendering an rjs template using render's :templat...Marcel Molina2005-12-171-1/+1
* Correct docs for automatic layout assignment. Closes #2610.Marcel Molina2005-11-201-1/+3
* Make rjs templates always implicitly skip out on layouts.Marcel Molina2005-11-181-5/+7
* Fix that render :text didn't interpolate instance variables (Closes #2629, #2...David Heinemeier Hansson2005-10-281-0/+1
* Fixed docs (closes #2468)David Heinemeier Hansson2005-10-261-1/+1
* Make sure :layout => false is always used when rendering inside a layoutJamis Buck2005-08-051-1/+2
* Improved performance of test app req/sec with ~10% refactoring the render met...David Heinemeier Hansson2005-07-241-30/+40
* Improved performance with 5-30% through a series of Action Pack optimizations...David Heinemeier Hansson2005-07-231-1/+1
* Made documentation ready for release (AP)David Heinemeier Hansson2005-07-061-3/+3
* Partly tuned docs for release (AP)David Heinemeier Hansson2005-07-061-1/+1
* render(:template) applies a layout by default. render("foo/bar") works with a...Jamis Buck2005-06-151-2/+2
* render(:action) and render() are the only two render calls to use a layout by...Jamis Buck2005-06-011-6/+4
* render(:inline) defaults to :layout => falseJamis Buck2005-05-301-2/+2
* render(:text), render(:partial), and render(:nothing) always default to :layo...Jamis Buck2005-05-301-5/+17
* render :nothing shouldnt cause layoutsDavid Heinemeier Hansson2005-05-221-1/+1
* Cure some ills discovered with the refactoringDavid Heinemeier Hansson2005-05-221-29/+21
* Deprecated all render_* methods in favor of consolidating all rendering behav...David Heinemeier Hansson2005-05-221-11/+10
* Deprecated redirect_to_path and redirect_to_url in favor of letting redirect_...David Heinemeier Hansson2005-05-221-3/+31
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-071-2/+2
* Added conditional layouts like <tt>layout "weblog_standard", :except => :rss<...David Heinemeier Hansson2005-01-111-21/+63
* Added documentation for using render_with_layoutDavid Heinemeier Hansson2004-12-291-0/+16
* Added documentation for automatic layout inclusion #328 [Marcel]David Heinemeier Hansson2004-12-191-0/+9
* Added that controllers will now search for a layout in $template_root/layouts...David Heinemeier Hansson2004-12-151-1/+15
* InitialDavid Heinemeier Hansson2004-11-241-0/+149