aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/render_test.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Refactor ActionView::TemplateYehuda Katz + Carl Lerche2009-04-271-3/+3
* test uses PathnameJeremy Kemper2009-04-241-0/+1
* * Add pluggable JSON backends with support for the JSON gem. [rick]rick2009-04-231-9/+9
* Bring abstract_controller up to date with rails/masterCarl Lerche & Yehuda Katz2009-04-131-9/+118
|\
| * allowed render :file to take Pathnames [#2220 state:resolved]misfo2009-03-141-0/+10
| * Ruby 1.9 compat: rename deprecated assert_raises to assert_raise.Jeremy Kemper2009-03-081-7/+7
| * Fixed simplified render with nested models [#2042 state:resolved]Joshua Peek2009-03-071-0/+18
| * fix HTML fallback for explicit templates [#2052 state:resolved]Matt Jones2009-03-071-0/+16
| * Ensure expires_in without a :public key sets the Cache-Control header to priv...Johan Sørensen2009-03-071-1/+1
| * Added ability to pass in :public => true to fresh_when, stale?, and expires_i...Gregg Pollack2009-02-281-0/+72
| * correctly handle layouts for AJAX requests and regular js files [#2052 state:...Matt Jones2009-02-241-4/+5
| * implicitly rendering a js response should not use the default layout [#1844 s...Adam McCrea2009-02-051-1/+10
* | Temporarily modifies setup to call super directly. This can support more T::U...Yehuda Katz and Carl Lerche2009-04-081-0/+4
* | Add support for pendingYehuda Katz2009-02-021-2/+4
* | Merge commit 'rails/3-0-unstable'Yehuda Katz2009-01-301-5/+5
|\ \ | |/ |/|
| * Move HTTP libs and middleware into ActionDispatch componentJoshua Peek2009-01-271-2/+2
| * Begin unifying the interface between ActionController and ActionViewYehuda Katz2009-01-221-3/+3
* | Restore implicit rendering for XHR requests that want a HTML template [#1590 ...Joshua Peek2009-01-271-0/+8
|/
* Remove Content-Length header from :no_content responsesJeremy Kemper2009-01-071-1/+6
* Make ActionController#render(symbol) behave same as ActionController#render(s...Pratik Naik2008-12-261-1/+10
* Make ActionController#render(string) work as a shortcut for render :action =>...Pratik Naik2008-12-251-0/+19
* Make ActionController#render(string) work as a shortcut for render :template ...Pratik Naik2008-12-251-0/+21
* Make ActionController#render(string) work as a shortcut for render :file => s...Pratik Naik2008-12-251-8/+21
* Make render_test.rb run in isolationPratik Naik2008-12-251-0/+2
* Rename AbstractResponse to Response and inheirt from Rack::ResponseJoshua Peek2008-12-191-5/+5
* Use status response accessor instead of the 'Status' headerJoshua Peek2008-12-191-2/+2
* Do not output an ETag header if response body is blank or when sending files ...Hongli Lai (Phusion2008-12-161-0/+9
* Add :partial option to assert_template [#1550 state:resolved]mark2008-12-111-0/+7
* Set template_format to html inside rjs templates so renders within it default...Joshua Peek2008-12-041-14/+0
* Fix rendering html partials from an rjs templateSam Stephenson2008-12-041-0/+24
* Change the forgery token implementation to just be a simple random string.Michael Koziarski2008-11-231-1/+2
* Fix rendering html partial via inline render when with :js format [#1399 stat...Luke Melia2008-11-181-0/+14
* Prevent assert_template failures when a render :inline is called before rende...Luke Melia2008-11-171-9/+19
* Move controller assertions from base TestCase to AC:: and AV::TestCaseJeremy Kemper2008-11-071-20/+12
* Added render :js for people who want to render inline JavaScript replies with...David Heinemeier Hansson2008-11-011-0/+10
* Ensure content type gets reset after render_to_string [#1182 state:resolved]Joshua Peek2008-10-301-0/+10
* Dont try to auto-set the etag based on the body if any freshness headers have...David Heinemeier Hansson2008-10-211-5/+22
* Let fresh_when actually do the head(:not_modified). Cleaner and we get the fi...David Heinemeier Hansson2008-10-211-3/+1
* Added stale?/fresh? and fresh_when methods to provide a layer of abstraction ...David Heinemeier Hansson2008-10-211-11/+14
* Make sure last_modified! works with <= rather than just equality.Michael Koziarski2008-10-071-0/+6
* Fix etag! and last_modified! to work as advertised.Michael Koziarski2008-09-301-1/+40
* Don't set Content-Length on 304 responsesJonathan del Strother2008-09-021-0/+6
* Fix AM tests and add tests for rendering loggingPratik Naik2008-08-311-0/+30
* Add test to make sure RJS block inside controller is executed in view contextPratik Naik2008-08-301-0/+13
* Merge RenderTest and NewRenderTestJoshua Peek2008-08-291-27/+822
* Return nil instead of a space when passing an empty collection or nil to 'ren...Ryan Bates2008-08-191-1/+1
* Update tests for request memoizationJeremy Kemper2008-08-081-13/+13
* Simplifying usage of ETags and Last-Modified and conditional GET requestsJeremy Kemper2008-08-071-3/+8
* Set the response content type to that of found template if not explicitly set...Tom Ward2008-07-181-5/+10
* etag! and last_modified! conditional GET helpersJeremy Kemper2008-07-171-53/+99