Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use Object#singleton_class instead of #metaclass. Prefer Ruby's choice. | Jeremy Kemper | 2010-02-25 | 1 | -2/+2 |
| | |||||
* | Remove ActionController::Base.resources_path_names | Carl Lerche | 2010-02-24 | 1 | -7/+8 |
| | |||||
* | Makes send_file work again by deferring to Rack::Sendfile. | Carlhuda | 2010-02-23 | 1 | -0/+2 |
| | | | | | | | | | | * Add the Rack::Sendfile middleware * Make the header to use configurable via config.action_dispatch.x_sendfile_header (default to "X-Sendfile"). * Add Railties tests to confirm that these work * Remove the :stream, :buffer_size, and :x_senfile default options to send_file * Change the log subscriber to always say "Sent file" * Add deprecation warnings for options that are now no-ops Note that servers can configure this by setting X-Sendfile-Type. Hosting companies and those creating packages of servers specially designed for Rails applications are encouraged to specify this header so that this can work transparently. | ||||
* | Make AD::Response correctly handle bodies that respond_to?(:to_path) as per ↵ | Carlhuda | 2010-02-23 | 1 | -0/+12 |
| | | | | the Rack spec | ||||
* | Use ActionDispatch::Routing everywhere | Martin Schürrer | 2010-02-21 | 4 | -13/+19 |
| | |||||
* | Store compiled parameter filters so we don't have to compile them in each ↵ | José Valim | 2010-02-21 | 1 | -25/+40 |
| | | | | request. | ||||
* | Fix a bunch of pending tests by providing an introspection mode for the ↵ | Carlhuda | 2010-02-19 | 3 | -19/+41 |
| | | | | Response object that does up-front parsing of the headers to populate things like @etag | ||||
* | Revert behavior from a5684dfa3c16472bfa5d5d861ba78cb6dbadcb59 and ensure ↵ | José Valim | 2010-02-19 | 1 | -1/+1 |
| | | | | after_initializer is executed after to_prepare callbacks. | ||||
* | Rename router internal option :namespace to :controller_namespace which is ↵ | José Valim | 2010-02-17 | 1 | -3/+3 |
| | | | | its real purpose. | ||||
* | Merge master. | José Valim | 2010-02-17 | 1 | -1/+1 |
|\ | |||||
| * | rack-mount 0.5 support | Joshua Peek | 2010-02-15 | 1 | -1/+1 |
| | | |||||
* | | Make Railties tests green again. | José Valim | 2010-02-17 | 1 | -7/+12 |
| | | |||||
* | | AD::TestProcess relies on request.flash, so let's load it. | José Valim | 2010-02-16 | 1 | -0/+2 |
| | | |||||
* | | Should allow symbols in :only and :except in routes. | José Valim | 2010-02-16 | 1 | -5/+5 |
| | | |||||
* | | Do not swallow controller loading errors unless required. | José Valim | 2010-02-16 | 1 | -10/+4 |
|/ | |||||
* | Routes should not swallow all NameErrors [#3862 status:resolved]. | José Valim | 2010-02-06 | 1 | -1/+2 |
| | |||||
* | Routing Mapper with % interpolation on Ruby 1.9.1 fixed [#3837 status:resolved] | Santiago Pastorino and José Ignacio Costa | 2010-02-02 | 1 | -2/+1 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Make rdoc match current API | Sam Ruby | 2010-02-02 | 1 | -105/+47 |
| | | | | Signed-off-by: Mikel Lindsaar <raasdnil@gmail.com> | ||||
* | Deprecation notice for TestResponse#redirected_to | Joshua Peek | 2010-01-30 | 1 | -0/+5 |
| | |||||
* | Ensure root routes inside optional scopes works as expected. | José Valim | 2010-01-26 | 1 | -2/+3 |
| | |||||
* | As first step setup the load path and lazy compare middlewares. | José Valim | 2010-01-25 | 1 | -1/+13 |
| | |||||
* | Ensure metals and initializers in plugins are loaded. | José Valim | 2010-01-24 | 1 | -3/+0 |
| | |||||
* | Rename plugin_name to railtie_name and engine_name. | José Valim | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Ensure namespaced controllers in engines work. | José Valim | 2010-01-24 | 1 | -21/+7 |
| | |||||
* | Solve some pendencies. | José Valim | 2010-01-24 | 1 | -1/+1 |
| | |||||
* | Extract routes reloading responsibilities from application and load them ↵ | José Valim | 2010-01-23 | 2 | -13/+5 |
| | | | | just upon a request. | ||||
* | Make filter parameters based on request, so they can be modified for ↵ | José Valim | 2010-01-21 | 1 | -62/+66 |
| | | | | anything in the middleware stack. | ||||
* | Default to sync instrumentation. | José Valim | 2010-01-21 | 3 | -52/+0 |
| | |||||
* | Tidy up new filter_parameters implementation. | José Valim | 2010-01-21 | 3 | -89/+95 |
| | |||||
* | Move filter_parameter_logging logic out of the controller and create ↵ | Prem Sichanugrist | 2010-01-21 | 4 | -24/+90 |
| | | | | | | ActionDispatch::ParametersFilter to handle parameter filteration instead. This will make filteration not depending on controller anymore. Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Add AD::Route#to_s | Sam Ruby | 2010-01-20 | 1 | -0/+6 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Only send filtered_env for notifications | Joshua Peek | 2010-01-20 | 1 | -8/+9 |
| | |||||
* | Request#filter_parameters and filter_env | Joshua Peek | 2010-01-20 | 1 | -2/+24 |
| | |||||
* | Expose last controller in rack env["action_controller.instance"] | Joshua Peek | 2010-01-20 | 1 | -32/+6 |
| | |||||
* | Revert streaming params parser support. | Joshua Peek | 2010-01-19 | 1 | -3/+3 |
| | | | | | | | | | | AS Xml and Json parsers expect the request body to be a real IO object supporting methods like getc or ungetc which are not specified by the Rack spec and aren't supported by Passenger or the Rewindable input wrapper. We can restore functionality if the AS parsers are rewritten to support Racks subset of supported IO methods. | ||||
* | Cleanup middleware introspection output | Joshua Peek | 2010-01-19 | 1 | -3/+1 |
| | |||||
* | Disable ShowExceptions during integration tests | Joshua Peek | 2010-01-19 | 1 | -1/+3 |
| | |||||
* | Do not send rack.input or any other rack information to AD listeners. | José Valim | 2010-01-19 | 2 | -8/+15 |
| | |||||
* | Define named routes for other non-GET REST actions | Joshua Peek | 2010-01-19 | 1 | -4/+32 |
| | |||||
* | Prettier hash dump | Joshua Peek | 2010-01-18 | 1 | -3/+7 |
| | |||||
* | Show Rack env dump on exception page | Joshua Peek | 2010-01-18 | 1 | -1/+4 |
| | |||||
* | Accessing nonexistant cookies through the signed jar should not raise an | Joshua Peek | 2010-01-17 | 1 | -1/+3 |
| | | | | exception | ||||
* | Make local_request? to returns true when facing ::1 IPv6 address [#3257 ↵ | Prem Sichanugrist | 2010-01-17 | 1 | -2/+2 |
| | | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Fix resources_path_names branch which was sending an array as entity. [#3715 ↵ | José Valim | 2010-01-17 | 1 | -34/+25 |
| | | | | status:resolved] | ||||
* | Move middleware builder back to Rails::Rack::Metal without losing the new ↵ | José Valim | 2010-01-17 | 1 | -29/+0 |
| | | | | behavior. | ||||
* | Add ActionDispatch::Railties::Subscriber and finish tidying up the logging. | José Valim | 2010-01-17 | 2 | -0/+75 |
| | |||||
* | Add ActionDispatch::Notifications middleware. | José Valim | 2010-01-17 | 3 | -7/+26 |
| | |||||
* | Use backtrace cleaner for dev mode exception page | Joshua Peek | 2010-01-16 | 3 | -7/+22 |
| | |||||
* | Cookies middleware | Joshua Peek | 2010-01-16 | 2 | -1/+215 |
| | |||||
* | Merge docrails | Pratik Naik | 2010-01-17 | 2 | -11/+12 |
| |