Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change AbstractRequest to ActionDispatch::Request | Bradley D | 2015-09-17 | 1 | -1/+1 |
| | | | | | | AbstractRequest has been deprecated, updating to refer to ActionDispatch::Request instead. [ci skip] | ||||
* | Remove RHTML reference in Action Controller docs [ci skip] | Lachlan Campbell | 2015-09-10 | 1 | -1/+1 |
| | |||||
* | typo "description not clear corrected with proper description and ↵ | kishore-mohan | 2015-09-02 | 1 | -1/+1 |
| | | | | action_controller_overview file Rails' -> Rails" [ci skip] | ||||
* | fix typo in method name [ci skip] | yuuji.yaginuma | 2015-08-30 | 1 | -1/+1 |
| | |||||
* | Remove a link to the site that seems to be gone. [ci skip] | shunsukeaida | 2015-08-23 | 1 | -1/+1 |
| | | | | Followup to #20637. | ||||
* | [ci skip] Fix action_controller_overview | yui-knk | 2015-06-28 | 1 | -1/+1 |
| | |||||
* | document that default_url_options is cached per request [ci skip] | Xavier Noria | 2015-06-15 | 1 | -1/+3 |
| | |||||
* | Tiny grammar correction in documentation [ci skip] | Ankit gupta | 2015-05-05 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2015-04-14 | 1 | -1/+1 |
|\ | |||||
| * | [ci skip] Wrap with double quotation | yui-knk | 2015-04-10 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Downcases filter names | yui-knk | 2015-04-10 | 1 | -3/+3 |
|/ | |||||
* | Merge pull request #18459 from cantino/action_controller_guide_edits | Rafael Mendonça França | 2015-03-11 | 1 | -45/+44 |
|\ | | | | | Action Controller guide edits for grammar and clarity | ||||
| * | Edits for grammar and clarity, with help from georgeclaghorn and robin850. | Andrew Cantino | 2015-03-11 | 1 | -45/+44 |
| | | |||||
* | | [ci skip] escape under score | yui-knk | 2015-02-13 | 1 | -1/+1 |
| | | |||||
* | | - Changed `IN` to `ON` in markdown renderer condition | Vipul A M | 2015-01-14 | 1 | -1/+1 |
|/ | | | | - Changed `IN` to `ON` in all note sentences in guides. | ||||
* | Add a note about non-buffering servers for AC::Live | Aditya Kapoor | 2014-12-27 | 1 | -0/+5 |
| | | | | [ci skip] | ||||
* | warn about reading guides in GitHub | Xavier Noria | 2014-12-23 | 1 | -0/+2 |
| | | | | References #18148. | ||||
* | Don't convert empty arrays to nils when deep munging params | Chris Sinjakli | 2014-12-15 | 1 | -2/+2 |
| | |||||
* | Remove custom errors page section from the guides | Yuki Nishijima | 2014-11-28 | 1 | -58/+1 |
| | | | | | | | | | | | | | | This pattern is too problematic and introduces a lot of edge cases: * On 4.2, the issue https://github.com/rails/rails/issues/15124 is back again. * needs to define each action for each http status otherwise the router raises ActionController::RoutingError (No route matches). * If the router has `match "/*username",...` and some action is missing, Rails will pick up the "match" and try to do its job. * encourages people to copy & paste programming. Not DRY. [ci skip] | ||||
* | [ci skip] No need to indent here (AC overview). | Juanito Fatas | 2014-10-25 | 1 | -6/+6 |
| | |||||
* | Improve the warning a bit [ci skip] | Rafael Mendonça França | 2014-10-16 | 1 | -1/+1 |
| | |||||
* | Merge pull request #15827 from ↵ | Rafael Mendonça França | 2014-10-16 | 1 | -1/+3 |
|\ | | | | | | | | | | | yuki24/another-improvements-for-dynamic-error-pages A warning line should look like a warning section in Guides | ||||
| * | A warning line should look like a warning section | Yuki Nishijima | 2014-06-19 | 1 | -1/+3 |
| | | | | | | | | [ci skip] | ||||
* | | [guides] Use `match ..., via: :all` in the custom exceptions app [ci skip] | Yuki Nishijima | 2014-09-06 | 1 | -3/+3 |
| | | | | | | | | | | Using `get` results in an unexpected error page(returning empty body) for requests of other HTTP mehtods other than GET. Use `match ..., via: :all` so the exceptions app can be more stable. | ||||
* | | Add warning for `rescue_from Exception` and `rescue_from StandardError` | Yuki Nishijima | 2014-06-19 | 1 | -0/+2 |
|/ | | | | [ci skip] | ||||
* | ErrorsController shouldn't inherit ApplicationController, but ↵ | Yuki Nishijima | 2014-06-19 | 1 | -1/+1 |
| | | | | | | | | | ActionController::Base Inheriting `ApplicationController` often causes an issue as it always has before/after actions. It should encourage to use `ActionController::Base` instead. [ci skip] | ||||
* | Create custom errors page on ActionController guides | Mauro George | 2014-06-19 | 1 | -0/+55 |
| | | | | [ci skip] | ||||
* | Fix typo in ActionController Overview | Ari Pollak | 2014-06-02 | 1 | -2/+2 |
| | | | | * Should say "sensitive" instead of "sensible" | ||||
* | "subhash" --> "sub-hash" | Akshay Vishnoi | 2014-04-19 | 1 | -1/+1 |
| | |||||
* | Update documentation to use Rails.application instead | Marcel Morgan | 2014-04-13 | 1 | -3/+3 |
| | | | | | | | References to ``AppName::Application` removed in favour of ``Rails.application`` as generated with a new rails 4.1 app. [ci skip] | ||||
* | Missing 'are' in note - [ci skip] | Afshin Mokhtari | 2014-04-12 | 1 | -1/+1 |
| | | | This is in the note at the end of Section 2: Controller Naming Convention. [ci skip] | ||||
* | Added a warning about serializing data with JSON cookie jars [skip ci] | Godfrey Chan | 2014-03-19 | 1 | -0/+24 |
| | | | | Closes #14409 | ||||
* | [ci skip] use secrets.yml instead of secret_token.rb in the action ↵ | Brian Thomas Storti | 2014-02-27 | 1 | -3/+18 |
| | | | | controller guide | ||||
* | Update guides for new rendering options | Prem Sichanugrist | 2014-02-18 | 1 | -1/+1 |
| | | | | | * Introduces `:plain`, `:html`, `:body` render option. * Update guide to use `render :plain` instead of `render :text`. | ||||
* | Updated CHANGELOG, docs, guides and release notes. | Godfrey Chan | 2014-02-11 | 1 | -7/+12 |
| | | | | Also added a `cookies_serializer.rb` initializer to the app template. | ||||
* | Renamed session_serializer option to cookies_serializer | Godfrey Chan | 2014-02-11 | 1 | -16/+27 |
| | |||||
* | Modify the session serializer implementation | Guillermo Iguaran | 2014-01-30 | 1 | -11/+5 |
| | | | | | Rename allowed options to :marshal and :json, for custom serializers only allow the use of custom classes. | ||||
* | Fix documentation of new controller filters api [ci skip] | Kassio Borges | 2014-01-29 | 1 | -2/+2 |
| | | | | | | | | | The api for filters with classes change and the guides weren't updated. Now the class must respond for methods with the same name as the filter, so the `before_action` calls a `before` method, and so on. The method `#filter` has been deprecated in 4.0.0 and has been removed in 4.1.0: #7560 | ||||
* | Allow session serializer key in config.session_store | Lukasz Sarnacki | 2014-01-29 | 1 | -0/+22 |
| | | | | | | | | | | | | | MessageEncryptor has :serializer option, where any serializer object can be passed. This commit make it possible to set this serializer from configuration level. There are predefined serializers (:marshal_serializer, :json_serialzier) and custom serializer can be passed as String, Symbol (camelized and constantized in ActionDispatch::Session namepspace) or serializer object. Default :json_serializer was also added to generators to provide secure defalt. | ||||
* | Log which keys were set to nil in deep_munge | Lukasz Sarnacki | 2014-01-28 | 1 | -0/+4 |
| | | | | | | | | deep_munge solves CVE-2013-0155 security vulnerability, but its behaviour is definately confuisng. This commit adds logging to deep_munge. It logs keys for which values were set to nil. Also mentions in guides were added. | ||||
* | Change all "can not"s to the correct "cannot". | T.J. Schuck | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | [ci skip] Add missing flash message in block filter example. | Juanito Fatas | 2014-01-01 | 1 | -2/+5 |
| | | | | Also make all three examples consistent. | ||||
* | Fix typo [ci skip] | Sıtkı Bağdat | 2013-12-18 | 1 | -1/+1 |
| | |||||
* | sync example and documentation for strong_parameters hash whitelisting. | Yves Senn | 2013-11-26 | 1 | -5/+7 |
| | | | | | | | | | [ci skip] This is a follow up to #12609 and integrates #12158. Thanks @aspiers. Closes #12158. | ||||
* | Merge remote-tracking branch 'docrails/master' | Xavier Noria | 2013-11-24 | 1 | -1/+1 |
|\ | | | | | | | | | | | Conflicts: activesupport/lib/active_support/core_ext/hash/deep_merge.rb activesupport/lib/active_support/core_ext/hash/keys.rb | ||||
| * | Update action_controller_overview.md [ci skip] | Harshad Sabne | 2013-11-15 | 1 | -1/+1 |
| | | | | | | Code style adherence | ||||
* | | removes redundant curly brackets in example code [ci skip] | Xavier Noria | 2013-11-08 | 1 | -1/+1 |
| | | |||||
* | | Fix undefined method error for NilClass | corwinkelly | 2013-10-23 | 1 | -1/+1 |
| | | | | | | Add .try to prevent undefined method error for NilClass. | ||||
* | | Update workaround for "Outside the Scope of Strong Parameters" | corwinkelly | 2013-10-22 | 1 | -3/+1 |
|/ | | | The previous example of how to permit a hash of unknown keys used .tap, but had the side effect of logging an "Unpermitted parameters" message despite being a successful workaround. The proposed workaround is ever so slightly better, imo, because it won't result in an "Unpermitted parameters" message being logged. | ||||
* | Use ActiveRecord::Base#update! instead of #update_attributes! | Zachary Scott | 2013-09-28 | 1 | -1/+1 |
| |