1. 07 4月, 2011 1 次提交
  2. 23 2月, 2011 1 次提交
  3. 20 12月, 2010 1 次提交
  4. 26 9月, 2010 1 次提交
  5. 28 7月, 2010 1 次提交
    • W
      Add a header that tells Internet Explorer (all versions) to use the best... · 123eb25f
      wycats 提交于
      Add a header that tells Internet Explorer (all versions) to use the best available standards support. This ensures that IE doesn't go into quirks mode because it has been blacklisted by too many users pressing the incompatible button. It also tells IE to use the ChromeFrame renderer, if the user has installed the plugin.
      
      This guarantees that the best available standards support will be used on the client.
      123eb25f
  6. 21 7月, 2010 2 次提交
  7. 20 7月, 2010 1 次提交
  8. 03 6月, 2010 1 次提交
    • W
      Removing Metal from Rails 3. · ed34652d
      wycats 提交于
      If you have existing Metals, you have a few options:
      * if your metal behaves like a middleware, add it to the
        middleware stack via config.middleware.use. You can use
        methods on the middleware stack to control exactly where
        it should go
      * if it behaves like a Rack endpoint, you can link to it
        in the router. This will result in more optimal routing
        time, and allows you to remove code in your endpoint
        that matches specific URLs in favor of the more powerful
        handling in the router itself.
      
      For the future, you can use ActionController::Metal to get
      a very fast controller with the ability to opt-in to specific
      controller features without paying the penalty of the full
      controller stack.
      
      Since Rails 3 is closer to Rack, the Metal abstraction is
      no longer needed.
      ed34652d
  9. 30 5月, 2010 1 次提交
    • W
      Removing Metal from Rails 3. · 45e60283
      wycats 提交于
      If you have existing Metals, you have a few options:
      * if your metal behaves like a middleware, add it to the
        middleware stack via config.middleware.use. You can use
        methods on the middleware stack to control exactly where
        it should go
      * if it behaves like a Rack endpoint, you can link to it
        in the router. This will result in more optimal routing
        time, and allows you to remove code in your endpoint
        that matches specific URLs in favor of the more powerful
        handling in the router itself.
      
      For the future, you can use ActionController::Metal to get
      a very fast controller with the ability to opt-in to specific
      controller features without paying the penalty of the full
      controller stack.
      
      Since Rails 3 is closer to Rack, the Metal abstraction is
      no longer needed.
      45e60283
  10. 04 3月, 2010 2 次提交
  11. 01 2月, 2010 1 次提交
  12. 30 1月, 2010 1 次提交
  13. 21 1月, 2010 3 次提交
  14. 17 1月, 2010 2 次提交
  15. 16 1月, 2010 3 次提交
  16. 05 1月, 2010 1 次提交
  17. 31 12月, 2009 2 次提交
  18. 29 12月, 2009 1 次提交
  19. 27 12月, 2009 1 次提交
  20. 23 12月, 2009 3 次提交
  21. 21 12月, 2009 2 次提交
  22. 17 12月, 2009 1 次提交
  23. 13 12月, 2009 1 次提交
  24. 03 12月, 2009 1 次提交
    • C
      Reorganize autoloads: · c1304098
      Carlhuda 提交于
        * A new module (ActiveSupport::Autoload) is provide that extends
          autoloading with new behavior.
        * All autoloads in modules that have extended ActiveSupport::Autoload
          will be eagerly required in threadsafe environments
        * Autoloads can optionally leave off the path if the path is the same
          as full_constant_name.underscore
        * It is possible to specify that a group of autoloads live under an
          additional path. For instance, all of ActionDispatch's middlewares
          are ActionDispatch::MiddlewareName, but they live under 
          "action_dispatch/middlewares/middleware_name"
        * It is possible to specify that a group of autoloads are all found
          at the same path. For instance, a number of exceptions might all
          be declared there.
        * One consequence of this is that testing-related constants are not
          autoloaded. To get the testing helpers for a given component,
          require "component_name/test_case". For instance, "action_controller/test_case".
        * test_help.rb, which is automatically required by a Rails application's
          test helper, requires the test_case.rb for all active components, so
          this change will not be disruptive in existing or new applications.
      c1304098
  25. 20 10月, 2009 1 次提交
  26. 06 10月, 2009 1 次提交
  27. 27 9月, 2009 1 次提交
  28. 26 9月, 2009 1 次提交
  29. 24 9月, 2009 1 次提交