Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Moved PolymorphicRoutes to ActionDispatch::Routing | Piotr Sarnacki | 2010-07-20 | 1 | -1/+0 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | No need to create a new module in the previous commit. | José Valim | 2010-07-19 | 1 | -1/+0 | |
| | ||||||
* | Exceptions from views should be rescued based on the original exception. If ↵ | Neeraj Singh | 2010-07-19 | 1 | -0/+1 | |
| | | | | | | | | a handler for original exception is missing then apply ActiveView::TemplateError [#2034 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | edit pass: the names of Rails components have a space, ie, "Active Record", ↵ | Xavier Noria | 2010-06-14 | 1 | -1/+1 | |
| | | | | not "ActiveRecord" | |||||
* | Move verification to a plugin as well: http://github.com/rails/verification.git | José Valim | 2010-04-10 | 1 | -1/+0 | |
| | ||||||
* | Move AC::UrlRewriter onto route set | Joshua Peek | 2010-03-09 | 1 | -1/+0 | |
| | ||||||
* | Remove a failed attempt at refactoring AC configuration | Carlhuda | 2010-03-03 | 1 | -1/+0 | |
| | ||||||
* | Actually move ImplicitRender into it's own file | Carl Lerche | 2010-03-03 | 1 | -0/+1 | |
| | ||||||
* | Continued effort to deglobalize the router | Carlhuda | 2010-02-25 | 1 | -1/+1 | |
| | ||||||
* | WIP: Remove the global router | Carlhuda | 2010-02-25 | 1 | -1/+1 | |
| | ||||||
* | ActionMailer should depend just on AbstractController. | José Valim | 2010-01-29 | 1 | -6/+4 | |
| | ||||||
* | Tidy up new filter_parameters implementation. | José Valim | 2010-01-21 | 1 | -1/+0 | |
| | ||||||
* | Move ActionController::Translation to AbstractController::Translation. | José Valim | 2010-01-20 | 1 | -1/+0 | |
| | ||||||
* | Move Dispatcher setup to Railties and add instrumentation hook. | José Valim | 2010-01-15 | 1 | -1/+1 | |
| | ||||||
* | Add subscriber for ActionPack and move all logging inside it. | José Valim | 2010-01-13 | 1 | -1/+1 | |
| | ||||||
* | Remove duplicated url_for code and move methods shared between ActionMailer ↵ | José Valim | 2010-01-07 | 1 | -1/+0 | |
| | | | | and ActionController up to AbstractController. | |||||
* | Autoload AC and AV test case classes | Joshua Peek | 2010-01-04 | 1 | -3/+5 | |
| | ||||||
* | ActionController::Logger should include AbstractController::Logger and sort ↵ | José Valim | 2009-12-31 | 1 | -7/+7 | |
| | | | | autoloads for easier readability. | |||||
* | controller_path is required by ActionView, so move it up to ↵ | José Valim | 2009-12-31 | 1 | -2/+0 | |
| | | | | AbstractController and refactor AbstractController::Layouts. | |||||
* | Flip deferrable autoload convention | Joshua Peek | 2009-12-22 | 1 | -56/+56 | |
| | ||||||
* | Make ActionMailer::Base inherit from AbstractController::Base | José Valim | 2009-12-22 | 1 | -0/+1 | |
| | | | | Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local> | |||||
* | Merge branch 'master' of github.com:rails/rails | David Heinemeier Hansson | 2009-12-20 | 1 | -2/+1 | |
|\ | ||||||
| * | Rename RackConvenience => RackDelegation | Joshua Peek | 2009-12-20 | 1 | -1/+1 | |
| | | ||||||
| * | Merge Session stuff into RackConvenience | Joshua Peek | 2009-12-20 | 1 | -1/+0 | |
| | | ||||||
* | | Rename RenderOptions to Renderers | David Heinemeier Hansson | 2009-12-20 | 1 | -1/+1 | |
|/ | ||||||
* | Renamed Redirector to Redirecting (its a module, not a class) | David Heinemeier Hansson | 2009-12-20 | 1 | -1/+1 | |
| | ||||||
* | Rename the RenderingController module to just plain Rendering | David Heinemeier Hansson | 2009-12-20 | 1 | -1/+1 | |
| | ||||||
* | Add active_support/ruby/shim to the default requirements for AP components | Yehuda Katz | 2009-12-20 | 1 | -1/+1 | |
| | ||||||
* | Fully expand relative rails framework paths and make sure we aren't | Joshua Peek | 2009-12-16 | 1 | -1/+3 | |
| | | | | adding any to the load path more than once. | |||||
* | Nearly all AC modules can be deferred | Joshua Peek | 2009-12-12 | 1 | -40/+44 | |
| | ||||||
* | Reorganize autoloads: | Carlhuda | 2009-12-02 | 1 | -55/+61 | |
| | | | | | | | | | | | | | | | | | | | | | * A new module (ActiveSupport::Autoload) is provide that extends autoloading with new behavior. * All autoloads in modules that have extended ActiveSupport::Autoload will be eagerly required in threadsafe environments * Autoloads can optionally leave off the path if the path is the same as full_constant_name.underscore * It is possible to specify that a group of autoloads live under an additional path. For instance, all of ActionDispatch's middlewares are ActionDispatch::MiddlewareName, but they live under "action_dispatch/middlewares/middleware_name" * It is possible to specify that a group of autoloads are all found at the same path. For instance, a number of exceptions might all be declared there. * One consequence of this is that testing-related constants are not autoloaded. To get the testing helpers for a given component, require "component_name/test_case". For instance, "action_controller/test_case". * test_help.rb, which is automatically required by a Rails application's test helper, requires the test_case.rb for all active components, so this change will not be disruptive in existing or new applications. | |||||
* | Extract #head into its own module and simplify it | Yehuda Katz | 2009-10-26 | 1 | -0/+1 | |
| | ||||||
* | Base setup for config object in AC. | Yehuda Katz | 2009-10-26 | 1 | -0/+1 | |
| | ||||||
* | Group together all the old routing dsl logic | Joshua Peek | 2009-10-20 | 1 | -1/+0 | |
| | ||||||
* | Move Routing into AD | Joshua Peek | 2009-10-20 | 1 | -8/+5 | |
| | ||||||
* | Replace decaying routing internals w/ rack-mount | Joshua Peek | 2009-10-19 | 1 | -3/+3 | |
| | ||||||
* | Resurrect AC::Benchmarking [#3140 state:resolved] | Joshua Peek | 2009-09-24 | 1 | -3/+4 | |
| | ||||||
* | SessionRestoreError belongs in AD | Joshua Peek | 2009-09-23 | 1 | -1/+0 | |
| | ||||||
* | Move integration test runner into ActionDispatch | Joshua Peek | 2009-09-23 | 1 | -1/+3 | |
| | ||||||
* | action_dispatch and action_view are just more autoloads, so its okay to ↵ | Joshua Peek | 2009-08-31 | 1 | -3/+2 | |
| | | | | require them | |||||
* | Create new ActionController::Middleware class that will work as a normal ↵ | Yehuda Katz | 2009-08-26 | 1 | -0/+1 | |
| | | | | | | 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. | |||||
* | Renamed ActionController::Renderer to ActionController::Responder and ↵ | José Valim | 2009-08-08 | 1 | -1/+1 | |
| | | | | ActionController::MimeResponds::Responder to ActionController::MimeResponds::Collector. | |||||
* | Renamed presenter to renderer, added some documentation and defined its API. | José Valim | 2009-08-07 | 1 | -2/+2 | |
| | ||||||
* | Move AbstractController to a top-level component | Yehuda Katz | 2009-08-06 | 1 | -1/+1 | |
| | ||||||
* | Rename /base to /metal and make base.rb and metal.rb top-level to reflect ↵ | Yehuda Katz | 2009-08-06 | 1 | -36/+36 | |
| | | | | their module locations | |||||
* | rename ActionController::Http to ActionController::Metal at Josh's suggestion | Yehuda Katz | 2009-08-06 | 1 | -1/+1 | |
| | ||||||
* | Centralize commonly used parts of AS in ActionController into ↵ | Yehuda Katz | 2009-07-15 | 1 | -3/+13 | |
| | | | | action_controller.rb | |||||
* | Remove exceptions from AbstractUnit so they work in real life | Yehuda Katz + Carl Lerche | 2009-06-16 | 1 | -0/+12 | |
| | ||||||
* | rm -r controller/base! | Yehuda Katz + Carl Lerche | 2009-06-15 | 1 | -9/+9 | |
| | ||||||
* | Get all of rake tests to pass | Yehuda Katz + Carl Lerche | 2009-06-15 | 1 | -0/+2 | |
| |