aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderer/template_renderer.rb
Commit message (Collapse)AuthorAgeFilesLines
* Common behavior with adding formats to lookup_context for TemplateRenderer ↵Dmitry Vorotilin2012-07-181-2/+3
| | | | and PartialRenderer
* fix some accidental nilsAaron Patterson2012-06-221-2/+2
|
* fix typo in render_template [ci skip]Brent Vatne2012-05-291-1/+1
|
* Set proper rendered_format when doing render :inlineSantiago Pastorino2012-03-281-2/+2
| | | | Closes #5632
* Just change the formats on first render, closes #5307, closes #5308.José Valim2012-03-071-2/+7
|
* format lookup for partials is derived from the format in which the template ↵Santiago Pastorino2012-02-221-1/+2
| | | | | | is being rendered Closes #5025 part 2
* Change more Array.wrap to Kernel#ArrayRafael Mendonça França2012-01-051-1/+0
|
* raises an ArgumentError if no valid options are given to ↵Lucas Mazza2011-12-211-0/+2
| | | | TemplateRenderer#determine_template
* Remove deprecation warnings from Action Pack.José Valim2011-12-201-1/+0
|
* Fix another regression related to the layout optimization.José Valim2011-12-081-0/+2
|
* Fix a regression and also fix broken test.José Valim2011-12-081-4/+9
|
* Optimize layout lookup to avoid double calls.José Valim2011-12-081-7/+14
|
* Allow both sym and array for details options in #render. using ↵Nick Sutterer2011-09-231-1/+1
| | | | LC#registered_details to extract options.
* Get rid of update_details in favor of passing details to find_template.José Valim2011-09-221-15/+12
|
* it is now possible to pass details options (:formats, :details, :locales, ↵Nick Sutterer2011-09-221-2/+3
| | | | ...) to #render, #find_template and friends. this doesn't change anything in global context.
* remove warning: assigned but unused variableSantiago Pastorino2011-06-081-1/+1
|
* Also allow prefixes as third argument to lookup context.José Valim2011-05-041-1/+1
|
* Remove view dependency from AV::Renderer.José Valim2011-05-011-1/+3
|
* More cleanup and moving responsibilities around.José Valim2011-05-011-1/+1
|
* Yo dawg, I heard you like streaming. So I put a fiber, inside a block, ↵José Valim2011-04-161-1/+0
| | | | inside a body, so you can stream.
* Initial work on fibered layout.José Valim2011-04-161-2/+2
|
* render :once, YAGNI.José Valim2011-04-151-25/+0
|
* Final tidy up on templates inheritance.José Valim2010-12-271-1/+1
|
* all tests passartemave2010-12-261-2/+2
|
* #948 template_inheritanceartemave2010-12-261-2/+2
|
* Deprecate handler_class_for_extension as template handlers can be any Ruby ↵José Valim2010-12-011-1/+1
| | | | object, not necessarily a class.
* Delegate freeze_formats to lookup_contextSantiago Pastorino2010-10-161-2/+2
|
* Remove :cache => true on lookup templates initialization.José Valim2010-10-141-1/+1
|
* render :once should consider the current controller prefix.José Valim2010-10-141-1/+2
|
* Use identifiers for template equality.José Valim2010-10-101-1/+1
|
* Add support to render :once.José Valim2010-10-101-18/+49
| | | | This will be used internally by sprockets to ensure requires are executed just once.
* Clean up the house before moving in the new furniture.José Valim2010-10-101-0/+66
This commit moves all the template rendering logic that was hanging around AV::Base to renderer objects.