| Commit message (Expand) | Author | Age | Files | Lines |
* | Update tests for request memoization | Jeremy Kemper | 2008-08-08 | 1 | -31/+31 |
* | Set global ActionController::Base.view_paths for test cases | Joshua Peek | 2008-07-12 | 1 | -2/+0 |
* | Disable the Accept header by default | Michael Koziarski | 2008-07-07 | 1 | -0/+5 |
* | Set precompiled fixture load path constant to speed up tests | Joshua Peek | 2008-06-25 | 1 | -27/+26 |
* | Move missing template logic to ActionView | Pratik Naik | 2008-04-19 | 1 | -1/+1 |
* | Make MimeResponds::Responder#any work without explicit types. Closes #11140 [... | Pratik Naik | 2008-03-07 | 1 | -0/+36 |
* | Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. C... | Michael Koziarski | 2008-01-21 | 1 | -5/+1 |
* | Revert r8669 for now, breaks Action Mailer. Reopens #10800. | Jeremy Kemper | 2008-01-19 | 1 | -1/+5 |
* | Introduce TemplateFinder to handle view paths and lookups. Closes #10800. | Jeremy Kemper | 2008-01-19 | 1 | -5/+1 |
* | require abstract_unit directly since test is in load path | Jeremy Kemper | 2008-01-05 | 1 | -1/+1 |
* | Make sure that setting the format with a symbol works too | David Heinemeier Hansson | 2007-12-03 | 1 | -1/+1 |
* | Ruby 1.9 compat, consistent load paths | Jeremy Kemper | 2007-10-02 | 1 | -17/+19 |
* | Fixed the layout defaults (closes #9564) [lifo] | David Heinemeier Hansson | 2007-09-28 | 1 | -3/+71 |
* | Added another failing test | David Heinemeier Hansson | 2007-09-25 | 1 | -0/+24 |
* | Better failing tests | David Heinemeier Hansson | 2007-09-25 | 1 | -5/+5 |
* | Added failing tests for iphone | David Heinemeier Hansson | 2007-09-25 | 1 | -2/+3 |
* | Updated iphone_with_html_response_type to fail as it uses the new register_al... | David Heinemeier Hansson | 2007-09-24 | 1 | -2/+2 |
* | Fixed that default layouts did not take the format into account #9564 [lifofifo] | David Heinemeier Hansson | 2007-09-18 | 1 | -2/+29 |
* | Fixed that setting request.format would also affect respond_to blocks [DHH] | David Heinemeier Hansson | 2007-09-15 | 1 | -0/+17 |
* | Introduce a default respond_to block for custom types. Closes #8174. | Jeremy Kemper | 2007-05-26 | 1 | -29/+36 |
* | Parse url-encoded and multipart requests ourselves instead of delegating to CGI. | Jeremy Kemper | 2007-05-18 | 1 | -1/+3 |
* | The default respond_to blocks don't set a specific extension anymore, so that... | Rick Olson | 2007-04-12 | 1 | -5/+7 |
* | Change default respond_to templates for xml and rjs formats. [Rick] | Rick Olson | 2007-04-08 | 1 | -1/+1 |
* | Allow Controllers to have multiple view_paths instead of a single template_ro... | Rick Olson | 2007-02-04 | 1 | -1/+1 |
* | Remove unrelated render :yaml changes. References #4185. | Jeremy Kemper | 2006-12-06 | 1 | -2/+2 |
* | More thorough JSON tests. Use application/json by default, per rfc4627. Refer... | Jeremy Kemper | 2006-12-06 | 1 | -8/+16 |
* | respond_to recognizes JSON. render :json => @person.to_json automatically set... | Jeremy Kemper | 2006-12-06 | 1 | -0/+20 |
* | Added the option for extension aliases to mime type registration [DHH] Refact... | David Heinemeier Hansson | 2006-12-02 | 1 | -0/+5 |
* | r5515@ks: jeremy | 2006-10-08 13:24:42 -0700 | Jeremy Kemper | 2006-10-08 | 1 | -0/+17 |
* | respond_to .html now always renders #{action_name}.rhtml so that registered c... | Tobias Lütke | 2006-08-30 | 1 | -0/+19 |
* | Finish custom handling [DHH] | David Heinemeier Hansson | 2006-06-02 | 1 | -0/+16 |
* | Added interrogation of params[:format] to determine Accept type. If :format i... | David Heinemeier Hansson | 2006-05-31 | 1 | -0/+14 |
* | Added test for Accept header for xml_http_request calls in functional tests (... | David Heinemeier Hansson | 2006-03-18 | 1 | -1/+9 |
* | Removed XML argument style for respond_to, so type.xml(object.to_xml) no long... | David Heinemeier Hansson | 2006-03-18 | 1 | -16/+28 |
* | fix broken respond_to test | Jamis Buck | 2006-03-18 | 1 | -1/+1 |
* | Allow for respond_to(:html, :js, :xml) (closes #4277) [Caio Chassot] | David Heinemeier Hansson | 2006-03-18 | 1 | -0/+18 |
* | Add MimeResponds::Responder#any for managing multiple types with identical re... | Jamis Buck | 2006-03-15 | 1 | -0/+21 |
* | Added simple alert() notifications for RJS exceptions when config.action_view... | Sam Stephenson | 2006-03-13 | 1 | -1/+1 |
* | Default mime type for XML should be application/xml [DHH] | David Heinemeier Hansson | 2006-03-12 | 1 | -0/+12 |
* | Mime types are separated by a comma, not semicolon, in the Accept header. Als... | David Heinemeier Hansson | 2006-03-12 | 1 | -2/+2 |
* | Added synonym and custom type handling to respond_to [DHH] | David Heinemeier Hansson | 2006-03-12 | 1 | -0/+28 |
* | Assume that we accept what we give [DHH] | David Heinemeier Hansson | 2006-03-12 | 1 | -0/+18 |
* | Added defaults to respond_to [DHH] | David Heinemeier Hansson | 2006-03-12 | 1 | -0/+38 |
* | Added better support for using the same actions to output for different sourc... | David Heinemeier Hansson | 2006-03-11 | 1 | -0/+102 |