aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* Add "extname" option to javascript_include_tagNathan Stitt2013-08-031-0/+14
| | | | | | | | | | | | ActionView::Helpers.asset_path is where the logic for javascript_include_tag resides. It takes an extname option for specifying the extension or false to not append it. This exposes that option to javascript_include_tag. Without the option files that didn't end with ".js" would get the extension appended to them. This broke JST templates and other file types that should be interpreted as JavaScript but who's file extension isn't ".js"
* fix the changelog typo[ci skip]Rajarshi Das2013-08-021-1/+1
|
* Fix `current_page?` when the URL contains escaped charactersRafael Mendonça França2013-08-011-0/+5
| | | | | | | In some cases webservers like nginx send the escaped characters lowercased to the Rails application. The current_page? helper was comparing the escaped strings that are different since Ruby escapes the URL using uppercased characters.
* text_area should handle nil value option like text_fieldJoel Cogen2013-07-241-0/+14
|
* Fix changelog syntax and use Ruby 1.9 hash style [ci skip]Carlos Antonio da Silva2013-07-221-2/+1
|
* add support for html attributes to grouped_options_for_selectVasiliy Ermolovich2013-07-201-0/+10
|
* Use the canonical router on the CHANGELOG entryRafael Mendonça França2013-07-181-1/+1
| | | | | | Thanks @egilburg [ci skip]
* Fix default rendered format problem when calling render method without ↵kennyj2013-07-151-0/+5
| | | | :content_type option. Closes #11393.
* Add CHANGELOG entry for #11348Rafael Mendonça França2013-07-071-0/+14
|
* Fix "Stack Level Too Deep" error when rendering recursive partialsRafael Mendonça França2013-07-071-0/+6
| | | | | | | When rendering recursive partial Action View is trying to generate the view digest infinitly causing a stack level error. Fixes #11340
* Added an `enforce_utf8` hash option for `form_tag` methodTakayuki Matsubara2013-07-071-0/+20
| | | | | | | | | | | | | | | | | | Control to output a hidden input tag with name `utf8` without monkey patching Before: form_tag # => '<form>..<input name="utf8" type="hidden" value="&#x2713;" />..</form>' After: form_tag # => '<form>..<input name="utf8" type="hidden" value="&#x2713;" />..</form>' form_tag({}, { :enforce_utf8 => false }) # => '<form>....</form>'
* Remove the deprecated include_seconds argument from distance_of_time_in_wordsCarlos Antonio da Silva2013-07-021-1/+6
| | | | Pass in an :include_seconds hash option to use this feature.
* Remove `FormBuilder` deprecation warning about block argument and associated ↵Vipul A M2013-07-021-0/+4
| | | | tests
* fetch value(s) from stringified optionsJon Rowe2013-06-291-0/+4
|
* Review AV changelog [ci skip]Carlos Antonio da Silva2013-06-271-2/+2
|
* Remove passing the prompt to grouped_options_for_select as an argument, ↵kennyj2013-06-281-0/+5
| | | | because it was deprecated.
* Add CHANGELOG entry for #10971Rafael Mendonça França2013-06-241-1/+15
| | | | | | | [ci skip] Conflicts: actionpack/CHANGELOG.md
* Adjust changelog for AV & APŁukasz Strzałkowski2013-06-201-1/+42
|
* Remove heading from AV's CHANGELOGŁukasz Strzałkowski2013-06-201-2/+0
|
* ActionView version should be 4.1.0Piotr Sarnacki2013-06-201-1/+1
|
* Add bare actionview gem to the root directoryPiotr Sarnacki2013-06-201-0/+3
This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack.