| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed ActionView::Helpers::ActiveRecordHelper::form for when protect_from_for... | David Heinemeier Hansson | 2008-01-11 | 1 | -0/+22 |
* | * Pass around handler instances, not their classes [Koz] | Michael Koziarski | 2008-01-11 | 1 | -108/+109 |
* | Ruby 1.9 compat: account for hash ordering | Jeremy Kemper | 2008-01-07 | 1 | -4/+3 |
* | The asset_host block takes the controller request as an optional second argum... | Jeremy Kemper | 2008-01-06 | 1 | -1/+40 |
* | require abstract_unit directly since test is in load path | Jeremy Kemper | 2008-01-05 | 16 | -46/+18 |
* | Fix atom_feed_helper to comply with the atom spec. Closes #10672 [xaviershay] | Rick Olson | 2008-01-02 | 1 | -2/+52 |
* | Fix failing date helper test. Closes #10664 [Wesley Moxam] | Jeremy Kemper | 2008-01-02 | 1 | -1/+1 |
* | Fix that auto_link looks for ='s in url paths (Amazon urls have them). Close... | Rick Olson | 2007-12-28 | 1 | -0/+1 |
* | Add :default option to time_zone_select. Closes #10590. | Jeremy Kemper | 2007-12-21 | 1 | -0/+28 |
* | Rails 1.9 compat: asset tag helper tests | Jeremy Kemper | 2007-12-21 | 1 | -12/+12 |
* | Ruby 1.9 compat: compiled templates test | Jeremy Kemper | 2007-12-21 | 1 | -1/+5 |
* | Ruby 1.9 compat: note failing form options helper test, probably in html-scanner | Jeremy Kemper | 2007-12-21 | 1 | -0/+1 |
* | Ruby 1.9 compat: text helper | Jeremy Kemper | 2007-12-21 | 2 | -15/+32 |
* | Ruby 1.9 compat: ENV.delete rather than assigning nil | Jeremy Kemper | 2007-12-20 | 1 | -1/+1 |
* | Add tests for html_escape, and remove an unneeded backslash (closes #10511) [... | David Heinemeier Hansson | 2007-12-16 | 1 | -0/+56 |
* | Added option to pass proc to ActionController::Base.asset_host for maximum co... | David Heinemeier Hansson | 2007-12-16 | 1 | -3/+36 |
* | More Action View refactoring. Knock :erb default down a notch. Closes #10455. | Jeremy Kemper | 2007-12-10 | 1 | -12/+14 |
* | Ruby 1.9 compat: File.exists\? -> File.exist\? en masse. References #1689 [Pr... | Jeremy Kemper | 2007-12-10 | 1 | -9/+9 |
* | Remove Great Britain from the Country select helper to ensure consistency wit... | Michael Koziarski | 2007-12-05 | 1 | -3/+0 |
* | Add 'disabled' attribute to <OPTION> separators used in time zone and country... | Rick Olson | 2007-12-04 | 1 | -6/+6 |
* | Don't escape forward slashes with String#to_json, our unicode encoding of < a... | Michael Koziarski | 2007-12-02 | 2 | -14/+14 |
* | Deal with nested fields_for too [DHH] | David Heinemeier Hansson | 2007-12-02 | 1 | -0/+22 |
* | Added the same record identification guessing rules to fields_for as form_for... | David Heinemeier Hansson | 2007-12-02 | 1 | -0/+17 |
* | Refactor sanitizer helpers into HTML classes and make it easy to swap them ou... | Rick Olson | 2007-11-26 | 1 | -187/+2 |
* | Added :mouseover short-cut to AssetTagHelper#image_tag for doing easy image s... | David Heinemeier Hansson | 2007-11-07 | 1 | -1/+4 |
* | Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with... | Rick Olson | 2007-10-29 | 2 | -13/+13 |
* | Tested FormHelper#label. Closes #9850 [jarkko] | Jeremy Kemper | 2007-10-27 | 1 | -1/+9 |
* | Update tests for ActiveSupport's JSON escaping change. [rick] | Rick Olson | 2007-10-26 | 3 | -14/+17 |
* | FormHelper's auto_index should use #to_param instead of #id_before_type_cast.... | Rick Olson | 2007-10-26 | 1 | -1/+2 |
* | Disabled checkboxes don't submit a form value. Closes #9301. | Jeremy Kemper | 2007-10-23 | 1 | -0/+7 |
* | Added tests for options to ActiveRecordHelper#form. Closes #7213 [richcollins... | Marcel Molina | 2007-10-23 | 1 | -0/+9 |
* | Expand form helper test coverage. Closes #9950 [robinjfisher] | Jeremy Kemper | 2007-10-22 | 1 | -1/+55 |
* | Remove more potential clashes with asset methods and resource routes. Closes... | Michael Koziarski | 2007-10-19 | 1 | -1/+29 |
* | Rename image_path path_to_image to avoid conflicting with named routes. Clos... | Michael Koziarski | 2007-10-19 | 1 | -0/+4 |
* | Test link_to 'back', :back | Jeremy Kemper | 2007-10-16 | 1 | -0/+10 |
* | Sync country_select with ISO 3166 long names. Closes #6872 [abhay, mikong, r... | Michael Koziarski | 2007-10-15 | 1 | -21/+751 |
* | error_messages_for also takes :message and :header_message options which defa... | Jeremy Kemper | 2007-10-14 | 1 | -0/+8 |
* | Extracted sanitization methods from TextHelper to SanitizeHelper [DHH] Change... | David Heinemeier Hansson | 2007-10-10 | 2 | -222/+234 |
* | Add link_to :back which uses your referrer with a fallback to a javascript li... | Michael Koziarski | 2007-10-08 | 1 | -1/+11 |
* | error_messages_for and friends also work with local variables. Closes #9699. | Jeremy Kemper | 2007-10-07 | 2 | -1/+41 |
* | Fixed that strip_tags blows up with invalid html (closes #9730) [lifo] | David Heinemeier Hansson | 2007-09-29 | 1 | -0/+3 |
* | Allow ability to disable request forgery protection, disable it in test mode ... | Rick Olson | 2007-09-28 | 5 | -12/+15 |
* | Fixed spelling errors (closes #9706) [tarmo/rmm5t] | David Heinemeier Hansson | 2007-09-28 | 1 | -8/+8 |
* | Include asset host in public path cache key. Clear cache between asset tag te... | Jeremy Kemper | 2007-09-24 | 1 | -0/+5 |
* | The tag helper may bypass escaping. | Jeremy Kemper | 2007-09-24 | 1 | -0/+4 |
* | Rename some RequestForgeryProtection methods. The class method is now #prote... | Rick Olson | 2007-09-23 | 1 | -8/+1 |
* | Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha... | Rick Olson | 2007-09-23 | 5 | -0/+22 |
* | Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. ... | Rick Olson | 2007-09-23 | 1 | -15/+191 |
* | Test fix (closes #6911) | David Heinemeier Hansson | 2007-09-22 | 1 | -1/+1 |
* | Improve tests (closes #7240) [josh] | David Heinemeier Hansson | 2007-09-22 | 1 | -0/+5 |