aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
Commit message (Collapse)AuthorAgeFilesLines
* Optimize url helpers.Sergey Nartimov + José Valim2012-03-021-9/+14
|
* Merge branch 'master-security'Aaron Patterson2012-03-012-4/+3
|\ | | | | | | | | | | | | | | | | | | | | | | * master-security: Ensure [] respects the status of the buffer. delete vulnerable AS::SafeBuffer#[] use AS::SafeBuffer#clone_empty for flushing the output_buffer add AS::SafeBuffer#clone_empty fix output safety issue with select options Conflicts: actionpack/lib/action_view/helpers/tags/base.rb
| * use AS::SafeBuffer#clone_empty for flushing the output_bufferAkira Matsuda2012-02-201-1/+1
| |
| * fix output safety issue with select optionsSergey Nartimov2012-02-201-3/+3
| |
* | Change asset_host config language to be more helpful and accurateGabe Hollombe2012-02-281-2/+3
| |
* | Add a new line after the textarea opening tag.Rafael Mendonça França2012-02-271-1/+1
| | | | | | | | Closes #393
* | Fix collection_check_boxes and collection_radio_buttons when using localRafael Mendonça França2012-02-261-0/+1
| | | | | | | | variables in the form builder
* | Add documentation to object method of CollectionHelpers::BuilderRafael Mendonça França2012-02-261-6/+6
| |
* | use content_tag instead stringsVasiliy Ermolovich2012-02-251-3/+4
| |
* | Merge pull request #5117 from nashby/form-option-refactorJosé Valim2012-02-251-17/+11
|\ \ | | | | | | FormOptionsHelper refactor
| * | refactor option_text_and_value and option_value_selected? methodsVasiliy Ermolovich2012-02-211-10/+3
| | |
| * | refactor time_zone_options_for_selectVasiliy Ermolovich2012-02-211-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 putXavier Noria2012-02-241-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 Noria2012-02-243-4/+1
| | | | | | | | the update action of resources
* | correct fetching :name option in form fieldsVasiliy Ermolovich2012-02-231-3/+3
| |
* | Only set ActionView configuration inside the on_load blockRafael Mendonça França2012-02-221-1/+1
| |
* | Merge pull request #5130 from dlee/revised_patch_verbXavier Noria2012-02-224-6/+9
|\ \ | | | | | | Add config.default_method_for_update to support PATCH
| * | Add config.default_method_for_update to support PATCHDavid Lee2012-02-224-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 Pastorino2012-02-225-28/+12
|/ / | | | | | | | | | | is being rendered Closes #5025 part 2
* | fix bad docs from f373f296 [ci skip]Vijay Dev2012-02-211-3/+3
| |
* | Don't wrap the raise with ensureSantiago Pastorino2012-02-211-9/+11
| |
* | Refactored two methods to use delete with a blockRuben Fonseca2012-02-211-1/+1
| |
* | Restore lookup formats to the previous value after searching for the failing ↵Santiago Pastorino2012-02-211-1/+3
|/ | | | view
* Merge pull request #5102 from nashby/form-option-refactorJosé Valim2012-02-201-12/+13
|\ | | | | form option refactor
| * refactor options_for_selectVasiliy Ermolovich2012-02-201-7/+8
| |
| * refactor grouped_options_for_selectVasiliy Ermolovich2012-02-201-5/+5
| |
* | Use the right format when a partial is missing.Santiago Pastorino2012-02-201-0/+1
| | | | | | | | Closes #5025
* | Merge pull request #5101 from ckdake/ckdake_actionview_handler_resetJosé Valim2012-02-201-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-optionsJosé Valim2012-02-201-1/+6
|\ | | | | add selected and disabled options to grouped select
| * add selected and disabled option to grouped selectVasiliy Ermolovich2012-02-181-1/+6
| |
* | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-02-181-5/+5
|\ \ | |/ |/|
| * Update f.button docs to reflect real label implementationCarlos Antonio da Silva2012-02-141-5/+5
| |
* | Remove not used button translation from av localeCarlos Antonio da Silva2012-02-141-8/+1
| |
* | Allow collection helpers with block to access current object in the collectionCarlos Antonio da Silva2012-02-133-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 encodingVishnu Atrai2012-02-131-1/+0
| |
* | Add HTML5 input[type="date"] helperOlek Janiszewski2012-02-125-1/+43
|/
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-02-091-1/+1
|\ | | | | | | | | Conflicts: activerecord/lib/active_record/relation/query_methods.rb
| * Stop referring to Atom as "ATOM"Tom Stuart2012-02-051-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_messagesJosé Valim2012-02-071-1/+1
| |
* | Always use content_tag for audio/video tagRafael Mendonça França2012-02-071-1/+1
| | | | | | | | Closes #4919
* | Highlight defaults to HTML5 `mark` elementBrian Cardarella2012-02-051-4/+4
| |
* | Add *_url helpers to get the full assets URLPrem Sichanugrist2012-02-043-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 andRafael Mendonça França2012-02-023-10/+10
| | | | | | | | | | | | collection_radio_buttons [Carlos Antonio da Silva + Rafael Mendonça França]
* | Allow collection radio_buttons/check_boxes to access current text/valueCarlos Antonio da Silva2012-02-022-0/+16
| | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França]
* | Add changelog, docs and guides entriesCarlos Antonio da Silva2012-02-021-17/+63
| | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França]
* | Allow proc for value/text method in collection_selectCarlos Antonio da Silva2012-02-022-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 FormOptionsHelperCarlos Antonio da Silva2012-02-024-92/+81
| | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França]
* | Extract common collection helpers to a module to avoid too much inheritanceCarlos Antonio da Silva2012-02-023-69/+93
| | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França]
* | Create a Builder factory class to use with collection helpers + blockCarlos Antonio da Silva2012-02-022-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 callsCarlos Antonio da Silva2012-02-022-8/+18
| | | | | | | | [Carlos Antonio da Silva + Rafael Mendonça França]