1. 15 8月, 2019 1 次提交
  2. 24 12月, 2018 1 次提交
  3. 21 7月, 2018 1 次提交
    • K
      Merge pull request #33408 from... · e66eafaf
      Kasper Timm Hansen 提交于
      Merge pull request #33408 from ycherniavskyi/fix_leaking_special_form_with_attributes_into_html_attributes
      
      Fix leaking special form_with attributes into html attributes
      e66eafaf
  4. 25 1月, 2018 1 次提交
  5. 12 1月, 2018 1 次提交
  6. 28 11月, 2017 1 次提交
  7. 26 11月, 2017 2 次提交
  8. 21 10月, 2017 1 次提交
  9. 27 8月, 2017 1 次提交
  10. 22 8月, 2017 1 次提交
  11. 10 8月, 2017 1 次提交
  12. 09 8月, 2017 1 次提交
  13. 04 8月, 2017 2 次提交
  14. 02 8月, 2017 1 次提交
  15. 01 8月, 2017 1 次提交
  16. 24 7月, 2017 1 次提交
  17. 02 7月, 2017 1 次提交
  18. 01 7月, 2017 2 次提交
  19. 03 6月, 2017 1 次提交
  20. 30 5月, 2017 1 次提交
  21. 16 4月, 2017 2 次提交
  22. 15 4月, 2017 1 次提交
  23. 14 4月, 2017 1 次提交
  24. 27 12月, 2016 1 次提交
  25. 19 12月, 2016 5 次提交
  26. 15 12月, 2016 1 次提交
  27. 14 12月, 2016 1 次提交
  28. 25 11月, 2016 1 次提交
  29. 22 11月, 2016 2 次提交
    • O
      form_helper typo fix [ci skip] · d661cc02
      ota42y 提交于
      d661cc02
    • K
      Add form_with to unify form_tag/form_for. (#26976) · 67f81cc7
      Kasper Timm Hansen 提交于
      * Add form_with to unify form_tag/form_for.
      
      `form_tag` and `form_for` serve very similar use cases. This
      PR unifies that usage such that `form_with` can output just
      the opening form tag akin to `form_tag` and can just work with
      a url, for instance.
      
      `form_with` by default doesn't attach class or id to the form —
      removing them on fields is moved out to a default revisiting PR later.
      
      Ported over old tests where applicable to ensure maximum coverage,
      but left some commented out because they don't yet apply (e.g.
      `fields_for` later being replaced by `fields`).
      
      [ Kasper Timm Hansen & Marek Kirejczyk ]
      
      * Add fields DSL method.
      
      Strips `_for` and requires models passed as a keyword argument.
      
      * Document form_with.
      
      Graft the `form_for` docs: rewrite, revise and expand where
      needed.
      
      Also test that a `format` isn't used when an explicit URL
      is passed.
      
      * Enable remote by default.
      
      Brand new world! Forms submit via XHRs by default, woah.
      
      * Invert `include_id` to `skip_id`.
      
      `skip_id: true` reads better than `include_id: false` (since the
      `include_id` default is true).
      
      * Invert `remote` to `local`.
      
      Since forms are remote by default, the option name makes more sense
      as `local: true`.
      
      * Invert `enforce_utf8` to `skip_enforcing_utf8`.
      
      * Refer to the brand spanking new rails-ujs.
      
      Soon to be bundled in Rails proper, so jquery-ujs is out.
      
      * Make `form_with` a bit more composed.
      
      The flow is still not quite what it should be because the legacy
      methods and these new ones pull at opposite ends.
      
      Lots of options have been renamed, so now the new pieces don't fit
      in so well.
      
      I'll try to work on this in later commits after this PR (it's likely
      there's a much better way to structure this whole part of Action View).
      67f81cc7
  30. 29 10月, 2016 1 次提交
  31. 02 9月, 2016 1 次提交