aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/render_test.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Try to get more useful errors out of the test_line_offset failuresMichael Koziarski2008-07-151-10/+10
* Set global ActionController::Base.view_paths for test casesJoshua Peek2008-07-121-3/+0
* Tighten the rescue clause here to prevent hiding strange mock related errors ...Michael Koziarski2008-07-031-1/+1
* Set precompiled fixture load path constant to speed up testsJoshua Peek2008-06-251-14/+13
* Fixed render :template for templates in top level of view path. [#54 state:re...Pratik Naik2008-05-011-0/+20
* Make sure render :update support the options hash. Closes #11088 [ernesto.ji...Michael Koziarski2008-02-121-0/+12
* Introduce a Template class to ActionView. Closes #11024 [lifofifo]Michael Koziarski2008-02-061-13/+0
* Correct line numbers from template errors. Closes #10937 [Aleksey Kondratenko]Michael Koziarski2008-01-271-0/+16
* Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. C...Michael Koziarski2008-01-211-0/+9
* Support render :text => nil. Closes #6684.Jeremy Kemper2008-01-061-0/+19
* require abstract_unit directly since test is in load pathJeremy Kemper2008-01-051-2/+2
* Mark that render tests crash Ruby 1.9Jeremy Kemper2007-12-151-0/+1
* render :xml and :json preserve custom content types. Closes #10388.Jeremy Kemper2007-12-091-10/+30
* Refactor the default rendering out to a method called default_render to provi...Michael Koziarski2007-10-251-0/+22
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-3/+3
* Fixed JSON encoding to use quoted keys according to the JSON standard (closes...David Heinemeier Hansson2007-09-301-3/+3
* Remove deprecated functionality from actionpack. Closes #8958 [lifofifo]Michael Koziarski2007-09-031-35/+30
* Send freshness information when sending Etags. Without this internet explore...Michael Koziarski2007-08-121-0/+1
* Introduce fake_models.rb to avoid platform-specific code. [mpalmer] Closes #8714Michael Koziarski2007-07-171-4/+1
* Allow you to render views with periods in the name. Closes #8076 [norbert]Rick Olson2007-07-011-0/+9
* Assume html format when rendering partials in RJS. #8076 [Rick]Rick Olson2007-06-051-0/+15
* add test case for js.erb partials on *.js formatted requestsRick Olson2007-05-151-0/+5
* Assume that rendered partials go by the HTML format by defaultRick Olson2007-05-151-0/+19
* Added that render :xml will try to call to_xml if it can [DHH]David Heinemeier Hansson2007-04-241-9/+0
* Added :location option to render so that the common pattern of rendering a re...David Heinemeier Hansson2007-04-241-0/+10
* The default respond_to blocks don't set a specific extension anymore, so that...Rick Olson2007-04-121-0/+6
* Change ActionView template defaults. Look for templates using the request fo...Rick Olson2007-04-021-0/+20
* Its ETag not EtagDavid Heinemeier Hansson2007-02-191-6/+6
* Move etagging down to response, so renders with layouts dont screw it up [DHH]David Heinemeier Hansson2007-02-191-0/+1
* Added caching option to AssetTagHelper#stylesheet_link_tag and AssetTagHelper...David Heinemeier Hansson2007-02-181-0/+6
* Allow people to set their own etags, if they want more control over the proce...David Heinemeier Hansson2007-02-181-0/+7
* Etagging ignores appended and block responses.Jeremy Kemper2007-02-181-5/+5
* Added that rendering will automatically insert the etag header on 200 OK resp...David Heinemeier Hansson2007-02-171-0/+46
* Allow Controllers to have multiple view_paths instead of a single template_ro...Rick Olson2007-02-041-2/+2