aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/render
Commit message (Expand)AuthorAgeFilesLines
...
* Make rendering in ActionView happen through _render_template, as the renderin...José Valim2009-12-311-30/+14
* Remove ActionView inline logging to ActiveSupport::Notifications and create A...José Valim2009-12-261-8/+1
* More <%= render(@posts) %> optimization.José Valim2009-12-261-24/+20
* Optimize <%= render(@posts) %>.José Valim2009-12-261-4/+14
* Break instrumentation into several end-points so rendering of partials can be...José Valim2009-12-262-26/+40
* Wrap layout rendering in one method: _render_layout (this should make partial...José Valim2009-12-262-7/+7
* Dont introspect inline templates for the logger and cleanup a few styling issuesDavid Heinemeier Hansson2009-12-211-13/+9
* Fix @renderer warningJoshua Peek2009-12-011-10/+10
* When rendering layouts with blocks, use #capture to avoid assuming that the r...Nathan Weizenbaum2009-11-051-4/+2
* Remove ActionMailer helpers and rely on AbstractController one.José Valim2009-11-011-1/+1
* First pass at cleaning up action cachingYehuda Katz2009-10-281-1/+0
* Fix a bug where render :text could not handle yield :symbol. Fixes guides gen...Yehuda Katz2009-10-101-9/+13
* Fix issue with standalone ActionViewYehuda Katz2009-10-091-1/+4
* Switch to on-by-default XSS escaping for rails.Michael Koziarski2009-10-081-1/+1
* Ported the new ActionView::TestCase from 2-3-stable to master [#3260Erik Ostrom2009-09-281-0/+1
* Clean up log output for rendered templatesJoshua Peek2009-09-241-2/+2
* Fixes ActionMailer regression [#3059 state:resolved]Yehuda Katz2009-08-151-1/+1
* Caches and cache clearing seems to actually work, but the actual architecture...Yehuda Katz2009-08-151-49/+73
* More cleanup of ActionView and reduction in need for blocks in some cases:Yehuda Katz2009-08-152-24/+11
* Clean up ActionView some:Yehuda Katz2009-08-152-45/+22
* Tentatively accept the ":as or :object, but not both" solutionYehuda Katz2009-08-111-22/+21
* Further experimentation. Was able to cut the cost of rendering 100 partials i...Yehuda Katz2009-08-111-9/+40
* Cache some more things to improve partial perfYehuda Katz2009-08-091-3/+3
* Went from 25% slower partials (vs. 2.3) to 10% faster. More to come.Yehuda Katz2009-08-091-3/+7
* Clean up partial object some more; replace passing around a block to a single...Yehuda Katz2009-08-091-35/+39
* Clean up initializer and some of the internals of PartialRendererYehuda Katz2009-08-091-49/+41
* Ruby 1.9 compat: can't implicitly set instance var using block argJeremy Kemper2009-08-081-2/+2
* First pass at making partial rendering an Object. More cleanup to come.Yehuda Katz2009-08-082-62/+83
* Rename find_by_parts and find_by_parts? to find and exists?Yehuda Katz2009-08-072-3/+3
* Get all ActionController partial rendering to use ActionView's partial code. ...Yehuda Katz2009-08-071-0/+4
* WhitespaceYehuda Katz2009-08-071-7/+7
* Continue reworking the partial path.Yehuda Katz2009-08-072-47/+22
* Modify various partial methods to carry along the block that can be passed in...Yehuda Katz2009-08-072-42/+52
* Some more AV work:Yehuda Katz2009-08-072-26/+25
* Replace _render_template_with_layout with _render_template since the layout i...Yehuda Katz2009-08-072-11/+15
* Some more AV refactoring:Yehuda Katz2009-08-072-15/+6
* Start cleaning up partial pathYehuda Katz2009-08-072-9/+17
* This is handled by the resolver nowYehuda Katz2009-08-071-24/+5
* Clean up render @object a bit more.Yehuda Katz2009-08-071-6/+19
* Improve a path in _render_partialYehuda Katz2009-08-061-24/+23
* replace _render_*_from_controller with render_* as they are intended to be pu...Yehuda Katz2009-08-062-2/+2
* Simplify required "ActionView compliant" APIYehuda Katz2009-07-191-4/+2
* Remove deprecated implicit ivar assignmentJoshua Peek2009-06-251-26/+0
* Minor ActionView cleanupYehuda Katz + Carl Lerche2009-06-181-3/+1
* Fix typoYehuda Katz + Carl Lerche2009-06-181-1/+1
* Extract the layout proc into a method, and write documentation explaining wha...Yehuda Katz + Carl Lerche2009-06-171-5/+38
* Drive the final stake through @content_for_*'s heart!Yehuda Katz + Carl Lerche2009-06-172-25/+14
* Cleaning up if defined?(ActionController::Http) blocks from the pre new base ...Yehuda Katz + Carl Lerche2009-06-171-1/+0
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ...Joshua Peek2009-05-281-1/+1
* Implemented redirects and partial rendering in new base.Yehuda Katz + Carl Lerche2009-05-122-12/+25