aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderer
Commit message (Collapse)AuthorAgeFilesLines
* Accept String value for render_partial :as optionAkira Matsuda2011-02-011-2/+2
| | | | | | [#6222 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Final tidy up on templates inheritance.José Valim2010-12-272-2/+2
|
* all tests passartemave2010-12-262-3/+3
|
* #948 template_inheritanceartemave2010-12-262-4/+4
|
* Deprecate handler_class_for_extension as template handlers can be any Ruby ↵José Valim2010-12-011-1/+1
| | | | object, not necessarily a class.
* Make collection and collection_from_object methods return an arraySantiago Pastorino2010-11-131-3/+4
| | | | | | This transforms for instance scoped objects into arrays and avoid unneeded queries [#5958 state:committed]
* extract formats_regexp as a methodSantiago Pastorino2010-10-161-2/+5
|
* There's no need now to expose lookup_context as an external APISantiago Pastorino2010-10-161-3/+1
|
* Delegate freeze_formats to lookup_contextSantiago Pastorino2010-10-162-4/+4
|
* Remove the :vew attr_reader from ActionView::AbstractRenderer [#5819 ↵Jeff Kreeftmeijer2010-10-161-1/+1
| | | | | | state:resolved] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Remove :cache => true on lookup templates initialization.José Valim2010-10-141-1/+1
|
* render :once should consider the current controller prefix.José Valim2010-10-142-3/+4
|
* Use identifiers for template equality.José Valim2010-10-101-1/+1
|
* Add support to render :once.José Valim2010-10-103-28/+58
| | | | 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-103-0/+269
This commit moves all the template rendering logic that was hanging around AV::Base to renderer objects.