aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
Commit message (Expand)AuthorAgeFilesLines
* options_for_select allows any objects which respond_to? :first and :last rath...Jeremy Kemper2005-11-101-6/+16
* The auto_link text helper accepts an optional block to format the link text f...Jeremy Kemper2005-11-101-0/+7
* CGI::Session::ActiveRecordStore.data_column_name = 'foobar' to use a differen...Jeremy Kemper2005-11-091-3/+3
* Controllers with acronyms in their names (e.g. PDFController) require the cor...Jeremy Kemper2005-11-082-5/+24
* Added skip_before_filter/skip_after_filter for easier control of the filter c...David Heinemeier Hansson2005-11-041-1/+2
* Added redirect_to :back as a short-hand for redirect_to(request.env["HTTP_REF...David Heinemeier Hansson2005-11-021-0/+10
* Change javascript_include_tag :defaults to not use script.aculo.us loader, wh...Thomas Fuchs2005-11-011-2/+19
* Fix problem where redirecting components can cause an Scott Barron2005-10-301-0/+5
* Added support for the queue option on visual_effectThomas Fuchs2005-10-291-0/+1
* Fix that render :text didn't interpolate instance variables (Closes #2629, #2...David Heinemeier Hansson2005-10-282-1/+12
* Added TextHelper#strip_tags for removing HTML tags from a string (using HTMLT...David Heinemeier Hansson2005-10-261-0/+9
* Added a reader for flash.now, so it's possible to do stuff like flash.now[:al...David Heinemeier Hansson2005-10-261-0/+6
* Reset template variables after using render_to_string. Closes #2559Nicholas Seckar2005-10-252-0/+10
* Expose the session model backing CGI::SessionJeremy Kemper2005-10-202-7/+17
* Fix the html-scanner to count children correctly, playing nicely with :only, ...Jamis Buck2005-10-181-2/+19
* Make string-keys locals assigns optionalNicholas Seckar2005-10-171-2/+6
* Fixed more Windows testsDavid Heinemeier Hansson2005-10-161-2/+2
* added assert_valid to APTobias Lütke2005-10-162-3/+52
* Add temporary support for passing locals to render using string keysNicholas Seckar2005-10-161-0/+11
* Raise an exception if an attempt is made to insert more session data into the...Marcel Molina2005-10-151-0/+23
* If a component redirects when called with render_component_as_string, render theScott Barron2005-10-151-2/+26
* Fix Request#host_with_port to use the standard port when Rails is behind a pr...Nicholas Seckar2005-10-152-4/+25
* Ensure radio_button works as expected with values other than strings.Michael Koziarski2005-10-141-0/+6
* Escape query strings in the href attribute of URLs created by url_helper. #2333Jeremy Kemper2005-10-131-0/+16
* Added :locals support for render :inline #2463 [mdabney@cavoksolutions.com]David Heinemeier Hansson2005-10-131-0/+11
* r3575@sedna: jeremy | 2005-10-13 11:22:13 -0700Jeremy Kemper2005-10-131-2/+2
* Unset the X-Requested-With header when using the xhr wrapper in functional te...Sam Stephenson2005-10-131-0/+5
* modified javascript_helper testcase to back up #2097Tobias Lütke2005-10-131-2/+6
* Wrap javascript_tag contents in a CDATA section and add a cdata_section metho...Sam Stephenson2005-10-124-20/+24
* Make xyz_tag(..., :id => "foo") work againJamis Buck2005-10-121-0/+6
* Convert boolean form options form the tag_helper. Recloses #809.Marcel Molina2005-10-101-0/+5
* Fixed that an instance variable with the same name as a partial should be imp...Sam Stephenson2005-10-101-0/+10
* Make assert_tag :children count appropriately. Closes #2181.Marcel Molina2005-10-091-1/+128
* Added new scriptaculous options for auto_complete_field #2343 [m.stienstra@fn...Thomas Fuchs2005-10-011-0/+4
* Don't prepend the asset host if the string is already a fully-qualified URLJamis Buck2005-09-301-0/+10
* Testing should also use a default REQUEST_METHODDavid Heinemeier Hansson2005-09-291-40/+22
* Unit tests and fixtures for multipart posts.Jeremy Kemper2005-09-286-5/+105
* Update script.aculo.us to 1.5_rc2, and Prototype to 1.4.0_pre7Thomas Fuchs2005-09-283-3/+6
* Added test coverage for stylesheet_path to show that it works as requested in...Marcel Molina2005-09-281-0/+4
* Ticket #2295 - Tolerate consecutive delimiters in query parametersJeremy Kemper2005-09-271-1/+10
* Streamline render process, code cleaning. Closes #2294.Nicholas Seckar2005-09-271-3/+3
* Keep flash after component is rendered. Closes #2291.Scott Barron2005-09-271-0/+26
* Have text helpers use built in Regexp.escape rather than home grown alternativeMarcel Molina2005-09-261-0/+6
* r3573@asus: jeremy | 2005-09-26 11:38:44 -0700Jeremy Kemper2005-09-261-19/+32
* This seems unnecessary to call in teardown and is causing the testsScott Barron2005-09-251-1/+0
* Fix open/save dialog in IE not opening files send with send_file/send_data, #...Thomas Fuchs2005-09-251-0/+6
* Fixed that auto_discovery_link_tag couldn't take a string as the URLDavid Heinemeier Hansson2005-09-221-0/+1
* Require 'pp' early to prevent the pretty-print methods being mixed in too lat...Jamis Buck2005-09-201-0/+1
* Fixed problem with send_file and WEBrick using stdout #1812David Heinemeier Hansson2005-09-201-10/+5
* Optimized tag_options to not sort keys, which is no longer necessary when ass...David Heinemeier Hansson2005-09-2010-178/+186