Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adding documentation to actionview so that the big picture of the | wangjohn | 2013-04-18 | 1 | -0/+15 |
| | | | | renderer is clearer. | ||||
* | Common behavior with adding formats to lookup_context for TemplateRenderer ↵ | Dmitry Vorotilin | 2012-07-18 | 1 | -0/+6 |
| | | | | and PartialRenderer | ||||
* | :update_details method no more exists on @lookup_context | Akira Matsuda | 2012-06-26 | 1 | -2/+1 |
| | | | | the method has gone in this commit: 119e9e2dafb0cdc5b85613b730333679aef534af | ||||
* | Improve and cleanup a bit partial renderer | Carlos Antonio da Silva | 2012-05-12 | 1 | -3/+1 |
| | | | | | | | | | | * Remove template assignment: there is no need for this assignment, given we are rendering a collection with possibly different templates, and a second call to render (with the same instance) would behave differently if the template is set. * Remove segments array in favor of Array#map * Use local vars whenever possible * Cache local template keys, remove defaults from find_template | ||||
* | format lookup for partials is derived from the format in which the template ↵ | Santiago Pastorino | 2012-02-22 | 1 | -1/+1 |
| | | | | | | is being rendered Closes #5025 part 2 | ||||
* | Whitespaces :scissors: | Rafael Mendonça França | 2012-01-05 | 1 | -2/+2 |
| | |||||
* | Change more Array.wrap to Kernel#Array | Rafael Mendonça França | 2012-01-05 | 1 | -1/+1 |
| | |||||
* | Remove deprecation warnings from Action Pack. | José Valim | 2011-12-20 | 1 | -12/+0 |
| | |||||
* | Using #extract_details in PartialRenderer, too! | Nick Sutterer | 2011-09-23 | 1 | -2/+0 |
| | |||||
* | Allow both sym and array for details options in #render. using ↵ | Nick Sutterer | 2011-09-23 | 1 | -1/+12 |
| | | | | LC#registered_details to extract options. | ||||
* | Deprecate passing the template handler in the template name. | José Valim | 2011-09-22 | 1 | -1/+1 |
| | | | | | | For example, calling hello.erb is now deprecated. Since Rails 3.0 passing the handler had no effect whatsover. This commit simply deprecates such cases so we can clean up the code in later releases. | ||||
* | Get rid of update_details in favor of passing details to find_template. | José Valim | 2011-09-22 | 1 | -10/+6 |
| | |||||
* | no @controller dependency in Renderers. | Nick Sutterer | 2011-05-04 | 1 | -2/+1 |
| | |||||
* | Remove view dependency from AV::Renderer. | José Valim | 2011-05-01 | 1 | -2/+2 |
| | |||||
* | Start abstracting the renderer. | José Valim | 2011-05-01 | 1 | -2/+2 |
| | |||||
* | extract formats_regexp as a method | Santiago Pastorino | 2010-10-16 | 1 | -2/+5 |
| | |||||
* | There's no need now to expose lookup_context as an external API | Santiago Pastorino | 2010-10-16 | 1 | -3/+1 |
| | |||||
* | Delegate freeze_formats to lookup_context | Santiago Pastorino | 2010-10-16 | 1 | -2/+2 |
| | |||||
* | Remove the :vew attr_reader from ActionView::AbstractRenderer [#5819 ↵ | Jeff Kreeftmeijer | 2010-10-16 | 1 | -1/+1 |
| | | | | | | state:resolved] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Add support to render :once. | José Valim | 2010-10-10 | 1 | -6/+6 |
| | | | | 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é Valim | 2010-10-10 | 1 | -0/+36 |
This commit moves all the template rendering logic that was hanging around AV::Base to renderer objects. |