Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #15654 from pdg137/master | Matthew Draper | 2014-06-13 | 1 | -0/+10 |
|\ | | | | | | | In tag helper, honor html_safe on arrays; also make safe_join more similar to Array.join | ||||
* \ | Merge pull request #15590 from ↵ | Yves Senn | 2014-06-12 | 1 | -0/+6 |
|\ \ | |/ |/| | | | | | | | | | | | | | zuhao/refactor_actionview_register_template_handler Add unregister_template_handler to prevent leaks. Conflicts: actionview/CHANGELOG.md | ||||
| * | Add unregister_template_handler to prevent leaks. | Zuhao Wan | 2014-06-12 | 1 | -0/+6 |
| | | |||||
* | | Fix cache_digest rake tasks | Jiri Pospisil | 2014-06-10 | 1 | -0/+4 |
|/ | | | | | Bring cache_digests:* rake tasks up-to-date with the API changes introduced in 637bb726cac60aaa1f7e482836458aa73e17fbb7 | ||||
* | Merge pull request #15021 from hubertlepicki/allow_custom_host_in_asset_url | Rafael Mendonça França | 2014-05-16 | 1 | -1/+5 |
|\ | | | | | | | Allow custom asset host to be passed in asset_url | ||||
| * | Improve documentation for asset_url | Hubert Łępicki | 2014-05-08 | 1 | -0/+4 |
| | | | | | | | | Updated CHANGELOG.md with entry about :host in asset_url | ||||
* | | formatting pass through CHANGELOGS. [ci skip] | Yves Senn | 2014-05-16 | 1 | -1/+3 |
| | | |||||
* | | Improve CHANGELOG entry | Rafael Mendonça França | 2014-05-14 | 1 | -2/+4 |
| | | |||||
* | | deprecate AbC:Base::parent_prefixes. | Nick Sutterer | 2014-05-13 | 1 | -0/+4 |
|/ | | | | | | rename ::_local_prefixes to ::local_prefixes to state the public attribute. document the latter. make ::local_prefixes private, test overriding it and remove documentation for overriding ::_parent_prefixes. | ||||
* | Include label value in i18n attribute lookup | Joshua Cody | 2014-05-06 | 1 | -0/+20 |
| | | | | | | | | | | | | | | | | | | | | | Previously, only the object and method name from the label tag were used when looking up the translation for a label. If a value is given for the label, this ought to be additionally used. 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". | ||||
* | Enhance a bit a few changelog entries [ci skip] | Robin Dupret | 2014-05-02 | 1 | -2/+2 |
| | |||||
* | always use File.join | phoet | 2014-05-01 | 1 | -0/+10 |
| | |||||
* | Change favicon_link_tag helper mimetype from image/vnd.microsoft.icon to ↵ | glorieux | 2014-04-21 | 1 | -0/+15 |
| | | | | | | | | image/x-icon. Although the official IANA-registered MIME type for ICO files is image/vnd.microsoft.icon, registered in 2003, it was submitted to IANA by a third party and is not recognized by Microsoft products. The MIME type image/x-icon should be used since is the one recognized by the major browsers on the market. | ||||
* | Merge pull request #14738 from tilsammans/pull/11407 | Rafael Mendonça França | 2014-04-17 | 1 | -0/+8 |
|\ | | | | | | | | | | | | | Remove wrapping div with inline styles for hidden form fields. Conflicts: actionview/CHANGELOG.md | ||||
| * | Remove wrapping div with inline styles for hidden form fields. | Joost Baaij | 2014-04-14 | 1 | -0/+8 |
| | | | | | | | | | | | | 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. | ||||
* | | `collection_check_boxes` respects `:index` option for the hidden filed name. | Vasiliy Ermolovich | 2014-04-14 | 1 | -0/+6 |
|/ | | | | closes #14147 | ||||
* | Fix date_select option overwriting html classes | Izumi Wong-Horiuchi | 2014-03-24 | 1 | -0/+4 |
| | | | | | with_css_classes: true option overwrites other html classes. Concatenate day month and year classes rather than overwriting. | ||||
* | fix `number_to_percentage` with `Float::NAN`, `Float::INFINITY`. | Yves Senn | 2014-03-17 | 1 | -0/+7 |
| | | | | | | | Closes #14405. This is a follow-up to 9e997e9039435617b6a844158f5437e97f6bc107 to restore the documented behavior. | ||||
* | Merge pull request #12662 from nashby/include-hidden-collection | Rafael Mendonça França | 2014-03-15 | 1 | -0/+4 |
|\ | | | | | | | | | | | | | | | add include_hidden option to collection_check_boxes helper Conflicts: actionview/CHANGELOG.md actionview/test/template/form_collections_helper_test.rb | ||||
| * | add include_hidden option to collection_check_boxes helper | Vasiliy Ermolovich | 2013-10-27 | 1 | -1/+5 |
| | | |||||
* | | Variants in ActionView::Digestor | Piotr Chmolowski | 2014-03-04 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | | | Take variants into account when calculating template digests in ActionView::Digest. Digestor#digest now takes a hash as an argument to support variants and allow more flexibility in the future. Old-style arguments have been deprecated. Fixes #14242 | ||||
* | | Added missing changlog entry for #14255 | Godfrey Chan | 2014-03-04 | 1 | -0/+7 |
| | | |||||
* | | Point master changelogs to 4-1-stable branch | Carlos Antonio da Silva | 2014-02-25 | 1 | -331/+1 |
| | | | | | | | | Remove 4-1 related entries from master [ci skip] | ||||
* | | Fix ActionView label translation for more than 10 nested elements | Vladimir Krylov | 2014-02-24 | 1 | -1/+5 |
| | | |||||
* | | Merge branch '4-1-0-beta2' | Rafael Mendonça França | 2014-02-18 | 1 | -0/+4 |
|\ \ | | | | | | | | | | | | | | | | Conflicts: actionview/CHANGELOG.md activerecord/CHANGELOG.md | ||||
| * | | Preparing for 4.1.0.beta2 release | Rafael Mendonça França | 2014-02-18 | 1 | -0/+4 |
| | | | |||||
* | | | Add missing CHANGELOG entry to Action View | Prem Sichanugrist | 2014-02-18 | 1 | -0/+5 |
| | | | |||||
* | | | implements new option :month_format_string for date select helpers [Closes ↵ | Xavier Noria | 2014-02-15 | 1 | -0/+14 |
| | | | | | | | | | | | | #13618] | ||||
* | | | Minor changelog improvements [ci skip] | Carlos Antonio da Silva | 2014-01-31 | 1 | -1/+1 |
| | | | |||||
* | | | tidy CHANGELOGs [ci skip] | Yves Senn | 2014-01-30 | 1 | -8/+10 |
| | | | |||||
* | | | Rails config for raise on missing translations | Kassio Borges | 2014-01-27 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | Add a config to setup whether raise exception for missing translation or not. | ||||
* | | | Update changelog | João Britto | 2014-01-09 | 1 | -0/+7 |
| | | | |||||
* | | | Switched to use `display:none` in extra_tags_for_form method. | Gaelian Ditchburn | 2014-01-05 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The use of `display:inline` with the content_tag call in the extra_tags_for_form method potentially causes display issues with some browsers, namely Internet Explorer. IE's behaviour of not collapsing the line height on divs with ostensibly no content means that the automatically added div containing the hidden authenticity_token, utf8 and _method form input tags may interfere with other visible form elements in certain circumstances. The use of `display:none` rather than `display:inline` fixes this problem. Fixes #6403 | ||||
* | | | Add a changelog entry for #13363 [ci skip] | Robin Dupret | 2013-12-21 | 1 | -0/+8 |
|/ / | |||||
* | | Merge pull request #13059 from imkmf/cycle-accepts-array | Rafael Mendonça França | 2013-12-06 | 1 | -0/+18 |
|\ \ | | | | | | | | | | | | | | | | | | | Cycle object should accept an array Conflicts: actionview/CHANGELOG.md | ||||
| * | | A Cycle object should accept an array and cycle through it as it would | Kristian Freeman | 2013-12-06 | 1 | -0/+16 |
| | | | | | | | | | | | | with a set of comma-separated objects. | ||||
* | | | Label only accepts `:index` and `:namespace` attributes from the input | Andriel Nuernberg | 2013-12-05 | 1 | -0/+25 |
| | | | |||||
* | | | Added \u2028 \u2029 to json_escape | Godfrey Chan | 2013-12-04 | 1 | -0/+3 |
| | | | |||||
* | | | Fixed a long-standing bug in `json_escape` that strips quotation marks | Godfrey Chan | 2013-12-04 | 1 | -0/+4 |
| | | | |||||
* | | | `ActionView::MissingTemplate` for partials includes underscore. | Yves Senn | 2013-12-02 | 1 | -0/+6 |
|/ / | | | | | | | | | | | Missing partial folder/_partial instead of folder/partial. Closes #13002. | ||||
* | | Use `set_backtrace` instead of `@backtrace` in ActionView error | Shimpei Makimoto | 2013-11-16 | 1 | -0/+4 |
| | | |||||
* | | Improve changelogs formatting [ci skip] | Carlos Antonio da Silva | 2013-11-09 | 1 | -6/+6 |
| | | |||||
* | | fix simple_format escapes own output when sanitize is set to true | pseidemann | 2013-11-08 | 1 | -1/+5 |
| | | |||||
* | | Fix typo in the CHANGELOG | Jérémy Lecour | 2013-10-31 | 1 | -1/+1 |
|/ | |||||
* | update changelog | Brad Murray | 2013-10-15 | 1 | -0/+5 |
| | |||||
* | Add CHANGELOG entry for #12344 | Rafael Mendonça França | 2013-09-24 | 1 | -0/+5 |
| | | | | [ci skip] | ||||
* | Fix some edge cases for AV `select` helper with `:selected` option | Bogdan Gusiev | 2013-09-23 | 1 | -0/+4 |
| | |||||
* | Use ERB in the CHANGELOG [ci skip] | Rafael Mendonça França | 2013-09-23 | 1 | -3/+5 |
| | |||||
* | Ability to pass block to AV#select helper | Bogdan Gusiev | 2013-09-23 | 1 | -0/+8 |
| | | | | | | | | Example: = select(report, "campaign_ids") do - available_campaigns.each do |c| %option{:data => {:tags => c.tags.to_json}, :value => c.id}= c.name | ||||
* | handle `:namespace` form option in collection labels | Vasiliy Ermolovich | 2013-09-22 | 1 | -0/+4 |
| |