Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | refactor option_text_and_value and option_value_selected? methods | Vasiliy Ermolovich | 2012-02-21 | 1 | -10/+3 | |
| | | | ||||||
| * | | refactor time_zone_options_for_select | Vasiliy Ermolovich | 2012-02-21 | 1 | -7/+8 | |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BTW, select works quite faster then find_all: require 'benchmark' n = [1]*100_000_000 Benchmark.bm do |x| x.report { n.select { |a| a > 1 } } x.report { n.find_all { |a| a > 1 } } end user system total real 7.590000 0.010000 7.600000 ( 7.927171) 9.650000 0.010000 9.660000 ( 9.634406) | |||||
* | | consistently mention first patch, then put | Xavier Noria | 2012-02-24 | 1 | -1/+1 | |
| | | | | | | | | | | | | There was a mix, sometimes patch first, sometimes put first. Use always patch first, since this is going to be the primary verb for updates. | |||||
* | | uses PATCH for the forms of persisted records, and routes PATCH and PUT to ↵ | Xavier Noria | 2012-02-24 | 3 | -4/+1 | |
| | | | | | | | | the update action of resources | |||||
* | | correct fetching :name option in form fields | Vasiliy Ermolovich | 2012-02-23 | 1 | -3/+3 | |
| | | ||||||
* | | Only set ActionView configuration inside the on_load block | Rafael Mendonça França | 2012-02-22 | 1 | -1/+1 | |
| | | ||||||
* | | Merge pull request #5130 from dlee/revised_patch_verb | Xavier Noria | 2012-02-22 | 4 | -6/+9 | |
|\ \ | | | | | | | Add config.default_method_for_update to support PATCH | |||||
| * | | Add config.default_method_for_update to support PATCH | David Lee | 2012-02-22 | 4 | -6/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PATCH is the correct HTML verb to map to the #update action. The semantics for PATCH allows for partial updates, whereas PUT requires a complete replacement. Changes: * adds config.default_method_for_update you can set to :patch * optionally use PATCH instead of PUT in resource routes and forms * adds the #patch verb to routes to detect PATCH requests * adds #patch? to Request * changes documentation and comments to indicate support for PATCH This change maintains complete backwards compatibility by keeping :put as the default for config.default_method_for_update. | |||||
* | | | format lookup for partials is derived from the format in which the template ↵ | Santiago Pastorino | 2012-02-22 | 5 | -28/+12 | |
|/ / | | | | | | | | | | | is being rendered Closes #5025 part 2 | |||||
* | | fix bad docs from f373f296 [ci skip] | Vijay Dev | 2012-02-21 | 1 | -3/+3 | |
| | | ||||||
* | | Don't wrap the raise with ensure | Santiago Pastorino | 2012-02-21 | 1 | -9/+11 | |
| | | ||||||
* | | Refactored two methods to use delete with a block | Ruben Fonseca | 2012-02-21 | 1 | -1/+1 | |
| | | ||||||
* | | Restore lookup formats to the previous value after searching for the failing ↵ | Santiago Pastorino | 2012-02-21 | 1 | -1/+3 | |
|/ | | | | view | |||||
* | Merge pull request #5102 from nashby/form-option-refactor | José Valim | 2012-02-20 | 1 | -12/+13 | |
|\ | | | | | form option refactor | |||||
| * | refactor options_for_select | Vasiliy Ermolovich | 2012-02-20 | 1 | -7/+8 | |
| | | ||||||
| * | refactor grouped_options_for_select | Vasiliy Ermolovich | 2012-02-20 | 1 | -5/+5 | |
| | | ||||||
* | | Use the right format when a partial is missing. | Santiago Pastorino | 2012-02-20 | 1 | -0/+1 | |
| | | | | | | | | Closes #5025 | |||||
* | | Merge pull request #5101 from ckdake/ckdake_actionview_handler_reset | José Valim | 2012-02-20 | 1 | -0/+1 | |
|/ | | | | | | | Reset memoized hash keys when new ActionView::Template handler is registered Conflicts: actionpack/lib/action_view/template/handlers.rb | |||||
* | Merge pull request #5083 from nashby/grouped-select-options | José Valim | 2012-02-20 | 1 | -1/+6 | |
|\ | | | | | add selected and disabled options to grouped select | |||||
| * | add selected and disabled option to grouped select | Vasiliy Ermolovich | 2012-02-18 | 1 | -1/+6 | |
| | | ||||||
* | | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-02-18 | 1 | -5/+5 | |
|\ \ | |/ |/| | ||||||
| * | Update f.button docs to reflect real label implementation | Carlos Antonio da Silva | 2012-02-14 | 1 | -5/+5 | |
| | | ||||||
* | | Remove not used button translation from av locale | Carlos Antonio da Silva | 2012-02-14 | 1 | -8/+1 | |
| | | ||||||
* | | Allow collection helpers with block to access current object in the collection | Carlos Antonio da Silva | 2012-02-13 | 3 | -9/+10 | |
| | | | | | | | | | | | | | | | | | | | | This gives a lot more flexibility to the user, for instance to generate a collection of check boxes and labels, allowing to add custom classes or data-* attributes to the label/check_box using another object attribute. This basically mimics options_for_select functionality that accepts a third option for each item to generate html attributes for each option. | |||||
* | | remove unwanted require for string encoding | Vishnu Atrai | 2012-02-13 | 1 | -1/+0 | |
| | | ||||||
* | | Add HTML5 input[type="date"] helper | Olek Janiszewski | 2012-02-12 | 5 | -1/+43 | |
|/ | ||||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-02-09 | 1 | -1/+1 | |
|\ | | | | | | | | | Conflicts: activerecord/lib/active_record/relation/query_methods.rb | |||||
| * | Stop referring to Atom as "ATOM" | Tom Stuart | 2012-02-05 | 1 | -1/+1 | |
| | | | | | | | | | | | | $ curl -s http://www.ietf.org/rfc/rfc4287 | grep -io ATOM | sort | uniq -c 582 atom 175 Atom | |||||
* | | Trim down Active Model API by removing valid? and errors.full_messages | José Valim | 2012-02-07 | 1 | -1/+1 | |
| | | ||||||
* | | Always use content_tag for audio/video tag | Rafael Mendonça França | 2012-02-07 | 1 | -1/+1 | |
| | | | | | | | | Closes #4919 | |||||
* | | Highlight defaults to HTML5 `mark` element | Brian Cardarella | 2012-02-05 | 1 | -4/+4 | |
| | | ||||||
* | | Add *_url helpers to get the full assets URL | Prem Sichanugrist | 2012-02-04 | 3 | -0/+46 | |
| | | | | | | | | | | | | | | Adds `image_url`, `javascript_url`, `stylesheet_url`, `audio_url`, `video_url`, and `font_url` to assets tag helper. These URL helpers will return the full path to your assets. This is useful when you are going to reference this asset from external host. | |||||
* | | Remove default class to collection_check_boxes and | Rafael Mendonça França | 2012-02-02 | 3 | -10/+10 | |
| | | | | | | | | | | | | collection_radio_buttons [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Allow collection radio_buttons/check_boxes to access current text/value | Carlos Antonio da Silva | 2012-02-02 | 2 | -0/+16 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Add changelog, docs and guides entries | Carlos Antonio da Silva | 2012-02-02 | 1 | -17/+63 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Allow proc for value/text method in collection_select | Carlos Antonio da Silva | 2012-02-02 | 2 | -6/+6 | |
| | | | | | | | | | | | | And options_from_collection_for_select as well. [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Move collection radio buttons / check boxes back to FormOptionsHelper | Carlos Antonio da Silva | 2012-02-02 | 4 | -92/+81 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Extract common collection helpers to a module to avoid too much inheritance | Carlos Antonio da Silva | 2012-02-02 | 3 | -69/+93 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Create a Builder factory class to use with collection helpers + block | Carlos Antonio da Silva | 2012-02-02 | 2 | -17/+41 | |
| | | | | | | | | | | | | | | | | This will make it easy for the user to handle how check box/radio and labels should be generated, abstracting any text/value/default html options required to make it work. [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Refactor collection helpers to extract radio/checkbox/label calls | Carlos Antonio da Silva | 2012-02-02 | 2 | -8/+18 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Remove collection_wrapper* and item_wrapper* options | Carlos Antonio da Silva | 2012-02-02 | 3 | -45/+15 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Refactor value sanitization logic | Carlos Antonio da Silva | 2012-02-02 | 2 | -8/+16 | |
| | | | | | | | | | | | | | | | | | | | | * Extract value sanitization from default name and id method and new collection helpers; * No need to sanitize value in default name and id always; * Improve value_before_type_cast to avoid concating the same method name string twice. [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Cleanup options helper methods a bit | Carlos Antonio da Silva | 2012-02-02 | 1 | -12/+12 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Refactor option groups to use content_tag | Carlos Antonio da Silva | 2012-02-02 | 1 | -4/+4 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Add basic documentation to collection_check_boxes and | Rafael Mendonça França | 2012-02-02 | 1 | -0/+71 | |
| | | | | | | | | | | | | collection_radio_buttons [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Add collection_radio_buttons and collection_check_boxes to FormBuilder | Rafael Mendonça França | 2012-02-02 | 1 | -0/+10 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Refactor the methods to use instance variables | Rafael Mendonça França | 2012-02-02 | 3 | -22/+26 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Refactor render_collection method | Rafael Mendonça França | 2012-02-02 | 2 | -13/+9 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Move collection_check_boxes and collection_radio_buttons to they our | Rafael Mendonça França | 2012-02-02 | 3 | -8/+15 | |
| | | | | | | | | | | | | module [Carlos Antonio da Silva + Rafael Mendonça França] | |||||
* | | Add collection_check_boxes helper | Carlos Antonio da Silva | 2012-02-02 | 3 | -0/+35 | |
| | | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França] |