| Commit message (Expand) | Author | Age | Files | Lines |
* | Added that rendering will automatically insert the etag header on 200 OK resp... | David Heinemeier Hansson | 2007-02-17 | 1 | -0/+46 |
* | remove Mime::PLAIN from tests so its not confused with the default Mime::TEXT... | Rick Olson | 2007-02-15 | 1 | -6/+6 |
* | Add Mime::Type convenience methods to check the current mime type. [Rick] | Rick Olson | 2007-02-15 | 1 | -2/+16 |
* | Revert [6086] and [6087] since they caused a major regression with functional... | Jeremy Kemper | 2007-02-10 | 1 | -14/+0 |
* | Add a :url_based_filename => true option to ActionController::Streaming::send... | Thomas Fuchs | 2007-02-09 | 1 | -0/+8 |
* | Fix issue with deprecation messing up #template_root= usage. Add #prepend_vi... | Rick Olson | 2007-02-04 | 1 | -2/+3 |
* | Allow Controllers to have multiple view_paths instead of a single template_ro... | Rick Olson | 2007-02-04 | 11 | -16/+96 |
* | Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [... | David Heinemeier Hansson | 2007-02-04 | 1 | -1/+1 |
* | Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick] | Rick Olson | 2007-02-04 | 5 | -0/+588 |
* | fix form_for example in ActionController::Resources documentation. Closes #7... | Rick Olson | 2007-02-04 | 1 | -0/+32 |
* | TestSession supports indifferent access so session['foo'] == session[:foo] in... | Jeremy Kemper | 2007-01-28 | 1 | -0/+14 |
* | Allow Routes to generate all urls for a set of options by specifying :generat... | Nicholas Seckar | 2007-01-28 | 1 | -0/+14 |
* | Change the query parser to map empty GET params to "" rather than nil. Closes... | Nicholas Seckar | 2007-01-28 | 1 | -3/+3 |
* | Resource member routes require :id, eliminating the ambiguous overlap with co... | Jeremy Kemper | 2007-01-28 | 1 | -35/+95 |
* | Use a consistent load path to avoid double requires. Fix some scattered Ruby ... | Jeremy Kemper | 2007-01-28 | 4 | -10/+9 |
* | Fix Test::Unit::TestCase#clean_backtrace | Jeremy Kemper | 2007-01-28 | 1 | -2/+30 |
* | Remove deprecated assertions. | Jeremy Kemper | 2007-01-28 | 1 | -130/+0 |
* | Fix doubly appearing parameters due to string and symbol mixups. Closes #2551. | Nicholas Seckar | 2007-01-28 | 1 | -0/+9 |
* | Mocha 0.4 mixes in more public instance methods, confusing controller identif... | Jeremy Kemper | 2007-01-24 | 1 | -10/+8 |
* | Modernize cookie testing code, and increase coverage (Heckle++) #7101 [Kevin ... | Rick Olson | 2007-01-17 | 1 | -24/+32 |
* | Improve Test Coverage for ActionController::Routing::Route#matches_controller... | Rick Olson | 2007-01-17 | 1 | -1/+16 |
* | Heckling ActionController::Resources::Resource revealed that set_prefixes did... | Rick Olson | 2007-01-17 | 1 | -7/+14 |
* | RecordInvalid, RecordNotSaved => 422 Unprocessable Entity, StaleObjectError =... | Jeremy Kemper | 2007-01-17 | 1 | -1/+3 |
* | Allow exempt_from_layout :rhtml. References #6742, closes #7026. | Jeremy Kemper | 2007-01-14 | 1 | -2/+1 |
* | Wrap and skip tests using mocha. | Jeremy Kemper | 2007-01-14 | 2 | -8/+5 |
* | Use mocha for rescue tests. | Jeremy Kemper | 2007-01-13 | 1 | -16/+14 |
* | Recognize the .txt extension as Mime::TEXT [Rick] | Rick Olson | 2007-01-12 | 1 | -0/+3 |
* | Failing test for exempt_from_layout :rhtml. References #6742. | Jeremy Kemper | 2007-01-12 | 1 | -0/+12 |
* | Fix parsing of array[] CGI parameters so extra empty values aren't included. ... | Jeremy Kemper | 2007-01-12 | 1 | -0/+12 |
* | Set request.env['REQUEST_URI'] when absent. | Jeremy Kemper | 2007-01-12 | 1 | -7/+13 |
* | Test proving render_to_string result passed to partial works. Closes #2541. [... | Jeremy Kemper | 2007-01-12 | 1 | -1/+13 |
* | Fix bug where nested resources ignore a parent singleton parent's path prefix... | Rick Olson | 2007-01-08 | 1 | -0/+13 |
* | Routing uses URI escaping for path components and CGI escaping for query para... | Jeremy Kemper | 2006-12-28 | 1 | -2/+9 |
* | Fix assert_redirected_to bug where redirecting from a nested to to a top-leve... | Rick Olson | 2006-12-25 | 2 | -2/+24 |
* | Singleton resources: POST /singleton => create, GET /singleton/new => new | Jeremy Kemper | 2006-12-22 | 1 | -0/+5 |
* | Use 400 Bad Request status for unrescued ActiveRecord::RecordInvalid exceptions. | Jeremy Kemper | 2006-12-22 | 1 | -0/+1 |
* | Silence log_error deprecation warnings from inspecting deprecated instance va... | Jeremy Kemper | 2006-12-19 | 1 | -1/+7 |
* | Only cache GET requests with a 200 OK response. Closes #6514, #6743. | Jeremy Kemper | 2006-12-19 | 1 | -28/+91 |
* | Ensure render :json => ... skips the layout. Closes #6808 [Josh Peek] | Rick Olson | 2006-12-19 | 1 | -0/+11 |
* | Another test that the deprecation spout is plugged. | Jeremy Kemper | 2006-12-17 | 1 | -0/+11 |
* | Fix a bug in Routing where a parameter taken from the path of the current req... | Nicholas Seckar | 2006-12-09 | 1 | -0/+11 |
* | Unrescued ActiveRecord::RecordNotFound responds with 404 instead of 500. | Jeremy Kemper | 2006-12-08 | 1 | -0/+1 |
* | added tests checking for nested singleton resources | Rick Olson | 2006-12-07 | 1 | -0/+26 |
* | Add singleton resources. [Rick Olson] | Rick Olson | 2006-12-07 | 1 | -0/+104 |
* | 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 | 2 | -12/+22 |
* | respond_to recognizes JSON. render :json => @person.to_json automatically set... | Jeremy Kemper | 2006-12-06 | 2 | -0/+38 |
* | Dropped the idea of automatically routing :format for the vanilla routes -- t... | David Heinemeier Hansson | 2006-12-04 | 1 | -4/+18 |
* | Added Request#format to return the format used for the request as a mime type... | David Heinemeier Hansson | 2006-12-02 | 1 | -0/+12 |
* | Added the option for extension aliases to mime type registration [DHH] Refact... | David Heinemeier Hansson | 2006-12-02 | 1 | -0/+5 |