1. 27 9月, 2010 1 次提交
  2. 16 9月, 2010 1 次提交
  3. 02 9月, 2010 1 次提交
  4. 30 8月, 2010 1 次提交
  5. 02 7月, 2010 1 次提交
  6. 24 6月, 2010 1 次提交
  7. 23 6月, 2010 1 次提交
  8. 17 6月, 2010 1 次提交
  9. 13 6月, 2010 1 次提交
  10. 11 6月, 2010 4 次提交
  11. 07 6月, 2010 1 次提交
  12. 05 6月, 2010 1 次提交
  13. 03 6月, 2010 1 次提交
  14. 01 6月, 2010 1 次提交
  15. 19 5月, 2010 1 次提交
  16. 28 4月, 2010 1 次提交
  17. 05 4月, 2010 1 次提交
  18. 03 4月, 2010 1 次提交
    • W
      Refactored url_for in AV to have its own instances of the helpers instead of... · 3eb97531
      wycats 提交于
      Refactored url_for in AV to have its own instances of the helpers instead of proxying back to the controller. This potentially allows for more standalone usage of AV. It also kicked up a lot of dust in the tests, which were mocking out controllers to get this behavior. By moving it to the view, it made a lot of the tests more standalone (a win) 
      3eb97531
  19. 30 3月, 2010 1 次提交
  20. 27 3月, 2010 1 次提交
  21. 20 3月, 2010 1 次提交
  22. 19 3月, 2010 2 次提交
  23. 18 3月, 2010 2 次提交
  24. 17 3月, 2010 2 次提交
  25. 16 3月, 2010 1 次提交
    • C
      Add deprecation notices for <% %>. · 9de83050
      Carlhuda 提交于
        * The approach is to compile <% %> into a method call that checks whether
          the value returned from a block is a String. If it is, it concats to the buffer and
          prints a deprecation warning.
        * <%= %> uses exactly the same logic to compile the template, which first checks
          to see whether it's compiling a block.
        * This should have no impact on other uses of block in templates. For instance, in
          <% [1,2,3].each do |i| %><%= i %><% end %>, the call to each returns an Array,
          not a String, so the result is not concatenated
        * In two cases (#capture and #cache), a String can be returned that should *never*
          be concatenated. We have temporarily created a String subclass called NonConcattingString
          which behaves (and is serialized) identically to String, but is not concatenated
          by the code that handles deprecated <% %> block helpers. Once we remove support
          for <% %> block helpers, we can remove NonConcattingString.
      9de83050
  26. 13 3月, 2010 1 次提交
  27. 12 3月, 2010 1 次提交
  28. 11 3月, 2010 1 次提交
  29. 09 3月, 2010 1 次提交
  30. 08 3月, 2010 5 次提交