aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/partials.rb
Commit message (Expand)AuthorAgeFilesLines
* Changed the default of ActionView#render to assume partials instead of files ...David Heinemeier Hansson2008-11-191-0/+32
* Dup local assigns for partial collections so nil values doesn't get overwritt...Joshua Peek2008-10-301-1/+1
* Moved layout exemption logic into the viewJoshua Peek2008-08-311-1/+1
* The view context always responds to controller, check if controller available...Joshua Peek2008-08-251-1/+1
* Ensure :partial => @collection and :collection => @collection behaves same. [...Ryan Bates2008-08-221-1/+1
* Tidy up pick partial template logicJoshua Peek2008-08-211-18/+12
* Cleanup around partial renderingRyan Bates2008-08-211-33/+50
* Return nil instead of a space when passing an empty collection or nil to 'ren...Ryan Bates2008-08-191-1/+1
* pass yielded arguments to block for ActionView::Base#render with :layout [#84...Ryan Bates2008-08-171-2/+36
* Fix rendering partials at the top level [#795 state:resolved]Joshua Peek2008-08-131-1/+1
* Fixed bc5896e, and added test case for the caching bug it originally introduced.Joshua Peek2008-07-231-4/+5
* Revert 'bc5896e'Joshua Peek2008-07-231-5/+4
* Memoize ActionView::Base pick_template and find_partial_path for rendering du...Joshua Peek2008-07-221-4/+5
* Eager load Partial variable_name and counter_name. Tidy up render_partial_col...Joshua Peek2008-07-141-24/+9
* Refactor template preloading. New abstractions include Renderable mixins and ...Joshua Peek2008-07-121-22/+36
* Add :as option to render a collection of partials with a custom local variabl...Pratik Naik2008-07-021-7/+7
* Make render shorthands work with namespaced controllersJacek Becela2008-05-101-2/+2
* Improve documentation coverage and markupXavier Noria2008-05-021-1/+1
* Capture view errors in ActionView::Template.Nathan Weizenbaum2008-05-021-1/+1
* Fixed render :partial => @collection.named_scope (nkallen) [#61 state:resolved]David Heinemeier Hansson2008-04-301-1/+1
* Remove unnecessary arguments. References #11491.Pratik Naik2008-04-011-4/+4
* Support render :partial => collection of heterogeneous elements. Closes #11491.Jeremy Kemper2008-04-011-7/+25
* Refactor partial rendering into a PartialTemplate class. [Pratik]Michael Koziarski2008-03-031-80/+14
* Fix problem with render :partial collections, records, and locals. #11057 [lo...Marcel Molina2008-02-081-2/+2
* Cache partial variable names to reduce garbageJeremy Kemper2008-02-031-1/+3
* Use File.join to construct partial path. Closes #10932 [patrick.t.joyce]Michael Koziarski2008-01-271-3/+4
* Make render :partial recognise form builders and use the _form partial. Clos...Michael Koziarski2008-01-161-0/+3
* Only Benchmark and log if we're going to output the information.Michael Koziarski2007-11-141-1/+1
* Fixed that has_many :through associations should render as collections too (c...David Heinemeier Hansson2007-11-121-1/+1
* Partials also set 'object' to the default partial variable. Closes #8823.Jeremy Kemper2007-10-251-6/+8
* Stop rdoc from whiningDavid Heinemeier Hansson2007-09-241-5/+5
* Remove deprecated functionality from actionpack. Closes #8958 [lifofifo]Michael Koziarski2007-09-031-15/+7
* Added partial layouts (see example in action_view/lib/partials.rb) [DHH]David Heinemeier Hansson2007-08-021-0/+57
* Allow you to render views with periods in the name. Closes #8076 [norbert]Rick Olson2007-07-011-4/+10
* render :partial recognizes Active Record associations as Arrays. Closes #8538.Jeremy Kemper2007-06-011-1/+1
* Clean up the simply_helpful merge.Jeremy Kemper2007-05-181-9/+24
* Deprecation: privatize deprecated render_partial and render_partial_collectio...Jeremy Kemper2007-03-131-43/+43
* Added .erb and .builder as preferred aliases to the now deprecated .rhtml and...David Heinemeier Hansson2007-02-201-5/+5
* Inline a method used by render_partial. Closes #2881.Jeremy Kemper2005-11-171-9/+6
* Avoid logging code if logger is nil. Closes #2881.Jeremy Kemper2005-11-161-4/+15
* Fixed that an instance variable with the same name as a partial should be imp...Sam Stephenson2005-10-101-1/+6
* Better logging about partials when logger to to debugDavid Heinemeier Hansson2005-10-011-1/+3
* Streamline render process, code cleaning. Closes #2294.Nicholas Seckar2005-09-271-1/+1
* Fixed that render :partial would fail when :object was a Hash (due to backwar...David Heinemeier Hansson2005-09-091-1/+1
* Make rendering an empty partial collection behave like :nothing => true #2080...Jamis Buck2005-09-011-1/+1
* Fixed bug when a partial render was passing a local with the same name as the...David Heinemeier Hansson2005-07-271-1/+1
* Improved performance of test app req/sec with ~10% refactoring the render met...David Heinemeier Hansson2005-07-241-4/+8
* Added note about render_partial_collection #1557David Heinemeier Hansson2005-07-031-0/+3
* Updated documentation for partials #1171David Heinemeier Hansson2005-06-211-7/+9
* Fixed that render_partial_collection should always return a string (and not s...David Heinemeier Hansson2005-05-131-1/+2