1. 18 12月, 2010 1 次提交
  2. 17 12月, 2010 2 次提交
  3. 03 11月, 2010 2 次提交
  4. 19 10月, 2010 6 次提交
  5. 18 10月, 2010 8 次提交
  6. 05 9月, 2010 3 次提交
  7. 14 8月, 2010 2 次提交
  8. 26 7月, 2010 1 次提交
  9. 21 6月, 2010 1 次提交
  10. 11 6月, 2010 2 次提交
  11. 10 6月, 2010 1 次提交
  12. 17 5月, 2010 1 次提交
  13. 01 4月, 2010 1 次提交
  14. 28 3月, 2010 1 次提交
  15. 23 3月, 2010 3 次提交
  16. 06 3月, 2010 1 次提交
  17. 01 2月, 2010 1 次提交
    • Y
      For performance reasons, you can no longer call html_safe! on Strings.... · 4cbb9db0
      Yehuda Katz 提交于
      For performance reasons, you can no longer call html_safe! on Strings. Instead, all Strings are always not html_safe?. Instead, you can get a SafeBuffer from a String by calling #html_safe, which will SafeBuffer.new(self).
      
        * Additionally, instead of doing concat("</form>".html_safe), you can do
          safe_concat("</form>"), which will skip both the flag set, and the flag
          check.
        * For the first pass, I converted virtually all #html_safe!s to #html_safe,
          and the tests pass. A further optimization would be to try to use
          #safe_concat as much as possible, reducing the performance impact if
          we know up front that a String is safe.
      4cbb9db0
  18. 06 1月, 2010 1 次提交
  19. 04 10月, 2009 1 次提交
  20. 08 8月, 2009 1 次提交