aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/render/layouts.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove locals dependency from template.José Valim2010-10-071-2/+2
| | | | | | This means that templates does not need to store its source anymore, allowing us to reduce the ammount of memory taken by our Rails processes. Naively speaking, if your app/views contains 2MB of files, each of your processes (after being hit by a bunch of requests) will take 2MB less of memory after this commit. This is extremely important for the upcoming features. Since Rails will also render CSS and JS files, their source won't be stored as well allowing us to decrease the ammount of memory taken.
* layout_for works again with objects as specified in the documentation and ↵José Valim & Carlos Antonio da Silva2010-08-111-4/+8
| | | | Rails 2.3 [#5357 state:resolved]
* Added title to some other files in actionpack/lib/action_viewRizwan Reza2010-06-161-0/+1
|
* Fix a bunch of minor spelling mistakesEvgeniy Dolzhenko2010-06-111-1/+1
|
* Make AP test suite green once again and speed up performance in layouts ↵José Valim2010-06-071-12/+3
| | | | lookup for some cases.
* Formats should always be an array.Jeremy Kemper2010-06-061-1/+1
|
* Layout contents are html-safeJeremy Kemper2010-04-091-1/+1
|
* <% yield to <%= yield in rdoc of _layout_for, and copy-edits it now that we ↵Xavier Noria2010-04-051-17/+31
| | | | are on it
* Merge branch 'master' into docrailswycats2010-03-261-3/+14
|\
| * Improve performance of the rendering stack by freezing formats as a sign ↵José Valim2010-03-191-1/+1
| | | | | | | | that they shouldn't be further modified.
| * Fix rendering of HTML partials inside JS templates [#4197 status:resolved]José Valim2010-03-161-3/+14
| |
* | Merge remote branch 'mainstream/master'Pratik Naik2010-03-151-6/+3
|\|
| * Finish cleaning up rendering stack from views and move assigns evaluation to ↵José Valim2010-03-121-4/+1
| | | | | | | | controller (so plugins and/or controllers can overwrite just one method).
| * Allow anything that responds to render to be given as :template and use ↵José Valim2010-03-121-2/+2
| | | | | | | | find_template instead of find in views.
* | Updated documentation for block helpers in render/layouts.rbJeroen van Dijk2010-03-121-2/+2
|/
* Clean LookupContext API.José Valim2010-03-081-2/+2
|
* Speed up performance in resolvers by adding fallbacks just when required.José Valim2010-03-081-1/+2
|
* Rename Template::Lookup to LookupContext.José Valim2010-03-081-2/+2
|
* More refactoring on the views side of rendering.José Valim2010-03-081-0/+64