Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Responder was removed at ee77770d57de9da87b05a2fe84b9d46ec6852c62 | Akira Matsuda | 2014-09-30 | 1 | -1/+0 |
| | |||||
* | When your templates change, browser caches bust automatically. | Jeremy Kemper | 2014-08-17 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | New default: the template digest is automatically included in your ETags. When you call `fresh_when @post`, the digest for `posts/show.html.erb` is mixed in so future changes to the HTML will blow HTTP caches for you. This makes it easy to HTTP-cache many more of your actions. If you render a different template, you can now pass the `:template` option to include its digest instead: fresh_when @post, template: 'widgets/show' Pass `template: false` to skip the lookup. To turn this off entirely, set: config.action_controller.etag_with_template_digest = false | ||||
* | Remove deprecated cattr_* requires | Genadi Samokovarov | 2013-12-03 | 1 | -1/+1 |
| | |||||
* | Remove BasicRendering tests | José Valim | 2013-09-09 | 1 | -1/+0 |
| | |||||
* | Load HTML in ActionView not ActionPack | Łukasz Strzałkowski | 2013-08-25 | 1 | -1/+0 |
| | | | | HTML Scanner is part of ActionView and it should be loaded along with it | ||||
* | Fist stab on basic rendering | Łukasz Strzałkowski | 2013-08-25 | 1 | -0/+1 |
| | |||||
* | Do not load AV inside AP | Łukasz Strzałkowski | 2013-08-25 | 1 | -8/+0 |
| | | | | Move that part to AV railtie | ||||
* | Remove deprecated constants autoload | Carlos Antonio da Silva | 2013-07-02 | 1 | -3/+0 |
| | | | | | These constants were removed in 4b97ce5eb16cc20207516387fba98bf577e2e281, but I forgot to remove the autoload calls :sparkles:. | ||||
* | Remove ActionController::RecordIdentifier was deprecated. | kennyj | 2013-06-01 | 1 | -4/+0 |
| | |||||
* | extract PerformanceTest into rails-performance_tests gem | Yves Senn | 2013-01-10 | 1 | -1/+0 |
| | |||||
* | Add config.action_controller.permit_all_attributes to bypass ↵ | Guillermo Iguaran | 2012-09-16 | 1 | -0/+1 |
| | | | | StrongParameters protection | ||||
* | Integrate ActionController::Parameters from StrongParameters gem | Guillermo Iguaran | 2012-09-16 | 1 | -0/+1 |
| | |||||
* | Sprockets-rails tests fail | Dmitry Vorotilin | 2012-09-01 | 1 | -1/+0 |
| | | | | | | | Method invalid_asset_host! was delegated to controller but sprockets compile assets in their own scope without controller. And if we set asset_host with second parameter it should raise error through invalid_asset_host!. But since controller is nil it cannot be reached. | ||||
* | Don't require action_dispatch in ActionView::UrlHelpers | Piotr Sarnacki | 2012-08-28 | 1 | -0/+4 |
| | | | | | | | | | | ActionDispatch::Routing::UrlFor was always required in UrlHelpers. This was changed by splitting previous implementation of UrlHelper into 2 modules: ActionView::Helpers::UrlHelper and ActionView::Routing::UrlHelper. The former one keeps only basic implementation of url_for. The latter adds features that allow to use routes and is only required when url_helpers or mounted_helpers are required. | ||||
* | Move action_controller/vendor/html-scanner to action_view | Piotr Sarnacki | 2012-08-28 | 1 | -1/+1 |
| | | | | | | This is another step in moving Action View's dependencies in Action Pack to Action View itself. Also, HtmlScanner seems to be better suited for views rather than controllers. | ||||
* | Deprecate ActionController::RecordIdentifier | Piotr Sarnacki | 2012-08-28 | 1 | -0/+4 |
| | |||||
* | Move ActionController::RecordIdentifier to ActionView | Piotr Sarnacki | 2012-08-28 | 1 | -4/+0 |
| | | | | | | | Since it's more about DOM classes and ids it belongs to Action View better. What's more, it's more convenient to make it part of Action View to follow the rule that Action Pack can depend on Action View, but not the other way round. | ||||
* | Remove dependency on actionpack in ActionView::AssetPaths | Piotr Sarnacki | 2012-08-28 | 1 | -0/+1 |
| | | | | | | Since Action View should not depend on actionpack, it's best to delegate invalid_asset_host! to controller and just rely on such simple contract instead of raising ActionController::RoutingError directly. | ||||
* | Get rid of config.preload_frameworks in favor of config.eager_load_namespaces | José Valim | 2012-08-21 | 1 | -0/+6 |
| | | | | | | | The new option allows any Ruby namespace to be registered and set up for eager load. We are effectively exposing the structure existing in Rails since v3.0 for all developers in order to make their applications thread-safe and CoW friendly. | ||||
* | load active_support/core_ext/module/delegation in active_support/rails | Xavier Noria | 2012-08-02 | 1 | -1/+0 |
| | |||||
* | load active_support/concern in active_support/rails | Xavier Noria | 2012-08-02 | 1 | -1/+0 |
| | |||||
* | defines a private require-hub active_support/rails | Xavier Noria | 2012-08-02 | 1 | -0/+1 |
| | | | | | | | | This is a private place to put those AS features that are used by every component. Nowadays we cherry-pick individual files wherever they are used, but that it is not worth the effort for stuff that is going to be loaded for sure sooner or later, like blank?, autoload, concern, etc. | ||||
* | added live responses which can be written and read in separate threads | Aaron Patterson | 2012-07-29 | 1 | -0/+1 |
| | |||||
* | Remove --http. | José Valim | 2012-03-14 | 1 | -1/+0 |
| | |||||
* | Add ActionController::HTTP | Santiago Pastorino | 2012-03-14 | 1 | -0/+1 |
| | | | | | | More info http://edgeguides.rubyonrails.org/api_app.html [Carlos Antonio da Silva & Santiago Pastorino] | ||||
* | Remove unused ActionController::SessionManagement | Santiago Pastorino | 2012-03-06 | 1 | -1/+0 |
| | |||||
* | remove autoload UrlWriter, no longer exists | Vishnu Atrai | 2012-01-29 | 1 | -1/+0 |
| | |||||
* | Revert the serializers API as other alternatives are now also under discussion | José Valim | 2011-11-25 | 1 | -1/+0 |
| | |||||
* | Initial commit of serializer support | Jose and Yehuda | 2011-10-15 | 1 | -0/+1 |
| | |||||
* | TODO fix explicitly loading exceptations, autoload removed | Vishnu Atrai | 2011-07-11 | 1 | -15/+0 |
| | |||||
* | Restructure TemplateAssertions-related code to eliminate circular requires. | wycats | 2011-05-22 | 1 | -6/+7 |
| | | | Also, no need to include dependencies in AS::Concerns inside included blocks. | ||||
* | Add `ActionController::ParamsWrapper` to wrap parameters into a nested hash | Prem Sichanugrist | 2011-05-03 | 1 | -0/+1 |
| | | | This will allow us to do a rootless JSON/XML request to server. | ||||
* | Body... wanna *stream* my body? Body... such a thrill my body! | José Valim | 2011-04-18 | 1 | -0/+1 |
| | | | | | Added stream as class level method to make it explicit when to stream. Render also accepts :stream as option. | ||||
* | Rename it to DataStreaming. | José Valim | 2011-04-18 | 1 | -1/+1 |
| | |||||
* | Add controller-specific `force_ssl` method to force web browser to use HTTPS ↵ | Prem Sichanugrist | 2011-03-28 | 1 | -0/+1 |
| | | | | | | | | protocol This would become useful for site which sometime transferring sensitive information such as account information on particular controller or action. This featured was requested by DHH. | ||||
* | Move uri parser to AS as URI.parser method to reuse it in AP and ARes. | Emilio Tagua | 2010-09-28 | 1 | -1/+1 |
| | |||||
* | Remove warning "URI.unescape is obsolete" from actionpack. | Emilio Tagua | 2010-09-27 | 1 | -0/+1 |
| | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Partial revert of #d650b71 'Remove deprecated stuff in ActionController' | Carlos Antonio da Silva | 2010-09-26 | 1 | -0/+5 |
| | | | | | This brings back the deprecated modules from ActionController, because they didn't have any deprecation warning. | ||||
* | Remove deprecated stuff in ActionController | Carlos Antonio da Silva | 2010-09-26 | 1 | -5/+0 |
| | | | | | | This removes all deprecated classes in ActionController related to Routing, Abstract Request/Response and Integration/IntegrationTest. All tests and docs were changed to ActionDispatch instead of ActionController. | ||||
* | Revert "Setup explicit requires for files with exceptions. Removed them from ↵ | José Valim | 2010-09-02 | 1 | -0/+15 |
| | | | | | | | | autoloading." Booting a new Rails application does not work after this commit [#5359 state:open] This reverts commit 38a421b34d0b414564e919f67d339fac067a56e6. | ||||
* | Setup explicit requires for files with exceptions. Removed them from ↵ | Łukasz Strzałkowski | 2010-09-02 | 1 | -15/+0 |
| | | | | | | autoloading. Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Remove deprecated support to <% form_for %> and several ↵ | José Valim | 2010-08-29 | 1 | -1/+0 |
| | | | | ActionController::Base methods. | ||||
* | 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 |
| |