Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Using #extract_details in PartialRenderer, too! | Nick Sutterer | 2011-09-23 | 1 | -1/+1 |
| | |||||
* | Get rid of update_details in favor of passing details to find_template. | José Valim | 2011-09-22 | 1 | -12/+11 |
| | |||||
* | Rename new method to_path to to_partial_path to avoid conflicts with ↵ | José Valim | 2011-08-01 | 1 | -3/+3 |
| | | | | File#to_path and similar. | ||||
* | Move the cache to a nested hash which performs better than a hash with array ↵ | José Valim | 2011-07-28 | 1 | -11/+17 |
| | | | | as keys. | ||||
* | Let ActiveModel instances define partial paths. | Grant Hutchins & Peter Jaros | 2011-07-25 | 1 | -21/+22 |
| | | | | | | Deprecate ActiveModel::Name#partial_path. Now you should call #to_path directly on ActiveModel instances. | ||||
* | - added ActionView::PartialRenderer#merge_path_into_partial(path, partial) | Gaston Ramos | 2011-07-24 | 1 | -2/+16 |
| | | | | fix issues/1951 | ||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-07-23 | 1 | -20/+11 |
|\ | |||||
| * | Documentation fixes for rendering partials | Olek Janiszewski | 2011-07-09 | 1 | -20/+11 |
| | | |||||
* | | Checking with to_s. As regexp fail with 1.8.7 | Arun Agrawal | 2011-07-18 | 1 | -2/+1 |
| | | |||||
* | | Added view template invalid name check, along with tests. No merges in commit. | huskins | 2011-07-13 | 1 | -0/+6 |
|/ | |||||
* | no @controller dependency in Renderers. | Nick Sutterer | 2011-05-04 | 1 | -7/+3 |
| | |||||
* | Remove view dependency from AV::Renderer. | José Valim | 2011-05-01 | 1 | -34/+35 |
| | |||||
* | Remove more dependencies from the view. | José Valim | 2011-05-01 | 1 | -4/+10 |
| | |||||
* | Start abstracting the renderer. | José Valim | 2011-05-01 | 1 | -1/+216 |
| | |||||
* | Yo dawg, I heard you like streaming. So I put a fiber, inside a block, ↵ | José Valim | 2011-04-16 | 1 | -2/+0 |
| | | | | inside a body, so you can stream. | ||||
* | Initial work on fibered layout. | José Valim | 2011-04-16 | 1 | -1/+1 |
| | |||||
* | 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 | 1 | -1/+1 |
| | |||||
* | all tests pass | artemave | 2010-12-26 | 1 | -1/+1 |
| | |||||
* | #948 template_inheritance | artemave | 2010-12-26 | 1 | -2/+2 |
| | |||||
* | 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] | ||||
* | render :once should consider the current controller prefix. | José Valim | 2010-10-14 | 1 | -2/+2 |
| | |||||
* | Add support to render :once. | José Valim | 2010-10-10 | 1 | -4/+3 |
| | | | | 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/+167 |
This commit moves all the template rendering logic that was hanging around AV::Base to renderer objects. |