aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/layout.rb
Commit message (Expand)AuthorAgeFilesLines
* Adding missing space to documentation of the layout method. Closes #7126 [ora...Marcel Molina2007-12-051-1/+1
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-4/+6
* Fixed that render template did not honor exempt_from_layout (closes #9698) [p...David Heinemeier Hansson2007-09-301-3/+3
* Fixed the layout defaults (closes #9564) [lifo]David Heinemeier Hansson2007-09-281-14/+19
* Added failing tests for iphoneDavid Heinemeier Hansson2007-09-251-4/+11
* Fixed that default layouts did not take the format into account #9564 [lifofifo]David Heinemeier Hansson2007-09-181-1/+3
* Random hits from the style naziDavid Heinemeier Hansson2007-09-091-1/+1
* Fix layout overriding response status. Closes #9476.Jeremy Kemper2007-09-081-1/+2
* Remove deprecated functionality from actionpack. Closes #8958 [lifofifo]Michael Koziarski2007-09-031-15/+7
* Find layouts even if they're not in the first view_paths directory. Closes #...Rick Olson2007-08-151-5/+3
* Add some performance enhancements to ActionView.Rick Olson2007-05-151-1/+0
* Allow layouts with extension of .html.erb. Closes #8032 [Josh Knowles]Rick Olson2007-04-121-1/+1
* 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