| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed that TextHelper#text_field would corrypt when raw HTML was used as the ... | David Heinemeier Hansson | 2008-05-01 | 1 | -0/+2 |
* | Added ActionController::TestCase#rescue_action_in_public! to control whether ... | David Heinemeier Hansson | 2008-04-27 | 1 | -0/+2 |
* | Delegate ivars to controller instead of copying | Pratik Naik | 2008-04-21 | 1 | -0/+2 |
* | select_datetime and select_time default to Time.zone.now when config.time_zon... | gbuesing | 2008-04-21 | 1 | -0/+2 |
* | datetime_select defaults to Time.zone.now when config.time_zone is set | gbuesing | 2008-04-21 | 1 | -0/+2 |
* | Remove ActionController::Base#view_controller_internals | Pratik Naik | 2008-04-21 | 1 | -0/+2 |
* | Add conditional options to caches_page method [#25 state:resolved] | Paul Horsfall | 2008-04-19 | 1 | -0/+2 |
* | Move missing template logic to ActionView | Pratik Naik | 2008-04-19 | 1 | -0/+2 |
* | Introduce ActionView::InlineTemplate class | Pratik Naik | 2008-04-19 | 1 | -0/+2 |
* | Automatically parse posted JSON content for Mime::JSON requests. [rick] | Rick Olson | 2008-04-08 | 1 | -0/+10 |
* | add json_escape ERB util to escape html entities in json strings that are out... | Rick Olson | 2008-04-08 | 1 | -0/+2 |
* | Provide a helper proxy to access helper methods from outside views. Closes #1... | Josh Peek | 2008-04-06 | 1 | -0/+3 |
* | Improve documentation. | Pratik Naik | 2008-04-05 | 1 | -0/+2 |
* | Ensure RJS redirect_to doesn't html-escapes string argument. Closes #8546 | Pratik Naik | 2008-04-02 | 1 | -0/+2 |
* | Support render :partial => collection of heterogeneous elements. Closes #11491. | Jeremy Kemper | 2008-04-01 | 1 | -0/+2 |
* | Avoid remote_ip spoofing | Jeremy Kemper | 2008-03-28 | 1 | -0/+2 |
* | Added support for regexp flags like ignoring case in the :requirements part o... | David Heinemeier Hansson | 2008-03-28 | 1 | -0/+2 |
* | Fixed that ActionController::Base#read_multipart would fail if boundary was e... | David Heinemeier Hansson | 2008-03-28 | 1 | -0/+2 |
* | Fixed HTML::Tokenizer (used in sanitize helper) didnt handle unclosed CDATA t... | David Heinemeier Hansson | 2008-03-28 | 1 | -0/+2 |
* | Improve documentation. | Pratik Naik | 2008-03-26 | 1 | -0/+2 |
* | Fixed that FormHelper#radio_button would produce invalid ids (closes #11298) ... | David Heinemeier Hansson | 2008-03-24 | 1 | -0/+2 |
* | Added :confirm option to submit_tag (closes #11415) [miloops] | David Heinemeier Hansson | 2008-03-24 | 1 | -0/+2 |
* | Fixed NumberHelper#number_with_precision to properly round in a way that work... | David Heinemeier Hansson | 2008-03-24 | 1 | -1/+3 |
* | Allow the #simple_format text_helper to take an html_options hash for each pa... | Rick Olson | 2008-03-24 | 1 | -0/+2 |
* | Fix regression from filter refactoring where re-adding a skipped filter resul... | Rick Olson | 2008-03-23 | 1 | -0/+2 |
* | Re-added ActionView::Helpers::register_javascript/stylesheet_expansion to mak... | Jeremy Kemper | 2008-03-20 | 1 | -0/+2 |
* | Revert [9106]. References #10350. | Jeremy Kemper | 2008-03-19 | 1 | -2/+0 |
* | Refactor filters to use Active Support callbacks. Closes #11235. | Jeremy Kemper | 2008-03-18 | 1 | -0/+2 |
* | Fixed that polymorphic routes would modify the input array (closes #11363) [t... | David Heinemeier Hansson | 2008-03-17 | 1 | -0/+2 |
* | Added :format option to NumberHelper#number_to_currency to enable better loca... | David Heinemeier Hansson | 2008-03-17 | 1 | -0/+2 |
* | Fixed that TextHelper#excerpt would include one character too many (closes #1... | David Heinemeier Hansson | 2008-03-15 | 1 | -0/+2 |
* | Fix more obscure nested parameter hash parsing bug. Closes #10797 [thomas.lee] | Rick Olson | 2008-03-13 | 1 | -0/+2 |
* | Added ActionView::Helpers::register_javascript/stylesheet_expansion to make i... | David Heinemeier Hansson | 2008-03-13 | 1 | -0/+2 |
* | Fix nested parameter hash parsing bug. #10797 [thomas.lee] | Rick Olson | 2008-03-11 | 1 | -0/+2 |
* | Allow using named routes in ActionController::TestCase before any request has... | Pratik Naik | 2008-03-08 | 1 | -0/+2 |
* | Fixed that sweepers defined by cache_sweeper will be added regardless of the ... | David Heinemeier Hansson | 2008-03-08 | 1 | -0/+2 |
* | Make MimeResponds::Responder#any work without explicit types. Closes #11140 [... | Pratik Naik | 2008-03-07 | 1 | -0/+2 |
* | Better error message for type conflicts when parsing params. Closes #7962 [s... | Rick Olson | 2008-03-07 | 1 | -0/+2 |
* | Remove unused ActionController::Base.template_class. Closes #10787 | Pratik Naik | 2008-03-05 | 1 | -0/+2 |
* | Moved template handlers related code from ActionView::Base to ActionView::Tem... | Pratik Naik | 2008-03-05 | 1 | -0/+2 |
* | Tests for div_for and content_tag_for helpers. Closes #11223 [thechrisoshow] | Pratik Naik | 2008-03-05 | 1 | -0/+2 |
* | Allow file uploads in Integration Tests. Closes #11091 [RubyRedRick] | Michael Koziarski | 2008-03-03 | 1 | -0/+2 |
* | Refactor partial rendering into a PartialTemplate class. [Pratik] | Michael Koziarski | 2008-03-03 | 1 | -0/+2 |
* | Added that requests with JavaScript as the priority mime type in the accept h... | David Heinemeier Hansson | 2008-02-29 | 1 | -0/+2 |
* | Tests for distance_of_time_in_words with TimeWithZone instances. Closes #1091... | Geoff Buesing | 2008-02-16 | 1 | -0/+2 |
* | remove support for ampersand-delimited cookie values | Jamis Buck | 2008-02-12 | 1 | -0/+2 |
* | Fix problem with render :partial collections, records, and locals. #11057 [lo... | Marcel Molina | 2008-02-08 | 1 | -0/+2 |
* | Added support for naming concrete classes in sweeper declarations [DHH] | David Heinemeier Hansson | 2008-02-07 | 1 | -0/+2 |
* | Remove ERB trim variables from trace template in case ActionView::Base.erb_tr... | Rick Olson | 2008-02-07 | 1 | -0/+2 |
* | Fix typo in form_helper documentation. Closes #10650 [xaviershay, kampers] | Rick Olson | 2008-02-07 | 1 | -0/+2 |