Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Start abstracting the renderer. | José Valim | 2011-05-01 | 3 | -3/+288 |
| | |||||
* | Output a redirect to the 500 page if something happens when streaming. | José Valim | 2011-04-19 | 1 | -5/+6 |
| | | | | | | Currently, we output: "><script type="text/javascript">window.location = "/500.html"</script></html> | ||||
* | Fix CI test on 1.8 | José Valim | 2011-04-16 | 1 | -1/+4 |
| | |||||
* | Class docs. | José Valim | 2011-04-16 | 1 | -0/+47 |
| | |||||
* | Add more tests, ensure we never yield outside the fiber context and that we ↵ | José Valim | 2011-04-16 | 1 | -1/+1 |
| | | | | swap buffers when moving from parent to child. | ||||
* | Basic tests for streaming. Basic tests for provide. | José Valim | 2011-04-16 | 1 | -1/+1 |
| | |||||
* | Yo dawg, I heard you like streaming. So I put a fiber, inside a block, ↵ | José Valim | 2011-04-16 | 4 | -38/+79 |
| | | | | inside a body, so you can stream. | ||||
* | Initial work on fibered layout. | José Valim | 2011-04-16 | 3 | -3/+38 |
| | |||||
* | render :once, YAGNI. | José Valim | 2011-04-15 | 1 | -25/+0 |
| | |||||
* | Accept String value for render_partial :as option | Akira Matsuda | 2011-02-01 | 1 | -2/+2 |
| | | | | | | [#6222 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Final tidy up on templates inheritance. | José Valim | 2010-12-27 | 2 | -2/+2 |
| | |||||
* | all tests pass | artemave | 2010-12-26 | 2 | -3/+3 |
| | |||||
* | #948 template_inheritance | artemave | 2010-12-26 | 2 | -4/+4 |
| | |||||
* | Deprecate handler_class_for_extension as template handlers can be any Ruby ↵ | José Valim | 2010-12-01 | 1 | -1/+1 |
| | | | | object, not necessarily a class. | ||||
* | Make collection and collection_from_object methods return an array | Santiago Pastorino | 2010-11-13 | 1 | -3/+4 |
| | | | | | | This transforms for instance scoped objects into arrays and avoid unneeded queries [#5958 state:committed] | ||||
* | 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 | 2 | -4/+4 |
| | |||||
* | 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> | ||||
* | Remove :cache => true on lookup templates initialization. | José Valim | 2010-10-14 | 1 | -1/+1 |
| | |||||
* | render :once should consider the current controller prefix. | José Valim | 2010-10-14 | 2 | -3/+4 |
| | |||||
* | Use identifiers for template equality. | José Valim | 2010-10-10 | 1 | -1/+1 |
| | |||||
* | Add support to render :once. | José Valim | 2010-10-10 | 3 | -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é Valim | 2010-10-10 | 3 | -0/+269 |
This commit moves all the template rendering logic that was hanging around AV::Base to renderer objects. |