aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderable.rb
Commit message (Collapse)AuthorAgeFilesLines
* Consistently use the framework's configured logger and avoid reverting to ↵Joshua Peek2008-08-181-1/+1
| | | | RAILS_DEFAULT_LOGGER unless necessary.
* pass yielded arguments to block for ActionView::Base#render with :layout ↵Ryan Bates2008-08-171-1/+8
| | | | | | [#847 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Simplifying usage of ETags and Last-Modified and conditional GET requestsJeremy Kemper2008-08-071-3/+3
|
* Fixed bc5896e, and added test case for the caching bug it originally introduced.Joshua Peek2008-07-231-1/+1
|
* Set the response content type to that of found template if not explicitly ↵Tom Ward2008-07-181-1/+4
| | | | | | set elsewhere [#444 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Removed lagacy TemplateHandler#render API. Left in a legacy TemplateHandler ↵Joshua Peek2008-07-181-3/+3
| | | | and Compilable stub so plugins will not have to change anything.
* Changed ActiveSupport::Memoizable API to extend since it mainly adds the ↵Joshua Peek2008-07-181-2/+2
| | | | memoize class method
* Fixed template recompile logic [#630 state:resolved]Stefan Kaes2008-07-161-22/+31
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Removed config.action_view.cache_template_loading, use config.cache_classes ↵Joshua Peek2008-07-151-1/+1
| | | | instead
* memorize typoJoshua Peek2008-07-141-2/+2
|
* Include Memoizable in ActionView::TemplateJoshua Peek2008-07-141-9/+6
|
* Eager load Partial variable_name and counter_name. Tidy up ↵Joshua Peek2008-07-141-2/+7
| | | | render_partial_collection.
* Move dead recompile_template? alsoJeremy Kemper2008-07-141-5/+2
|
* Made ActionView::Base#first_render a little more private. And added ↵Joshua Peek2008-07-131-2/+2
| | | | _last_render to track the most recent render. Will fix #609 as a side effect. [#609 state:resolved]
* Refactor template preloading. New abstractions include Renderable mixins and ↵Joshua Peek2008-07-121-20/+61
| | | | a refactored Template class.
* Changed ActionView::TemplateHandler#render API method signature to ↵Joshua Peek2008-07-111-1/+1
| | | | render(template, local_assigns = {})
* Added local assign keys to compiled method name so two threads evaluating ↵Joshua Peek2008-07-061-1/+7
| | | | the same template with different locals don't step on top of each other
* Lookup compiled methods in CompiledTemplates instance methods set instead of ↵Joshua Peek2008-07-051-4/+3
| | | | using a "methods_names" hash
* Moved complied method name logic into RenderableJoshua Peek2008-07-051-0/+4
|
* Renamed Renderer to RenderableJoshua Peek2008-07-051-0/+29