2015-01-02 18:53:38 +00:00
|
|
|
* Add a `hidden_field` on the `collection_radio_buttons` to avoid raising a error
|
|
|
|
when the only input on the form is the `collection_radio_buttons`.
|
|
|
|
|
|
|
|
*Mauro George*
|
|
|
|
|
2015-09-04 19:23:29 +00:00
|
|
|
* `url_for` does not modify its arguments when generating polymorphic URLs.
|
|
|
|
|
|
|
|
*Bernerd Schaefer*
|
|
|
|
|
2014-11-04 07:22:41 +00:00
|
|
|
* `number_to_currency` and `number_with_delimiter` now accept custom `delimiter_pattern` option
|
|
|
|
to handle placement of delimiter, to support currency formats like INR
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
number_to_currency(1230000, delimiter_pattern: /(\d+?)(?=(\d\d)+(\d)(?!\d))/, unit: '₹', format: "%u %n")
|
|
|
|
# => '₹ 12,30,000.00'
|
|
|
|
|
|
|
|
*Vipul A M*
|
|
|
|
|
2015-08-05 16:38:43 +00:00
|
|
|
* Make `disable_with` the default behavior for submit tags. Disables the
|
|
|
|
button on submit to prevent double submits.
|
|
|
|
|
|
|
|
*Justin Schiff*
|
|
|
|
|
2015-08-11 21:15:47 +00:00
|
|
|
* Add a break_sequence option to word_wrap so you can specify a custom break.
|
|
|
|
|
|
|
|
* Mauricio Gomez *
|
|
|
|
|
2015-07-15 21:32:45 +00:00
|
|
|
* Add wildcard matching to explicit dependencies.
|
|
|
|
|
|
|
|
Turns:
|
|
|
|
|
|
|
|
```erb
|
|
|
|
<% # Template Dependency: recordings/threads/events/subscribers_changed %>
|
|
|
|
<% # Template Dependency: recordings/threads/events/completed %>
|
|
|
|
<% # Template Dependency: recordings/threads/events/uncompleted %>
|
|
|
|
```
|
|
|
|
|
|
|
|
Into:
|
|
|
|
|
|
|
|
```erb
|
|
|
|
<% # Template Dependency: recordings/threads/events/* %>
|
|
|
|
```
|
|
|
|
|
|
|
|
*Kasper Timm Hansen*
|
|
|
|
|
2015-07-05 02:34:00 +00:00
|
|
|
* Allow defining explicit collection caching using a `# Template Collection: ...`
|
|
|
|
directive inside templates.
|
|
|
|
|
|
|
|
*Dov Murik*
|
|
|
|
|
2015-06-29 08:48:47 +00:00
|
|
|
* Asset helpers raise `ArgumentError` when `nil` is passed as a source.
|
|
|
|
|
|
|
|
*Anton Kolomiychuk*
|
|
|
|
|
2015-06-12 19:30:04 +00:00
|
|
|
* Always attach the template digest to the cache key for collection caching
|
|
|
|
even when `virtual_path` is not available from the view context.
|
|
|
|
Which could happen if the rendering was done directly in the controller
|
|
|
|
and not in a template.
|
|
|
|
|
|
|
|
Fixes #20535
|
|
|
|
|
|
|
|
*Roque Pinel*
|
|
|
|
|
2015-06-02 01:56:31 +00:00
|
|
|
* Improve detection of partial templates eligible for collection caching,
|
|
|
|
now allowing multi-line comments at the beginning of the template file.
|
|
|
|
|
|
|
|
*Dov Murik*
|
|
|
|
|
2015-05-12 14:10:20 +00:00
|
|
|
* Raise an ArgumentError when a false value for `include_blank` is passed to a
|
|
|
|
required select field (to comply with the HTML5 spec).
|
|
|
|
|
|
|
|
*Grey Baker*
|
|
|
|
|
2015-05-16 05:30:17 +00:00
|
|
|
* Do not put partial name to `local_assigns` when rendering without
|
|
|
|
an object or a collection.
|
2015-05-14 06:42:55 +00:00
|
|
|
|
|
|
|
*Henrik Nygren*
|
|
|
|
|
2015-05-04 21:46:25 +00:00
|
|
|
* Remove `:rescue_format` option for `translate` helper since it's no longer
|
|
|
|
supported by I18n.
|
|
|
|
|
|
|
|
*Bernard Potocki*
|
|
|
|
|
2015-05-04 20:26:07 +00:00
|
|
|
* `translate` should handle `raise` flag correctly in case of both main and default
|
|
|
|
translation is missing.
|
|
|
|
|
|
|
|
Fixes #19967
|
|
|
|
|
|
|
|
*Bernard Potocki*
|
|
|
|
|
2015-04-07 02:20:57 +00:00
|
|
|
* Load the `default_form_builder` from the controller on initialization, which overrides
|
|
|
|
the global config if it is present.
|
|
|
|
|
|
|
|
*Kevin McPhillips*
|
|
|
|
|
2015-04-05 19:51:19 +00:00
|
|
|
* Accept lambda as `child_index` option in `fields_for` method.
|
|
|
|
|
|
|
|
*Karol Galanciak*
|
|
|
|
|
2015-04-04 17:23:54 +00:00
|
|
|
* `translate` allows `default: [[]]` again for a default value of `[]`.
|
2015-04-04 16:46:45 +00:00
|
|
|
|
2015-04-04 17:23:54 +00:00
|
|
|
Fixes #19640.
|
2015-04-04 16:46:45 +00:00
|
|
|
|
|
|
|
*Adam Prescott*
|
|
|
|
|
2015-03-20 20:58:54 +00:00
|
|
|
* `translate` should accept nils as members of the `:default`
|
2015-04-22 12:44:30 +00:00
|
|
|
parameter without raising a translation missing error.
|
2015-03-20 20:58:54 +00:00
|
|
|
|
|
|
|
Fixes #19419
|
|
|
|
|
|
|
|
*Justin Coyne*
|
|
|
|
|
2015-03-06 08:12:27 +00:00
|
|
|
* `number_to_percentage` does not crash with `Float::NAN` or `Float::INFINITY`
|
|
|
|
as input when `precision: 0` is used.
|
|
|
|
|
|
|
|
Fixes #19227.
|
|
|
|
|
|
|
|
*Yves Senn*
|
|
|
|
|
2015-02-26 21:18:58 +00:00
|
|
|
* Fixed the translation helper method to accept different default values types
|
|
|
|
besides String.
|
|
|
|
|
|
|
|
*Ulisses Almeida*
|
|
|
|
|
2015-02-26 16:23:22 +00:00
|
|
|
* Collection rendering automatically caches and fetches multiple partials.
|
|
|
|
|
|
|
|
Collections rendered as:
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
<%= render @notifications %>
|
|
|
|
<%= render partial: 'notifications/notification', collection: @notifications, as: :notification %>
|
|
|
|
```
|
|
|
|
|
|
|
|
will now read several partials from cache at once, if the template starts with a cache call:
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
# notifications/_notification.html.erb
|
|
|
|
<% cache notification do %>
|
|
|
|
<%# ... %>
|
|
|
|
<% end %>
|
|
|
|
```
|
|
|
|
|
|
|
|
*Kasper Timm Hansen*
|
|
|
|
|
2015-02-24 14:08:05 +00:00
|
|
|
* Fixed a dependency tracker bug that caused template dependencies not
|
|
|
|
count layouts as dependencies for partials.
|
|
|
|
|
|
|
|
*Juho Leinonen*
|
|
|
|
|
2015-01-08 21:01:16 +00:00
|
|
|
* Extracted `ActionView::Helpers::RecordTagHelper` to external gem
|
|
|
|
(`record_tag_helper`) and added removal notices.
|
|
|
|
|
|
|
|
*Todd Bealmear*
|
|
|
|
|
2015-02-16 12:19:40 +00:00
|
|
|
* Allow to pass a string value to `size` option in `image_tag` and `video_tag`.
|
2015-02-15 20:38:27 +00:00
|
|
|
|
|
|
|
This makes the behavior more consistent with `width` or `height` options.
|
|
|
|
|
|
|
|
*Mehdi Lahmam*
|
|
|
|
|
2015-02-05 15:18:05 +00:00
|
|
|
* Partial template name does no more have to be a valid Ruby identifier.
|
|
|
|
|
|
|
|
There used to be a naming rule that the partial name should start with
|
|
|
|
underscore, and should be followed by any combination of letters, numbers
|
|
|
|
and underscores.
|
|
|
|
But now we can give our partials any name starting with underscore, such as
|
|
|
|
_🍔.html.erb.
|
|
|
|
|
|
|
|
*Akira Matsuda*
|
|
|
|
|
2015-01-03 21:00:27 +00:00
|
|
|
* Change the default template handler from `ERB` to `Raw`.
|
|
|
|
|
2015-01-14 11:04:09 +00:00
|
|
|
Files without a template handler in their extension will be rendered using the raw
|
2015-01-03 21:00:27 +00:00
|
|
|
handler instead of ERB.
|
|
|
|
|
|
|
|
*Rafael Mendonça França*
|
|
|
|
|
2015-01-03 20:46:09 +00:00
|
|
|
* Remove deprecated `AbstractController::Base::parent_prefixes`.
|
|
|
|
|
|
|
|
*Rafael Mendonça França*
|
|
|
|
|
2015-01-03 15:36:33 +00:00
|
|
|
* Default translations that have a lower precedence than a html safe default,
|
2015-01-02 23:07:01 +00:00
|
|
|
but are not themselves safe, should not be marked as html_safe.
|
|
|
|
|
|
|
|
*Justin Coyne*
|
|
|
|
|
2014-12-09 00:13:40 +00:00
|
|
|
* Make possible to use blocks with short version of `render "partial"` helper.
|
|
|
|
|
|
|
|
*Nikolay Shebanov*
|
|
|
|
|
2014-12-08 22:22:36 +00:00
|
|
|
* Add a `hidden_field` on the `file_field` to avoid raise a error when the only
|
|
|
|
input on the form is the `file_field`.
|
|
|
|
|
|
|
|
*Mauro George*
|
|
|
|
|
2014-12-31 15:53:36 +00:00
|
|
|
* Add an explicit error message, in `ActionView::PartialRenderer` for partial
|
|
|
|
`rendering`, when the value of option `as` has invalid characters.
|
2013-06-25 10:27:50 +00:00
|
|
|
|
|
|
|
*Angelo Capilleri*
|
|
|
|
|
2015-05-16 05:30:17 +00:00
|
|
|
* Allow entries without a link tag in `AtomFeedHelper`.
|
2015-01-10 16:06:53 +00:00
|
|
|
|
|
|
|
*Daniel Gomez de Souza*
|
2014-12-08 22:22:36 +00:00
|
|
|
|
2014-11-28 17:00:06 +00:00
|
|
|
Please check [4-2-stable](https://github.com/rails/rails/blob/4-2-stable/actionview/CHANGELOG.md) for previous changes.
|