Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove :cache => true on lookup templates initialization. | José Valim | 2010-10-14 | 1 | -1/+1 |
| | |||||
* | Do not allow templates coming from Fallback resolvers to store a virtual path. | José Valim | 2010-10-10 | 1 | -1/+1 |
| | |||||
* | Allow cache to be temporarily disabled through lookup_context. | José Valim | 2010-10-07 | 1 | -1/+12 |
| | |||||
* | Remove locals dependency from template. | José Valim | 2010-10-07 | 1 | -8/+8 |
| | | | | | | 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. | ||||
* | Added title to some other files in actionpack/lib/action_view | Rizwan Reza | 2010-06-16 | 1 | -0/+2 |
| | |||||
* | Fix case when rendering a partial inside RJS with inherited layout [#4786 ↵ | José Valim | 2010-06-07 | 1 | -1/+1 |
| | | | | state:resolved] | ||||
* | Make AP test suite green once again and speed up performance in layouts ↵ | José Valim | 2010-06-07 | 1 | -18/+33 |
| | | | | lookup for some cases. | ||||
* | Optimize LookupContext | wycats | 2010-06-04 | 1 | -10/+25 |
| | |||||
* | Fix ActionMailer test broken in 99d54599215c2a8cea7e57f609e8e578043d71b2 | José Valim | 2010-04-12 | 1 | -3/+10 |
| | |||||
* | Fixed that default locale templates should be used if the current locale ↵ | Carl Lerche | 2010-04-08 | 1 | -2/+2 |
| | | | | template is missing [DHH] | ||||
* | Ensure details are frozen after @details_keys lookup. The implementation ↵ | José Valim | 2010-03-27 | 1 | -4/+17 |
| | | | | waits to freeze until the last required moment, to avoid duping hashes. | ||||
* | Remove reference to unexistent methods and fix typo. | José Valim | 2010-03-26 | 1 | -1/+1 |
| | |||||
* | Improve performance of the rendering stack by freezing formats as a sign ↵ | José Valim | 2010-03-19 | 1 | -38/+34 |
| | | | | that they shouldn't be further modified. | ||||
* | Move more normalization up to the lookup context, so it does not have to ↵ | José Valim | 2010-03-16 | 1 | -6/+30 |
| | | | | repeat in every resolver. | ||||
* | Optimize DetailsKey generation. | José Valim | 2010-03-14 | 1 | -4/+5 |
| | |||||
* | Allow anything that responds to render to be given as :template and use ↵ | José Valim | 2010-03-12 | 1 | -0/+2 |
| | | | | find_template instead of find in views. | ||||
* | Make all AP tests pass for Ruby 1.9.1. | José Valim | 2010-03-12 | 1 | -8/+11 |
| | |||||
* | Add tests for lookup context. | José Valim | 2010-03-11 | 1 | -33/+33 |
| | |||||
* | Optimize and clean up how details key get expired. | José Valim | 2010-03-10 | 1 | -28/+29 |
| | |||||
* | Clean LookupContext API. | José Valim | 2010-03-08 | 1 | -5/+5 |
| | |||||
* | Bring AM up to date with new rendering stack. | José Valim | 2010-03-08 | 1 | -0/+5 |
| | |||||
* | Move details to lookup_context and make resolvers use the cache key. | José Valim | 2010-03-08 | 1 | -54/+103 |
| | |||||
* | Speed up performance in resolvers by adding fallbacks just when required. | José Valim | 2010-03-08 | 1 | -0/+16 |
| | |||||
* | Rename Template::Lookup to LookupContext. | José Valim | 2010-03-08 | 1 | -0/+80 |