1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_controller
David Heinemeier Hansson 21187c0fb4 Apply the rest of Chads patch
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6180 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2007-02-21 00:29:44 +00:00
..
assertions fix form_for example in ActionController::Resources documentation. Closes #7362 [gnarg], Added enhanced docs to routing assertions. Closes #7359 [Rob Sanheim], improve error message for Routing for named routes. Closes #7346 [Rob Sanheim] 2007-02-04 19:07:08 +00:00
cgi_ext Factor out unique id generator. Expose cgi to session store. 2007-02-19 23:51:25 +00:00
macros Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [DHH] 2006-09-03 23:22:24 +00:00
session ARStore needs a data reader method. Closes #4795. 2006-11-15 20:08:43 +00:00
templates Apply the rest of Chads patch 2007-02-21 00:29:44 +00:00
vendor Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick] 2007-02-04 20:04:40 +00:00
assertions.rb Fix Test::Unit::TestCase#clean_backtrace 2007-01-28 07:10:35 +00:00
base.rb Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though. 2007-02-20 22:09:12 +00:00
benchmarking.rb Added X-Runtime to all responses with the request run time [DHH] (rename from X-Benchmark) 2007-02-17 05:11:55 +00:00
caching.rb rollback [5833] and [5835] 2007-01-04 21:43:24 +00:00
cgi_process.rb Move etagging down to response, so renders with layouts dont screw it up [DHH] 2007-02-19 00:27:19 +00:00
components.rb Fix issue with deprecation messing up #template_root= usage. Add #prepend_view_path and #append_view_path to allow modification of a copy of the 2007-02-04 22:27:45 +00:00
cookies.rb Deprecate @response 2006-09-29 08:26:45 +00:00
deprecated_dependencies.rb Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [DHH] 2006-09-03 23:08:43 +00:00
deprecated_redirects.rb Fixed docs 2006-03-28 03:19:27 +00:00
deprecated_request_methods.rb Mime types are separated by a comma, not semicolon, in the Accept header. Also switch all internal configuration of mime types away from strings and over to Mime::Type [DHH] 2006-03-12 16:03:44 +00:00
filters.rb Slight doc tweak to #prepend_filter. Closes #6493 [Jeremy Voorhis] 2007-01-05 20:46:34 +00:00
flash.rb Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though. 2007-02-20 22:09:12 +00:00
helpers.rb Fix overly greedy rescues when loading helpers. Closes #6268 2007-01-28 04:57:05 +00:00
integration.rb Use a consistent load path to avoid double requires. Fix some scattered Ruby warnings. 2007-01-28 07:16:55 +00:00
layout.rb Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though. 2007-02-20 22:09:12 +00:00
mime_responds.rb r5515@ks: jeremy | 2006-10-08 13:24:42 -0700 2006-10-08 20:30:24 +00:00
mime_type.rb Add Mime::Type convenience methods to check the current mime type. [Rick] 2007-02-15 16:25:46 +00:00
mime_types.rb Added default mime type for CSS (Mime::CSS) [DHH] 2007-02-18 00:00:14 +00:00
pagination.rb Docs and deprecation 2006-09-03 23:28:54 +00:00
request.rb Added that rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified and the response body will be set to an empty string. [DHH] 2007-02-17 18:16:44 +00:00
rescue.rb Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though. 2007-02-20 22:09:12 +00:00
resources.rb fix form_for example in ActionController::Resources documentation. Closes #7362 [gnarg], Added enhanced docs to routing assertions. Closes #7359 [Rob Sanheim], improve error message for Routing for named routes. Closes #7346 [Rob Sanheim] 2007-02-04 19:07:08 +00:00
response.rb Fix tests depending too deep 2007-02-19 02:25:01 +00:00
routing.rb fix form_for example in ActionController::Resources documentation. Closes #7362 [gnarg], Added enhanced docs to routing assertions. Closes #7359 [Rob Sanheim], improve error message for Routing for named routes. Closes #7346 [Rob Sanheim] 2007-02-04 19:07:08 +00:00
scaffolding.rb Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though. 2007-02-20 22:09:12 +00:00
session_management.rb Add Mime::Type convenience methods to check the current mime type. [Rick] 2007-02-15 16:25:46 +00:00
status_codes.rb Nodoc the irrelevant (from 1.2) 2007-01-26 21:37:38 +00:00
streaming.rb Add a :url_based_filename => true option to ActionController::Streaming::send_file, which allows URL-based filenames. [Thomas Fuchs] 2007-02-09 11:25:37 +00:00
test_process.rb Revert [6086] and [6087] since they caused a major regression with functional tests in 1.2.2. References #7372. 2007-02-10 03:55:12 +00:00
url_rewriter.rb Fix doubly appearing parameters due to string and symbol mixups. Closes #2551. 2007-01-28 05:29:32 +00:00
verification.rb Deprecation: @request will be removed after 1.2. Use the request method instead. 2006-09-29 07:34:02 +00:00