aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/abstract
Commit message (Collapse)AuthorAgeFilesLines
* Simplify required "ActionView compliant" APIYehuda Katz2009-07-192-17/+8
|
* Fix AbstractController::Layouts to work when included directly on a controllerYehuda Katz2009-07-151-0/+1
|
* Centralize commonly used parts of AS in ActionController into ↵Yehuda Katz2009-07-153-3/+2
| | | | action_controller.rb
* Rename method to a more obvious nameYehuda Katz2009-07-111-2/+2
|
* Move the exceptions for missing template into Compatibility in prep for ↵Yehuda Katz + Carl Lerche2009-06-161-2/+0
| | | | moving it into a "not-production" module
* An exception is raised if a layout is missing only if the layout is missing ↵Yehuda Katz + Carl Lerche2009-06-161-0/+2
| | | | for all mimes
* Whoops, I guess we broke layouts ;)Yehuda Katz + Carl Lerche2009-06-151-0/+6
|
* Document and clean up HideActions and HttpYehuda Katz + Carl Lerche2009-06-101-6/+1
|
* Clean up AbstractController::Logger and write documentationYehuda Katz + Carl Lerche2009-06-091-4/+12
|
* Cleaning up and documenting AbstractController::LayoutsYehuda Katz + Carl Lerche2009-06-091-32/+82
|
* Write documentation for AbstractController::HelpersYehuda Katz + Carl Lerche2009-06-092-18/+37
|
* More documentation work on AbstractControllerYehuda Katz + Carl Lerche2009-06-083-17/+70
| | | This is still not completely done and there might be pointers to things that don't exist yet.
* Writing comments to AbstractControllerYehuda Katz + Carl Lerche2009-06-083-28/+147
|
* Remove extraneous response_objYehuda Katz + Carl Lerche2009-06-081-5/+0
|
* Further cleaning up new callbacksYehuda Katz2009-06-021-3/+3
|
* Simplify callbacks to use less metaprogrammingYehuda Katz2009-06-021-15/+15
|
* Get all the callback tests to work on new baseYehuda Katz + Carl Lerche2009-06-011-0/+6
|
* AS::Concern redefines "include" to lazy include modules as dependenciesJoshua Peek2009-05-295-5/+5
|
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ↵Joshua Peek2009-05-286-6/+6
| | | | "included" block DSL into separate modules. But, unify both approaches under AS::Concern.
* Revert "Revert "Whitespace!""Joshua Peek2009-05-288-62/+60
| | | This reverts commit 0cac68d3bed3e6bf8ec2eb994858e4a179046941.
* Added hook point in new base #send_action which does the actual action ↵Yehuda Katz + Carl Lerche2009-05-271-1/+3
| | | | method dispatching
* Add the ability to prepend filters to new callbacksCarl Lerche2009-05-271-0/+9
|
* Get controller/view_paths_test.rb to pass on new baseCarl Lerche2009-05-261-0/+4
|
* Make a couple more tests pass. Yehuda Katz2009-05-231-0/+11
| | | | | | | A large number of the remaining failing tests have to do with the semantics of filters that are Objects. The right solution is probably to just implement the filter/before/after semantics in NewCallbacks directly (the current semantics are based on the old AS::Callbacks specs)
* Slightly modify things to get content type matching working without breaking ↵Yehuda Katz2009-05-232-11/+11
| | | | other code
* Get controller/render_other_test.rb to pass on new base and fixed a bug in ↵Yehuda Katz + Carl Lerche2009-05-221-1/+1
| | | | new base with regards to rendering layouts.
* Get controller/layout_test.rb running on new base except for ↵Yehuda Katz + Carl Lerche2009-05-221-3/+3
| | | | ActionController::Base.exempt_from_layout which is going to be deprecated.
* Cleaned up the #render_to_body chain by extracting determining the templates ↵Yehuda Katz + Carl Lerche2009-05-222-13/+15
| | | | to render to a separate hook point.
* Add all the existing helpers related features to the new basePratik Naik2009-05-231-4/+23
|
* Implemented layout conditions in new baseYehuda Katz + Carl Lerche2009-05-211-3/+22
|
* Added responds_to to new base.Yehuda Katz + Carl Lerche2009-05-201-1/+6
|
* Ported simple benchmarking in new baseYehuda Katz + Carl Lerche2009-05-182-0/+29
|
* Refactored AbstractController to provide better hook points for overriding ↵Yehuda Katz + Carl Lerche2009-05-152-14/+17
| | | | aspects of action dispatching
* Merge commit 'origin/master'Yehuda Katz + Carl Lerche2009-05-142-1/+5
|\ | | | | | | | | | | Conflicts: actionpack/lib/action_controller/abstract/base.rb actionpack/lib/action_controller/routing.rb
| * Minimal base/new_base comparisonJeremy Kemper2009-05-142-3/+7
| |
* | Got new base to pass controller/base_test.rb, implemented method_missing ↵Yehuda Katz + Carl Lerche2009-05-142-2/+41
| | | | | | | | action semantics in compatibility mode, and fixed a few action_missing bugs.
* | Cleaning up more render testsYehuda Katz + Carl Lerche2009-05-141-0/+9
|/
* Implemented redirects and partial rendering in new base.Yehuda Katz + Carl Lerche2009-05-123-17/+24
|
* Fixed new callbacks to not call the action when a callback sets the response ↵Yehuda Katz + Carl Lerche2009-05-121-1/+1
| | | | body
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-115-14/+24
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * Revert "Whitespace!"Yehuda Katz + Carl Lerche2009-05-117-44/+50
| | | | | | | | This reverts commit a747ab5b20b9d543e9d311070e3b720c761ae716.
| * Whitespace!Joshua Peek2009-05-077-50/+44
| |
| * Prefer "included" language over "setup"Joshua Peek2009-05-074-12/+15
| |
| * Make module dependency DSL opt inJoshua Peek2009-05-074-2/+9
| |
* | Don't run the action if callbacks are halted.Yehuda Katz + Carl Lerche2009-05-111-1/+1
| | | | | | In AbstractController, this means that response_body is not empty
* | More community code review :)Yehuda Katz2009-05-113-12/+4
| |
* | Add support for stripping "layouts/" from the layout name Yehuda Katz + Carl Lerche2009-05-011-0/+3
| |
* | Modify new_base to use String action_names for back-compatYehuda Katz + Carl Lerche2009-05-012-6/+6
| |
* | Ported over the concept of public instance methods on controller child ↵Yehuda Katz + Carl Lerche2009-05-011-7/+41
| | | | | | | | classes as callable action methods
* | Support implicit render and blank renderYehuda Katz + Carl Lerche2009-05-012-3/+14
| |