1. 12 3月, 2017 1 次提交
  2. 10 3月, 2017 1 次提交
  3. 08 3月, 2017 2 次提交
  4. 05 3月, 2017 2 次提交
    • R
      Fix CI failure due to contain <U+2028> · 660e189c
      Ryuta Kamizono 提交于
      ```diff
      diff --git a/actionpack/lib/action_controller/metal/redirecting.rb b/actionpack/lib/action_controller/metal/redirecting.rb
      index a3159c29dd..1836a07d4e 100644
      --- a/actionpack/lib/action_controller/metal/redirecting.rb
      +++ b/actionpack/lib/action_controller/metal/redirecting.rb
      @@ -50,8 +50,8 @@ module Redirecting
           #   redirect_to post_url(@post), status: 301, flash: { updated_post_id: @post.id }
           #   redirect_to({ action: 'atom' }, alert: "Something serious happened")
           #
      -    # Statements after redirect_to in our controller get executed, so redirect_to doesn't stop the execution of the function.
      -    <U+2028># To terminate the execution of the function immediately after the redirect_to, use return.
      +    # Statements after +redirect_to+ in our controller get executed, so +redirect_to+ doesn't stop the execution of the function.
      +    # To terminate the execution of the function immediately after the +redirect_to+, use return.
           #   redirect_to post_url(@post) and return
           def redirect_to(options = {}, response_status = {})
             raise ActionControllerError.new("Cannot redirect to nil!") unless options
      ```
      
      https://travis-ci.org/rails/rails/jobs/207908041#L549
      660e189c
    • T
      [ci skip] Fix ParameterMissing exception name in docs · 609bf1ac
      Tejas Bubane 提交于
      Should be `ActionController::ParameterMissing` and not
      `ActionController::MissingParameter`.
      
      Corresponding change was done in guides in
      https://github.com/rails/rails/pull/9816.
      609bf1ac
  5. 04 3月, 2017 1 次提交
  6. 21 2月, 2017 1 次提交
  7. 13 2月, 2017 1 次提交
  8. 16 1月, 2017 1 次提交
  9. 13 1月, 2017 2 次提交
  10. 05 1月, 2017 2 次提交
  11. 03 1月, 2017 1 次提交
    • J
      Extract variant setter to process method · feacb990
      Jon Moss 提交于
      Provide an API interface similar to how format is handled in
      Controllers. In situations where variants are not needed (ex: in
      Action Mailer) the method will simply trigger a no-op, and will not
      affect end users.
      feacb990
  12. 27 12月, 2016 1 次提交
  13. 24 12月, 2016 2 次提交
  14. 22 12月, 2016 2 次提交
    • A
      updating docs · 87105622
      Aaron Patterson 提交于
      87105622
    • A
      Document and update API for `skip_parameter_encoding` · 2eb0a663
      Aaron Patterson 提交于
      This commit changes `parameter_encoding` to `skip_parameter_encoding`.
      `skip_parameter_encoding` will set encoding on all parameters to
      ASCII-8BIT for a given action on a particular controller.  This allows
      the controller to handle data when the encoding of that data is unknown,
      for example file systems or truly binary parameters.
      2eb0a663
  15. 20 12月, 2016 1 次提交
  16. 06 12月, 2016 1 次提交
  17. 30 11月, 2016 1 次提交
  18. 22 11月, 2016 1 次提交
  19. 13 11月, 2016 2 次提交
  20. 12 11月, 2016 3 次提交
    • X
      significant speedup of AC::Parameters#permit · 26dd9b26
      Xavier Noria 提交于
      The current implementation of AC::Parameters#permit builds permitted hashes and
      then calls permit! on them.
      
      This filtering is recursive, so we call permit! on terminal branches, but then
      ascendants call permit! on themselves when the recursion goes up the stack,
      which recurses all the way down again because permit! is recursive itself.
      Repeat this for every parent node and you get some scary O-something going on
      that I don't even want to compute.
      
      Instead, since the whole point of the permit recursion is to build permitted
      hashes along the way and at that point you know you've just come up with a
      valid filtered version, you can already switch the toggle on the spot.
      
      I have seen 2x speedups in casual benchmarks with small structures. As the
      previous description shows, the difference in performance is going to be a
      function of the nesting.
      
      Note that that the involved methods are private and used only by permit.
      26dd9b26
    • X
      adds a missing dot [ci skip] · df3c1eef
      Xavier Noria 提交于
      df3c1eef
    • X
      adds support for arbitrary hashes in strong parameters · e86524c0
      Xavier Noria 提交于
      e86524c0
  21. 29 10月, 2016 1 次提交
  22. 27 10月, 2016 2 次提交
  23. 18 10月, 2016 1 次提交
  24. 11 10月, 2016 1 次提交
    • P
      ActionController::Parameters#deep_dup (#26567) · f80ddf30
      Pavel Evstigneev 提交于
      * ActionController::Parameters#deep_dup
      
      * Tests for ActionController::Parameters#deep_dup
      
      * Fix test for ActionController::Parameters#deep_dup
      
      * More tests for ActionController::Parameters#deep_dup
      
      [Rafael Mendonça França + Pavel Evstigneev]
      f80ddf30
  25. 10 10月, 2016 6 次提交