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
2007-03-01 23:27:04 +00:00
..
assertions Make assert_select access content_type through accessor instead of header 2007-02-21 00:40:58 +00:00
cgi_ext Factor out unique id generator. Expose cgi to session store. 2007-02-19 23:51:25 +00:00
macros
session Cookie session store: empty and unchanged sessions don't write a cookie. 2007-02-25 16:35:24 +00:00
templates Apply the rest of Chads patch 2007-02-21 00:29:44 +00:00
vendor
assertions.rb
base.rb session_enabled? works with session :off. Closes #6680. 2007-02-27 06:36:25 +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 Enable active record cache automatically for all actions 2007-02-21 18:08:39 +00:00
cgi_process.rb Introduce a cookie-based session store as the Rails default. Sessions typically contain at most a user_id and flash message; both fit within the 4K cookie size limit. A secure hash is included with the cookie to ensure data integrity (a user cannot alter his user_id without knowing the secret key included in the hash). If you have more than 4K of session data or don't want your data to be visible to the user, pick another session store. Cookie-based sessions are dramatically faster than the alternatives. 2007-02-21 09:17:38 +00:00
components.rb
cookies.rb
deprecated_dependencies.rb
deprecated_redirects.rb
deprecated_request_methods.rb
filters.rb
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 Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [DHH] 2007-02-24 20:31:34 +00:00
integration.rb Integration tests: introduce methods for other HTTP methods. Closes #6353. 2007-02-22 09:28:10 +00:00
layout.rb Options are more often than not meaningless babble, just go nondescript instead 2007-03-01 23:27:04 +00:00
mime_responds.rb
mime_type.rb
mime_types.rb Added default mime type for CSS (Mime::CSS) [DHH] 2007-02-18 00:00:14 +00:00
pagination.rb
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 Allow routing requirements on map.resource(s) (closes #7633) [quixoten] 2007-02-25 20:13:19 +00:00
response.rb Fix tests depending too deep 2007-02-19 02:25:01 +00:00
routing.rb Routing: better support for escaped values in route segments. Closes #7544. 2007-02-21 10:05:07 +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 Session configuration in config/environment.rb instead of app/controllers/application.rb 2007-02-22 00:57:02 +00:00
status_codes.rb
streaming.rb Allow send_file/send_data to use a registered mime type as the :type parameter #7620 [jonathan] 2007-02-25 20:16:58 +00:00
test_process.rb
url_rewriter.rb Added :port and :host handling to UrlRewriter (which unified url_for usage, regardless of whether it's called in view or controller) #7616 [alancfrancis] 2007-02-25 20:22:09 +00:00
verification.rb