aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/mime_responds_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Revert r8669 for now, breaks Action Mailer. Reopens #10800.Jeremy Kemper2008-01-191-1/+5
* Introduce TemplateFinder to handle view paths and lookups. Closes #10800.Jeremy Kemper2008-01-191-5/+1
* require abstract_unit directly since test is in load pathJeremy Kemper2008-01-051-1/+1
* Make sure that setting the format with a symbol works tooDavid Heinemeier Hansson2007-12-031-1/+1
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-17/+19
* Fixed the layout defaults (closes #9564) [lifo]David Heinemeier Hansson2007-09-281-3/+71
* Added another failing testDavid Heinemeier Hansson2007-09-251-0/+24
* Better failing testsDavid Heinemeier Hansson2007-09-251-5/+5
* Added failing tests for iphoneDavid Heinemeier Hansson2007-09-251-2/+3
* Updated iphone_with_html_response_type to fail as it uses the new register_al...David Heinemeier Hansson2007-09-241-2/+2
* Fixed that default layouts did not take the format into account #9564 [lifofifo]David Heinemeier Hansson2007-09-181-2/+29
* Fixed that setting request.format would also affect respond_to blocks [DHH]David Heinemeier Hansson2007-09-151-0/+17
* Introduce a default respond_to block for custom types. Closes #8174.Jeremy Kemper2007-05-261-29/+36
* Parse url-encoded and multipart requests ourselves instead of delegating to CGI.Jeremy Kemper2007-05-181-1/+3
* The default respond_to blocks don't set a specific extension anymore, so that...Rick Olson2007-04-121-5/+7
* Change default respond_to templates for xml and rjs formats. [Rick]Rick Olson2007-04-081-1/+1
* Allow Controllers to have multiple view_paths instead of a single template_ro...Rick Olson2007-02-041-1/+1
* Remove unrelated render :yaml changes. References #4185.Jeremy Kemper2006-12-061-2/+2
* More thorough JSON tests. Use application/json by default, per rfc4627. Refer...Jeremy Kemper2006-12-061-8/+16
* respond_to recognizes JSON. render :json => @person.to_json automatically set...Jeremy Kemper2006-12-061-0/+20
* Added the option for extension aliases to mime type registration [DHH] Refact...David Heinemeier Hansson2006-12-021-0/+5
* r5515@ks: jeremy | 2006-10-08 13:24:42 -0700Jeremy Kemper2006-10-081-0/+17
* respond_to .html now always renders #{action_name}.rhtml so that registered c...Tobias Lütke2006-08-301-0/+19
* Finish custom handling [DHH]David Heinemeier Hansson2006-06-021-0/+16
* Added interrogation of params[:format] to determine Accept type. If :format i...David Heinemeier Hansson2006-05-311-0/+14
* Added test for Accept header for xml_http_request calls in functional tests (...David Heinemeier Hansson2006-03-181-1/+9
* Removed XML argument style for respond_to, so type.xml(object.to_xml) no long...David Heinemeier Hansson2006-03-181-16/+28
* fix broken respond_to testJamis Buck2006-03-181-1/+1
* Allow for respond_to(:html, :js, :xml) (closes #4277) [Caio Chassot]David Heinemeier Hansson2006-03-181-0/+18
* Add MimeResponds::Responder#any for managing multiple types with identical re...Jamis Buck2006-03-151-0/+21
* Added simple alert() notifications for RJS exceptions when config.action_view...Sam Stephenson2006-03-131-1/+1
* Default mime type for XML should be application/xml [DHH]David Heinemeier Hansson2006-03-121-0/+12
* Mime types are separated by a comma, not semicolon, in the Accept header. Als...David Heinemeier Hansson2006-03-121-2/+2
* Added synonym and custom type handling to respond_to [DHH]David Heinemeier Hansson2006-03-121-0/+28
* Assume that we accept what we give [DHH]David Heinemeier Hansson2006-03-121-0/+18
* Added defaults to respond_to [DHH]David Heinemeier Hansson2006-03-121-0/+38
* Added better support for using the same actions to output for different sourc...David Heinemeier Hansson2006-03-111-0/+102