1. 29 1月, 2015 1 次提交
  2. 22 1月, 2015 3 次提交
  3. 10 1月, 2015 1 次提交
  4. 09 1月, 2015 5 次提交
  5. 07 1月, 2015 1 次提交
  6. 05 1月, 2015 1 次提交
  7. 04 1月, 2015 9 次提交
  8. 31 12月, 2014 1 次提交
    • R
      Correctly use the response's status code calling head · 7ef7f1cc
      Robin Dupret 提交于
      Commit 20fece14 introduced the `_status_code` method to fix calls to
      `head :ok`. This method has been added on both ActionController::Metal
      and ActionDispatch::Response.
      
      As for the latter, this method is just equivalent to the `response_code`
      one so commit aefec3c6 removed it from the `Reponse` object so call to
      the `_status_code` method on an ActionController::Base instance would be
      handled by the `Metal` class (which `Base` inherits from) but the status
      code is not updated according to the response at this level.
      
      The fix is to actually rely on `response_code` for ActionController::Base
      instances but this method doesn't exist for bare Metal controllers so we
      need to define it.
      7ef7f1cc
  9. 30 12月, 2014 1 次提交
  10. 23 12月, 2014 1 次提交
  11. 15 12月, 2014 1 次提交
  12. 14 12月, 2014 1 次提交
  13. 13 12月, 2014 1 次提交
  14. 11 12月, 2014 1 次提交
  15. 29 11月, 2014 1 次提交
  16. 25 11月, 2014 2 次提交
  17. 29 10月, 2014 1 次提交
    • G
      Deprecate the `only_path` option on `*_path` helpers. · aa1fadd4
      Godfrey Chan 提交于
      In cases where this option is set to `true`, the option is redundant and can
      be safely removed; otherwise, the corresponding `*_url` helper should be
      used instead.
      
      Fixes #17294.
      
      See also #17363.
      
      [Dan Olson, Godfrey Chan]
      aa1fadd4
  18. 16 10月, 2014 1 次提交
  19. 14 10月, 2014 1 次提交
    • N
      Improve Journey compliance to RFC 3986 · 3041bb2a
      Nicolas Cavigneaux 提交于
      The scanner in Journey fails to recognize routes that use literals
      from the sub-delims section of RFC 3986.
      
      This commit enhance the compatibility of Journey with the RFC by
      adding support of authorized delimiters to the scanner.
      
      Fix #17212
      3041bb2a
  20. 26 9月, 2014 1 次提交
  21. 25 9月, 2014 1 次提交
  22. 06 9月, 2014 1 次提交
  23. 29 8月, 2014 1 次提交
    • P
      Don't rescue IPAddr::InvalidAddressError · a59a9b7f
      Peter Suschlik 提交于
      IPAddr::InvalidAddressError does not exist in Ruby 1.9.3
      and fails for JRuby in 1.9 mode.
      
      As IPAddr::InvalidAddressError is a subclass of ArgumentError
      (via IPAddr::Error) just rescuing ArgumentError is fine.
      a59a9b7f
  24. 27 8月, 2014 1 次提交
  25. 25 8月, 2014 1 次提交