2014-05-05 18:48:53 -04:00
|
|
|
* Take label values into account when doing I18n lookups for model attributes.
|
|
|
|
|
|
|
|
The following:
|
|
|
|
|
|
|
|
# form.html.erb
|
|
|
|
<%= form_for @post do |f| %>
|
|
|
|
<%= f.label :type, value: "long" %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
# en.yml
|
|
|
|
en:
|
|
|
|
activerecord:
|
|
|
|
attributes:
|
|
|
|
post/long: "Long-form Post"
|
|
|
|
|
|
|
|
Used to simply return "long", but now it will return "Long-form
|
|
|
|
Post".
|
|
|
|
|
|
|
|
*Joshua Cody*
|
|
|
|
|
2014-05-02 05:56:03 -04:00
|
|
|
* Change `asset_path` to use File.join to create proper paths:
|
2014-05-01 15:10:56 -04:00
|
|
|
|
|
|
|
https://some.host.com//assets/some.js
|
|
|
|
|
|
|
|
becomes
|
|
|
|
|
|
|
|
https://some.host.com/assets/some.js
|
|
|
|
|
|
|
|
*Peter Schröder*
|
|
|
|
|
2013-12-16 06:13:18 -05:00
|
|
|
* Change `favicon_link_tag` default mimetype from `image/vnd.microsoft.icon` to
|
|
|
|
`image/x-icon`.
|
|
|
|
|
|
|
|
Before:
|
2014-05-02 05:56:03 -04:00
|
|
|
|
2013-12-16 06:13:18 -05:00
|
|
|
#=> favicon_link_tag 'myicon.ico'
|
|
|
|
<link href="/assets/myicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
|
|
|
|
|
|
|
|
After:
|
|
|
|
|
|
|
|
#=> favicon_link_tag 'myicon.ico'
|
|
|
|
<link href="/assets/myicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
|
|
|
|
|
|
*Geoffroy Lorieux*
|
|
|
|
|
2014-04-13 18:38:46 -04:00
|
|
|
* Remove wrapping div with inline styles for hidden form fields.
|
|
|
|
|
|
|
|
We are dropping HTML 4.01 and XHTML strict compliance since input tags directly
|
|
|
|
inside a form are valid HTML5, and the absense of inline styles help in validating
|
|
|
|
for Content Security Policy.
|
|
|
|
|
|
|
|
*Joost Baaij*
|
|
|
|
|
2014-04-13 14:58:42 -04:00
|
|
|
* `collection_check_boxes` respects `:index` option for the hidden filed name.
|
|
|
|
|
|
|
|
Fixes #14147.
|
|
|
|
|
|
|
|
*Vasiliy Ermolovich*
|
|
|
|
|
2014-03-21 16:28:47 -04:00
|
|
|
* `date_select` helper with option `with_css_classes: true` does not overwrite other classes.
|
|
|
|
|
|
|
|
*Izumi Wong-Horiuchi*
|
|
|
|
|
2014-03-17 05:55:21 -04:00
|
|
|
* `number_to_percentage` does not crash with `Float::NAN` or `Float::INFINITY`
|
|
|
|
as input.
|
|
|
|
|
|
|
|
Fixes #14405.
|
|
|
|
|
|
|
|
*Yves Senn*
|
|
|
|
|
2013-10-27 11:14:16 -04:00
|
|
|
* Add `include_hidden` option to `collection_check_boxes` helper.
|
|
|
|
|
|
|
|
*Vasiliy Ermolovich*
|
|
|
|
|
2014-03-04 06:12:18 -05:00
|
|
|
* Fixed a problem where the default options for the `button_tag` helper is not
|
|
|
|
applied correctly.
|
|
|
|
|
|
|
|
Fixes #14254.
|
|
|
|
|
|
|
|
*Sergey Prikhodko*
|
|
|
|
|
2014-03-01 12:59:56 -05:00
|
|
|
* Take variants into account when calculating template digests in ActionView::Digestor.
|
|
|
|
|
|
|
|
The arguments to ActionView::Digestor#digest are now being passed as a hash
|
|
|
|
to support variants and allow more flexibility in the future. The support for
|
|
|
|
regular (required) arguments is deprecated and will be removed in Rails 5.0 or later.
|
|
|
|
|
|
|
|
*Piotr Chmolowski, Łukasz Strzałkowski*
|
|
|
|
|
|
|
|
|
2014-02-25 07:14:35 -05:00
|
|
|
Please check [4-1-stable](https://github.com/rails/rails/blob/4-1-stable/actionview/CHANGELOG.md) for previous changes.
|