1. 21 1月, 2012 1 次提交
  2. 20 1月, 2012 1 次提交
  3. 19 1月, 2012 1 次提交
  4. 17 1月, 2012 1 次提交
  5. 15 1月, 2012 1 次提交
  6. 14 1月, 2012 1 次提交
  7. 11 1月, 2012 1 次提交
  8. 09 1月, 2012 1 次提交
  9. 06 1月, 2012 2 次提交
  10. 04 1月, 2012 1 次提交
  11. 03 1月, 2012 1 次提交
  12. 29 12月, 2011 1 次提交
  13. 24 12月, 2011 3 次提交
  14. 18 12月, 2011 2 次提交
  15. 16 12月, 2011 3 次提交
  16. 12 12月, 2011 1 次提交
  17. 11 12月, 2011 1 次提交
  18. 10 12月, 2011 1 次提交
  19. 09 12月, 2011 1 次提交
  20. 08 12月, 2011 1 次提交
  21. 07 12月, 2011 1 次提交
    • P
      Allow layout fallback when using `layout` method · 18ceed20
      Prem Sichanugrist 提交于
      Rails will now use your default layout (such as "layouts/application") when you specify a layout with `:only` and `:except` condition, and those conditions fail.
      
      For example, consider this snippet:
      
          class CarsController
            layout 'single_car', :only => :show
          end
      
      Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions.
      18ceed20
  22. 06 12月, 2011 1 次提交
  23. 05 12月, 2011 1 次提交
  24. 02 12月, 2011 2 次提交
  25. 01 12月, 2011 1 次提交
  26. 30 11月, 2011 1 次提交
  27. 28 11月, 2011 1 次提交
  28. 22 11月, 2011 1 次提交
  29. 19 11月, 2011 1 次提交
  30. 18 11月, 2011 1 次提交
  31. 14 11月, 2011 2 次提交
  32. 06 11月, 2011 1 次提交
    • J
      Implement a workaround for a bug in ruby-1.9.3p0. · fc988115
      Jon Leighton 提交于
      The bug is that an error would be raised while attempting to convert a
      template from one encoding to another.
      
      Please see http://redmine.ruby-lang.org/issues/5564 for more details.
      
      The workaround is to load all conversions into memory ahead of time,
      and will only happen if the ruby version is *exactly* 1.9.3p0. The
      hope is obviously that the underlying problem will be resolved in
      the next patchlevel release of 1.9.3.
      fc988115