1. 16 6月, 2013 1 次提交
  2. 15 6月, 2013 1 次提交
  3. 01 6月, 2013 4 次提交
  4. 15 5月, 2013 1 次提交
  5. 10 5月, 2013 1 次提交
  6. 07 5月, 2013 1 次提交
  7. 06 5月, 2013 1 次提交
  8. 19 4月, 2013 2 次提交
  9. 11 4月, 2013 1 次提交
  10. 10 4月, 2013 1 次提交
  11. 07 4月, 2013 2 次提交
  12. 06 4月, 2013 2 次提交
    • C
      Typo fix · b75c0bb3
      Carson McDonald 提交于
      b75c0bb3
    • R
      Fix explicit names on multiple file fields · 48dc5192
      Ryan McGeary 提交于
      If a file field tag is passed the multiple option, it is turned into an
      array field (appending "[]"), but if the file field is passed an
      explicit name as an option, leave the name alone (do not append "[]").
      
      Fixes #9830
      48dc5192
  13. 05 4月, 2013 4 次提交
  14. 04 4月, 2013 1 次提交
  15. 03 4月, 2013 2 次提交
  16. 01 4月, 2013 1 次提交
  17. 31 3月, 2013 2 次提交
  18. 28 3月, 2013 1 次提交
    • B
      Revert grep to select since they are not the same · 1cc991be
      Brian McManus 提交于
      A previous commit swapped out a call to select for a call to grep in
      time_zone_options_for_select. This behavior actually causes the
      regexp priority option to stop working.
      
      ActiveSupport::TimeZone overrides the =~ operator which is what the
      select block was using previously. Enumerable#grep
      checks pattern === element and in this case that would be /US/ ===
      ActiveSupport::TimeZone which does not work because
      ActiveSupport::TimeZone does not supply an implicit converting to_str
      method, only an explicit to_s method.
      
      It would be impossible to provide a to_str method that behaves
      identically to the =~ method provided on ActiveSupport::TimeZone
      so the only option is to revert back to using select with =~.
      1cc991be
  19. 22 3月, 2013 1 次提交
  20. 17 3月, 2013 1 次提交
  21. 09 3月, 2013 1 次提交
    • O
      Fix incorrectly appended square brackets to a multiple select box · 8e05a6f6
      Olek Janiszewski 提交于
      If an explicit name has been given and it already ends with "[]"
      
      Before:
      
          select(:category, [], {}, multiple: true, name: "post[category][]")
          # => <select name="post[category][][]" ...>
      
      After:
      
          select(:category, [], {}, multiple: true, name: "post[category][]")
          # => <select name="post[category][]" ...>
      8e05a6f6
  22. 07 3月, 2013 1 次提交
    • J
      Update capture_helper.rb · c5b5c68d
      Jess Brown 提交于
      if there's content for the right column, then we need the two-column class, if not the one-column
      c5b5c68d
  23. 06 3月, 2013 1 次提交
  24. 05 3月, 2013 2 次提交
  25. 26 2月, 2013 1 次提交
  26. 23 2月, 2013 1 次提交
  27. 22 2月, 2013 2 次提交