Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rack::Utils.body_to_s doesn't exist in 1.0 | Jeremy Kemper | 2009-04-22 | 2 | -2/+16 |
| | |||||
* | Reinstate Base#render_to_string. Introduce ↵ | Jeremy Kemper | 2009-04-21 | 2 | -6/+20 |
| | | | | AbstractController#render_to_string which stringifies render_to_body. | ||||
* | render_for_text pushes a body part instead of replacing the whole body | Jeremy Kemper | 2009-04-17 | 2 | -10/+12 |
| | |||||
* | Don't set Content-Length in Base#response_body= since body may be any ↵ | Jeremy Kemper | 2009-04-17 | 1 | -1/+0 |
| | | | | Rack-compatible body. Leave it up to the content length middleware. | ||||
* | Rename render_to_string to render_to_body since it may return any ↵ | Jeremy Kemper | 2009-04-17 | 4 | -10/+10 |
| | | | | Rack-compatible body, not just strings | ||||
* | Merge docrails | lifo | 2009-04-17 | 2 | -2/+2 |
| | |||||
* | Don't check authenticity tokens for any AJAX requests | Ross Kaffenburger and Bryan Helmkamp | 2009-04-15 | 1 | -1/+2 |
| | |||||
* | Makes rails-dev-boost work again | Carl Lerche & Yehuda Katz | 2009-04-14 | 2 | -4/+4 |
| | |||||
* | Make dispatcher instances immutable | Joshua Peek | 2009-04-14 | 1 | -3/+14 |
| | |||||
* | Final blow to CGI | Joshua Peek | 2009-04-14 | 1 | -14/+3 |
| | |||||
* | Move MimeResponds into base folder | Joshua Peek | 2009-04-14 | 1 | -0/+0 |
| | |||||
* | Move reloader middleware in ActionDispatch | Joshua Peek | 2009-04-14 | 2 | -16/+2 |
| | |||||
* | Session management belongs in base folder | Joshua Peek | 2009-04-14 | 1 | -0/+0 |
| | |||||
* | Backwords compat alias for ActionController::Request and ↵ | Joshua Peek | 2009-04-14 | 2 | -0/+3 |
| | | | | ActionController::Response | ||||
* | Make dispatcher instances immutable | Joshua Peek | 2009-04-14 | 1 | -13/+9 |
| | |||||
* | Final blow to CGI | Joshua Peek | 2009-04-14 | 6 | -268/+2 |
| | |||||
* | Move bundled rack into ActionDispatch | Joshua Peek | 2009-04-14 | 50 | -4998/+0 |
| | |||||
* | Resurrecting 1.9 compatibility. | Carl Lerche & Yehuda Katz | 2009-04-13 | 2 | -4/+7 |
| | |||||
* | Bring abstract_controller up to date with rails/master | Carl Lerche & Yehuda Katz | 2009-04-13 | 76 | -183/+5300 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolved all the conflicts since 2.3.0 -> HEAD. Following is a list of commits that could not be applied cleanly or are obviated with the abstract_controller refactor. They all need to be revisited to ensure that fixes made in 2.3 do not reappear in 3.0: 2259ecf368e6a6715966f69216e3ee86bf1a82a7 AR not available * This will be reimplemented with ActionORM or equivalent 06182ea02e92afad579998aa80144588e8865ac3 implicitly rendering a js response should not use the default layout [#1844 state:resolved] * This will be handled generically 893e9eb99504705419ad6edac14d00e71cef5f12 Improve view rendering performance in development mode and reinstate template recompiling in production [#1909 state:resolved] * We will need to reimplement rails-dev-boost on top of the refactor; the changes here are very implementation specific and cannot be cleanly applied. The following commits are implicated: 199e750d46c04970b5e7684998d09405648ecbd4 3942cb406e1d5db0ac00e03153809cc8dc4cc4db f8ea9f85d4f1e3e6f3b5d895bef6b013aa4b0690 e3b166aab37ddc2fbab030b146eb61713b91bf55 ae9f258e03c9fd5088da12c1c6cd216cc89a01f7 44423126c6f6133a1d9cf1d0832b527e8711d40f 0cb020b4d6d838025859bd60fb8151c8e21b8e84 workaround for picking layouts based on wrong view_paths [#1974 state:resolved] * The specifics of this commit no longer apply. Since it is a two-line commit, we will reimplement this change. 8c5cc66a831aadb159f3daaffa4208064c30af0e make action_controller/layouts pick templates from the current instance's view_paths instead of the class view_paths [#1974 state:resolved] * This does not apply at all. It should be trivial to apply the feature to the reimplemented ActionController::Base. 87e8b162463f13bd50d27398f020769460a770e3 fix HTML fallback for explicit templates [#2052 state:resolved] * There were a number of patches related to this that simply compounded each other. Basically none of them apply cleanly, and the underlying issue needs to be revisited. After discussing the underlying problem with Koz, we will defer these fixes for further discussion. | ||||
| * | Fix for TestResponse.cookies returning cookies unescaped [#1867 state:resolved] | Doug McInnes | 2009-04-07 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
| * | added tests for session options being defaulted correctly to rack defaults ↵ | Kenny Ortmann | 2009-04-07 | 1 | -1/+7 |
| | | | | | | | | | | | | [#2403 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Merge docrails | Pratik Naik | 2009-04-05 | 2 | -18/+9 |
| | | |||||
| * | adding session_options initialization and test [#2303 state:resolved] | Ryan Angilly | 2009-03-24 | 1 | -0/+1 |
| | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Reset request_parameters in TestRequest#recycle! to avoid multiple posts ↵ | Peter Marklund | 2009-03-24 | 1 | -0/+1 |
| | | | | | | | | | | | | clobbering each other [#2271 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Merge branch 'master' into bodyparts | Jeremy Kemper | 2009-03-18 | 15 | -54/+106 |
| |\ | |||||
| | * | Merge docrails | Pratik Naik | 2009-03-16 | 1 | -1/+1 |
| | | | |||||
| | * | Ensure our bundled version of rack is at the front of the load path | Joshua Peek | 2009-03-15 | 1 | -1/+1 |
| | | | |||||
| | * | Add Rack version to Rails info | Joshua Peek | 2009-03-14 | 1 | -2/+2 |
| | | | |||||
| | * | Fix requirements for additional member/collection routes [#2054 state:resolved] | Mike Gunderloy | 2009-03-14 | 1 | -5/+6 |
| | | | | | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| | * | Revert 5b7527ca "Failing test for routes with member & requirement" [#2054 ↵ | Joshua Peek | 2009-03-13 | 1 | -6/+1 |
| | | | | | | | | | | | | state:wontfix] | ||||
| | * | Update rack to fix multipart uploads with an empty file [#1945 state:resolved] | Joshua Peek | 2009-03-13 | 13 | -42/+98 |
| | | | |||||
| * | | Extract Response#string_body? | Jeremy Kemper | 2009-03-13 | 1 | -2/+6 |
| | | | |||||
| * | | Return body parts directly to Rack rather than building a response string ↵ | Jeremy Kemper | 2009-03-12 | 4 | -23/+40 |
| |/ | | | | | | | ourselves. Allows Rack middleware to orchestrate response building. | ||||
| * | Handle irregular plurals in polymorphic_urls [#2212 state:resolved] | Mike Gunderloy | 2009-03-12 | 1 | -2/+5 |
| | | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | Support MD5 passwords for Digest auth and use session_options[:secret] in ↵ | Donald Parish | 2009-03-12 | 1 | -21/+51 |
| | | | | | | | | | | | | nonce [#2209 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | Update bundled Rack to fix Litespeed compatibility [#2198 state:resolved] | Russ Smith | 2009-03-11 | 7 | -10/+25 |
| | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Ensure correct content type is declared after cache hits on actions with ↵ | Mislav Marohnić | 2009-03-10 | 1 | -17/+10 |
| | | | | | | | | | | | | string cache keys [#1585 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | update bundled version of rack before 2.3 final | Joshua Peek | 2009-03-10 | 10 | -11/+42 |
| | | |||||
| * | reset_session should force a new session id to be generated [#2173] | Joshua Peek | 2009-03-09 | 1 | -0/+1 |
| | | |||||
| * | Ensure blank path_prefix works as expected [#2122 state:resolved] | Andrew Bloom | 2009-03-09 | 1 | -1/+2 |
| | | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | Support OPTIONS verb in route conditions [#1727 state:resolved] | Mike Gunderloy | 2009-03-08 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | Ensure shallow routes respects namespace [#1356 state:resolved] | Tom Stuart | 2009-03-07 | 1 | -2/+2 |
| | | | | | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | Fixed simplified render with nested models [#2042 state:resolved] | Joshua Peek | 2009-03-07 | 1 | -0/+3 |
| | | |||||
| * | fix HTML fallback for explicit templates [#2052 state:resolved] | Matt Jones | 2009-03-07 | 1 | -5/+5 |
| | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Ensure assert_select works with XML namespaced attributes [#1547 ↵ | Pratik Naik | 2009-03-07 | 1 | -1/+1 |
| | | | | | | | | state:resolved] [Jon Yurek] | ||||
| * | Remove unused variable [#1451 state:resolved] [Raphaël Valyi] | Pratik Naik | 2009-03-07 | 1 | -1/+0 |
| | | |||||
| * | Ensure expires_in without a :public key sets the Cache-Control header to ↵ | Johan Sørensen | 2009-03-07 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | private. [#2095 state:resolved] This fixes a regression introduced in f2a32bd0, which wasn't exposed due to two test methods having the same name. Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
| * | Fix layouts with absolute paths [#2134 state:resolved] | thedarkone | 2009-03-05 | 1 | -1/+0 |
| | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Failing test for routes with member & requirement [#2054 state:resolved] | Mike Gunderloy | 2009-03-05 | 1 | -1/+6 |
| | | | | | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
| * | Fixed that redirection would just log the options, not the final url (which ↵ | David Heinemeier Hansson | 2009-03-05 | 1 | -1/+1 |
| | | | | | | | | lead to "Redirected to #<Post:0x23150b8>") [DHH] |