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-13 04:37:39 +00:00
..
assertions Make assert_select access content_type through accessor instead of header 2007-02-21 00:40:58 +00:00
cgi_ext Add a #dbman attr_reader for CGI::Session and make CGI::Session::CookieStore#generate_digest public so it's easy to generate digests 2007-03-06 04:09:14 +00:00
macros
session Add a #dbman attr_reader for CGI::Session and make CGI::Session::CookieStore#generate_digest public so it's easy to generate digests 2007-03-06 04:09:14 +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 Deprecation: remove deprecated instance variables. 2007-03-13 03:49:52 +00:00
benchmarking.rb Consistent public/protected/private visibility for chained methods. Closes #7813. 2007-03-13 02:14:31 +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 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
filters.rb Consistent public/protected/private visibility for chained methods. Closes #7813. 2007-03-13 02:14:31 +00:00
flash.rb Consistent public/protected/private visibility for chained methods. Closes #7813. 2007-03-13 02:14:31 +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 Consistent public/protected/private visibility for chained methods. Closes #7813. 2007-03-13 02:14:31 +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 Prefer MIME constants to strings. Closes #7707. 2007-03-06 09:46:04 +00:00
mime_types.rb Added default mime type for CSS (Mime::CSS) [DHH] 2007-02-18 00:00:14 +00:00
pagination.rb
request.rb Prefer MIME constants to strings. Closes #7707. 2007-03-06 09:46:04 +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 Prefer MIME constants to strings. Closes #7707. 2007-03-06 09:46:04 +00:00
routing.rb Allow array and hash query parameters. Array route parameters are converted/to/a/path as before. References #6765, #7462. Closes #7047. 2007-03-06 07:47:23 +00:00
scaffolding.rb Extract dynamic scaffolding into a plugin. Closes #7700. 2007-03-04 08:35:52 +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 Nodoc the irrelevant (from 1.2) 2007-01-26 21:37:38 +00:00
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 Prefer MIME constants to strings. Closes #7707. 2007-03-06 09:46:04 +00:00
url_rewriter.rb Added URL escaping of user and password when used through the UrlWriter 2007-03-04 20:10:51 +00:00
verification.rb