Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | 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 | |
| | ||||||
* | Bust the template digest cache key when details are changed | Daniel Schierbeck | 2013-09-19 | 1 | -0/+6 | |
| | | | | | | Since the lookup details will influence which template is resolved, they need to be included in the cache key -- otherwise two different templates may erroneously share the same digest value. | |||||
* | Merge pull request #12112 from adamniedzielski/fix-form-for-namespace-and-as | Rafael Mendonça França | 2013-09-12 | 1 | -0/+7 | |
|\ | | | | | | | | | | | | | form_for - fix :namespace and :as options clash Conflicts: actionview/CHANGELOG.md | |||||
| * | form_for - fix :namespace and :as options clash | Adam Niedzielski | 2013-09-09 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | :as option should not overwrite :namespace option when generating html id attribute of the form element. id should be prefixed by specified namespace even if :as option is present Add test case showing the issue and code fixing it | |||||
* | | Write the right CHANGELOG entry for #11603 | Rafael Mendonça França | 2013-09-12 | 1 | -1/+1 | |
| | | | | | | | | [ci skip] | |||||
* | | Cleanup of excerpt helper | Paul Nikitochkin | 2013-09-06 | 1 | -0/+4 | |
|/ | | | | | * replaced String concatenation by joining * separator has default value to '', even it is nil | |||||
* | Improve CHANGELOG entry [ci skip] | Rafael Mendonça França | 2013-08-27 | 1 | -4/+2 | |
| | ||||||
* | Only cache template digests if config.cache_template_loading | Josh Lauer | 2013-08-06 | 1 | -0/+6 | |
| | | | | | | since ActionView::Resolver.caching is set to the same value as config.cache_template_loading only cache template digests if config.cache_template_loading is not falsy fixes issues #10752 and #10791 | |||||
* | Add "extname" option to javascript_include_tag | Nathan Stitt | 2013-08-03 | 1 | -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 Das | 2013-08-02 | 1 | -1/+1 | |
| | ||||||
* | Fix `current_page?` when the URL contains escaped characters | Rafael Mendonça França | 2013-08-01 | 1 | -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_field | Joel Cogen | 2013-07-24 | 1 | -0/+14 | |
| | ||||||
* | Fix changelog syntax and use Ruby 1.9 hash style [ci skip] | Carlos Antonio da Silva | 2013-07-22 | 1 | -2/+1 | |
| | ||||||
* | add support for html attributes to grouped_options_for_select | Vasiliy Ermolovich | 2013-07-20 | 1 | -0/+10 | |
| | ||||||
* | Use the canonical router on the CHANGELOG entry | Rafael Mendonça França | 2013-07-18 | 1 | -1/+1 | |
| | | | | | | Thanks @egilburg [ci skip] | |||||
* | Fix default rendered format problem when calling render method without ↵ | kennyj | 2013-07-15 | 1 | -0/+5 | |
| | | | | :content_type option. Closes #11393. | |||||
* | Add CHANGELOG entry for #11348 | Rafael Mendonça França | 2013-07-07 | 1 | -0/+14 | |
| | ||||||
* | Fix "Stack Level Too Deep" error when rendering recursive partials | Rafael Mendonça França | 2013-07-07 | 1 | -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` method | Takayuki Matsubara | 2013-07-07 | 1 | -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="✓" />..</form>' After: form_tag # => '<form>..<input name="utf8" type="hidden" value="✓" />..</form>' form_tag({}, { :enforce_utf8 => false }) # => '<form>....</form>' | |||||
* | Remove the deprecated include_seconds argument from distance_of_time_in_words | Carlos Antonio da Silva | 2013-07-02 | 1 | -1/+6 | |
| | | | | Pass in an :include_seconds hash option to use this feature. | |||||
* | Remove `FormBuilder` deprecation warning about block argument and associated ↵ | Vipul A M | 2013-07-02 | 1 | -0/+4 | |
| | | | | tests | |||||
* | fetch value(s) from stringified options | Jon Rowe | 2013-06-29 | 1 | -0/+4 | |
| | ||||||
* | Review AV changelog [ci skip] | Carlos Antonio da Silva | 2013-06-27 | 1 | -2/+2 | |
| | ||||||
* | Remove passing the prompt to grouped_options_for_select as an argument, ↵ | kennyj | 2013-06-28 | 1 | -0/+5 | |
| | | | | because it was deprecated. | |||||
* | Add CHANGELOG entry for #10971 | Rafael Mendonça França | 2013-06-24 | 1 | -1/+15 | |
| | | | | | | | [ci skip] Conflicts: actionpack/CHANGELOG.md | |||||
* | Adjust changelog for AV & AP | Łukasz Strzałkowski | 2013-06-20 | 1 | -1/+42 | |
| | ||||||
* | Remove heading from AV's CHANGELOG | Łukasz Strzałkowski | 2013-06-20 | 1 | -2/+0 | |
| | ||||||
* | ActionView version should be 4.1.0 | Piotr Sarnacki | 2013-06-20 | 1 | -1/+1 | |
| | ||||||
* | Add bare actionview gem to the root directory | Piotr Sarnacki | 2013-06-20 | 1 | -0/+3 | |
This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack. |