| Commit message (Expand) | Author | Age | Files | Lines |
* | Premature commit | David Heinemeier Hansson | 2006-11-30 | 1 | -6/+0 |
* | Fixed that script/server running against Mongrel should tail the proper log r... | David Heinemeier Hansson | 2006-11-30 | 1 | -0/+6 |
* | strip_tags passes through blank args such as nil or "". Closes #6702, refere... | Jeremy Kemper | 2006-11-26 | 1 | -1/+1 |
* | Extract template_changed_since? from compile_template? so plugins may overrid... | Jeremy Kemper | 2006-11-20 | 1 | -1/+36 |
* | simple_format helper doesn't choke on nil. Closes #6644. | Jeremy Kemper | 2006-11-19 | 1 | -5/+9 |
* | Missed pluralize nil test in [5431]. | Jeremy Kemper | 2006-11-06 | 1 | -0/+1 |
* | Deprecate JavaScriptHelper#update_element_function, which is superseeded by R... | Thomas Fuchs | 2006-11-06 | 2 | -24/+36 |
* | Set ActionView::Base.default_form_builder once rather than passing the :build... | Jeremy Kemper | 2006-11-03 | 1 | -1/+25 |
* | Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now... | Rick Olson | 2006-10-24 | 1 | -0/+28 |
* | Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of... | Rick Olson | 2006-10-24 | 3 | -4/+10 |
* | Made FormTagHelper#form_tag work with blocks, rendering start/end_form_tag de... | David Heinemeier Hansson | 2006-10-23 | 1 | -1/+18 |
* | Added block-usage to TagHelper#content_tag [DHH] | David Heinemeier Hansson | 2006-10-23 | 1 | -3/+14 |
* | Docfix (closes #6393) | David Heinemeier Hansson | 2006-10-22 | 1 | -5/+7 |
* | Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true (close... | David Heinemeier Hansson | 2006-10-22 | 1 | -11/+20 |
* | Upgraded NumberHelper with number_to_phone support international formats to c... | David Heinemeier Hansson | 2006-10-22 | 1 | -29/+55 |
* | Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after... | David Heinemeier Hansson | 2006-10-22 | 1 | -1/+8 |
* | Force *_url named routes to show the host in ActionView [Rick] | Rick Olson | 2006-10-20 | 1 | -1/+56 |
* | Add support for converting blocks into function arguments in JavaScriptGenera... | Sam Stephenson | 2006-10-19 | 1 | -0/+27 |
* | Add <%= escape_once html %> to escape html while leaving any currently escape... | Rick Olson | 2006-10-18 | 2 | -0/+8 |
* | Fix double-escaped entities, such as &amp;, &#123;, etc. [Rick] | Rick Olson | 2006-10-18 | 1 | -0/+12 |
* | test deprecated instance variables using to_s instead of inspect which touche... | Jeremy Kemper | 2006-10-18 | 1 | -2/+2 |
* | Replace KCODE checks with String#chars for truncate. Closes #6385 [Manfred S... | Michael Koziarski | 2006-10-14 | 1 | -2/+2 |
* | Use String#chars in TextHelper::excerpt. Closes #6386 [Manfred Stienstra] | Michael Koziarski | 2006-10-12 | 1 | -25/+18 |
* | Fixed that NumberHelper#number_to_delimiter should respect precision of highe... | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+9 |
* | Fixed that FormHelper#radio_button didn't respect an :id being passed in (clo... | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+6 |
* | Added an html_options hash parameter to javascript_tag() and update_page_tag(... | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+6 |
* | Fixed escaping of backslashes in JavaScriptHelper#escape_javascript (closes #... | David Heinemeier Hansson | 2006-10-09 | 1 | -0/+1 |
* | strip_links is case-insensitive. Closes #6285. | Jeremy Kemper | 2006-09-26 | 1 | -0/+1 |
* | Update JavaScriptGenerator#show/hide/toggle/remove to new Prototype syntax fo... | Thomas Fuchs | 2006-09-07 | 1 | -5/+12 |
* | Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_functi... | David Heinemeier Hansson | 2006-09-06 | 1 | -0/+13 |
* | Added access to nested attributes in RJS (closes #4548) [richcollins@gmail.com] | David Heinemeier Hansson | 2006-09-04 | 1 | -0/+10 |
* | Fixed that AssetTagHelper#image_tag and others using compute_public_path shou... | David Heinemeier Hansson | 2006-09-04 | 1 | -0/+9 |
* | Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that ... | David Heinemeier Hansson | 2006-09-04 | 1 | -7/+10 |
* | Fixed TextHelper#simple_format to deal with multiple single returns within a ... | David Heinemeier Hansson | 2006-09-04 | 1 | -0/+1 |
* | Fixed TextHelper#pluralize to handle 1 as a string (closes #5905) [rails@benc... | David Heinemeier Hansson | 2006-09-04 | 1 | -0/+4 |
* | Improved resolution of DateHelper#distance_of_time_in_words for better precis... | David Heinemeier Hansson | 2006-09-04 | 1 | -41/+69 |
* | Added deprecation language for in_place_editor and auto_complete_field that b... | David Heinemeier Hansson | 2006-09-03 | 1 | -0/+1 |
* | radio_button_tag generates unique id attributes. Closes #3353. | Jeremy Kemper | 2006-09-03 | 1 | -1/+14 |
* | strip_tags returns nil for a blank arg such as nil or "". Closes #2229. | Jeremy Kemper | 2006-09-03 | 1 | -2/+2 |
* | button_to accepts :method so you can PUT and DELETE with it. Closes #6005. | Jeremy Kemper | 2006-09-03 | 1 | -0/+14 |
* | Update sanitize text helper to strip plaintext tags, and <img src=javascript:... | Rick Olson | 2006-09-03 | 1 | -0/+12 |
* | Make auto_link parse a greater subset of valid url formats. | Jamis Buck | 2006-09-02 | 1 | -0/+18 |
* | Deprecation: test deprecated instance vars in partials. | Jeremy Kemper | 2006-08-26 | 1 | -7/+19 |
* | New dependencies implementation | Nicholas Seckar | 2006-08-08 | 1 | -0/+1 |
* | Deprecate direct usage of @params. Update ActionView::Base for instance var d... | Jeremy Kemper | 2006-08-07 | 1 | -0/+31 |
* | Add support for the param_name parameter to the auto_complete_field helper. F... | Thomas Fuchs | 2006-08-07 | 1 | -0/+2 |
* | Make test_tag_options pass (closes #5600) [shugo] | David Heinemeier Hansson | 2006-08-05 | 1 | -1/+1 |
* | Added months and years to the resolution of DateHelper#distance_of_time_in_wo... | David Heinemeier Hansson | 2006-08-05 | 1 | -0/+10 |
* | Allow form_for and fields_for to work with indexed form inputs. [Jeremy Kemp... | Rick Olson | 2006-07-18 | 1 | -0/+18 |
* | r4487@asus: jeremy | 2006-04-29 12:21:39 -0700 | Jeremy Kemper | 2006-07-08 | 2 | -9/+21 |