| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Follow short name convention for test folder and just call it "abstract" | Joshua Peek | 2009-09-19 | 14 | -772/+0 |
| | | |||||
| * | All on one abstract_unit | Joshua Peek | 2009-09-19 | 4 | -4/+4 |
| | | |||||
| * | Merge abstract_controller/test_helper and new_base/test_helper since they ↵ | Joshua Peek | 2009-09-13 | 5 | -29/+5 |
| | | | | | are expected to run in the same testing sandbox | ||||
| * | Need to declare optional dependencies from AS | Joshua Peek | 2009-09-13 | 1 | -0/+3 |
| | | |||||
| * | Refactor ActionController to use find_template and template_exists? | Yehuda Katz + Carl Lerche | 2009-09-03 | 1 | -2/+2 |
| | | |||||
| * | Create new ActionController::Middleware class that will work as a normal ↵ | Yehuda Katz | 2009-08-26 | 4 | -81/+126 |
| | | | | | | | Rack middleware. * This initial implementation is a bit hackish, but it uses a normal middleware API so it's future-proof when we improve the internals. | ||||
| * | Rename find_by_parts and find_by_parts? to find and exists? | Yehuda Katz | 2009-08-07 | 2 | -3/+3 |
| | | |||||
| * | Renamed presenter to renderer, added some documentation and defined its API. | José Valim | 2009-08-07 | 3 | -6/+6 |
| | | |||||
| * | Move AbstractController to a top-level component | Yehuda Katz | 2009-08-06 | 1 | -1/+1 |
| | | |||||
| * | Rename ActionView::Template::Path ActionView::Resolver | Yehuda Katz + Carl Lerche | 2009-06-17 | 1 | -1/+1 |
| | | |||||
| * | Whoops, I guess we broke layouts ;) | Yehuda Katz + Carl Lerche | 2009-06-15 | 2 | -14/+0 |
| | | |||||
| * | Cleaning up and documenting AbstractController::Layouts | Yehuda Katz + Carl Lerche | 2009-06-09 | 2 | -4/+4 |
| | | |||||
| * | Writing comments to AbstractController | Yehuda Katz + Carl Lerche | 2009-06-08 | 4 | -43/+43 |
| | | |||||
| * | Further cleaning up new callbacks | Yehuda Katz | 2009-06-02 | 1 | -1/+1 |
| | | |||||
| * | Simplify callbacks to use less metaprogramming | Yehuda Katz | 2009-06-02 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of git@github.com:rails/rails | Jeremy Kemper | 2009-05-18 | 1 | -4/+3 |
| |\ | |||||
| | * | Refactored AbstractController to provide better hook points for overriding ↵ | Yehuda Katz + Carl Lerche | 2009-05-15 | 1 | -4/+3 |
| | | | | | | | | | aspects of action dispatching | ||||
| * | | Active Support dependencies | Jeremy Kemper | 2009-05-14 | 1 | -0/+1 |
| |/ | |||||
| * | Cherry-pick core extensions | Jeremy Kemper | 2009-05-13 | 1 | -2/+2 |
| | | |||||
| * | Fixed new callbacks to not call the action when a callback sets the response ↵ | Yehuda Katz + Carl Lerche | 2009-05-12 | 1 | -0/+19 |
| | | | | | body | ||||
| * | Merge branch 'master' into wip_abstract_controller | Yehuda Katz + Carl Lerche | 2009-05-11 | 5 | -8/+10 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: actionpack/lib/action_controller/abstract/callbacks.rb actionpack/lib/action_controller/abstract/renderer.rb actionpack/lib/action_controller/base/base.rb actionpack/lib/action_controller/dispatch/dispatcher.rb actionpack/lib/action_controller/routing/route_set.rb actionpack/lib/action_controller/testing/process.rb actionpack/test/abstract_controller/layouts_test.rb actionpack/test/controller/filters_test.rb actionpack/test/controller/helper_test.rb actionpack/test/controller/render_test.rb actionpack/test/new_base/test_helper.rb | ||||
| | * | Make module dependency DSL opt in | Joshua Peek | 2009-05-07 | 2 | -4/+4 |
| | | | |||||
| * | | More community code review :) | Yehuda Katz | 2009-05-11 | 4 | -31/+31 |
| | | | |||||
| * | | Renamed Base2 to Base and don't require old action_controller for new Base | Yehuda Katz + Carl Lerche | 2009-05-01 | 1 | -11/+2 |
| | | | |||||
| * | | Starting to get new_base to run on old tests | Yehuda Katz + Carl Lerche | 2009-05-01 | 1 | -2/+5 |
| | | | |||||
| * | | Modify new_base to use String action_names for back-compat | Yehuda Katz + Carl Lerche | 2009-05-01 | 1 | -1/+1 |
| | | | |||||
| * | | OMG, a lot of work | Yehuda Katz + Carl Lerche | 2009-05-01 | 2 | -14/+10 |
| |/ | |||||
| * | Refactor ActionView::Template | Yehuda Katz + Carl Lerche | 2009-04-27 | 1 | -1/+1 |
| | | | | | | | | | ActionView::Template is now completely independent from template storage, which allows different back ends such as the database. ActionView::Template's only responsibility is to take in the template source (passed in from ActionView::Path), compile it, and render it. | ||||
| * | Refactor ActionView::Path | Yehuda Katz + Carl Lerche | 2009-04-22 | 1 | -2/+2 |
| | | | | | | | | | * Decouple from ActionController and ActionMailer * Bring back localization support. * Prepare to decouple templates from the filesystem. * Prepare to decouple localization from ActionView * Fix ActionMailer to take advantage of ActionView::Path | ||||
| * | Reinstate Base#render_to_string. Introduce ↵ | Jeremy Kemper | 2009-04-21 | 1 | -0/+18 |
| | | | | | AbstractController#render_to_string which stringifies render_to_body. | ||||
| * | Rename render_to_string to render_to_body since it may return any ↵ | Jeremy Kemper | 2009-04-17 | 2 | -4/+4 |
| | | | | | Rack-compatible body, not just strings | ||||
| * | Get Base2 layouts to work :) | Yehuda Katz and Carl Lerche | 2009-04-07 | 1 | -2/+11 |
| | | |||||
| * | Layouts work in AbstractController. Add support for the rspec runner for T::U | Yehuda Katz and Carl Lerche | 2009-04-07 | 1 | -27/+92 |
| | | |||||
| * | Add depends_on, use, and setup to abstract up ideas about module inheritance. | Yehuda Katz and Carl Lerche | 2009-04-07 | 4 | -7/+7 |
| | | |||||
| * | In the middle of some refactoring... some fails due to changes in ↵ | Yehuda Katz and Carl Lerche | 2009-03-23 | 1 | -4/+98 |
| | | | | | AbstractController not yet reflected in ActionController tests | ||||
| * | Checkpoint | Yehuda Katz and Carl Lerche | 2009-03-23 | 2 | -0/+66 |
| | | |||||
| * | Finished implementing layout for render :text | Carl Lerche | 2009-03-23 | 2 | -2/+10 |
| | | |||||
| * | Get very basic layouts working. | Yehuda Katz | 2009-03-19 | 1 | -2/+14 |
| | | | | * Required small architecture change | ||||
| * | Working toward getting a basic AbstractController framework | Yehuda Katz | 2009-03-17 | 1 | -0/+70 |
| | | |||||
| * | Move Abstract stuff to autoload | Yehuda Katz | 2009-03-12 | 1 | -5/+6 |
| | | |||||
| * | Helpers with an initial test | Yehuda Katz | 2009-03-03 | 5 | -41/+64 |
| | | |||||
| * | Callbacks test | Yehuda Katz | 2009-02-27 | 1 | -0/+217 |
| | | |||||
| * | AbstractController now supports layouts and rendering | Yehuda Katz | 2009-02-27 | 9 | -1/+108 |
| | | |||||
| * | First, very early, AbstractController code. More to come | Yehuda Katz | 2009-02-24 | 2 | -0/+61 |
