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
2008-01-30 01:32:28 +00:00
..
assertions Make assert_routing aware of the HTTP method used. Closes #8039 [mpalmer] 2008-01-30 01:25:44 +00:00
caching Move fragment caching from special helper methods to TemplateHandler. Closes #10754 [Josh Peek] 2008-01-10 03:17:20 +00:00
cgi_ext Ruby 1.9 compat: cookies 2007-12-15 02:28:53 +00:00
routing Make it simpler to make the root route an alias for another route. Closes #10818 [bscofield] 2008-01-26 08:41:19 +00:00
session Ruby 1.9 compat: cookie store delete sets nil value instead of empty string 2008-01-07 08:12:03 +00:00
templates/rescues Purge empty files 2007-09-11 19:54:06 +00:00
vendor/html-scanner/html Fix HTML Sanitizer to allow trailing spaces in CSS style attributes. Closes #10566 [wesley.moxam] 2007-12-23 21:07:20 +00:00
assertions.rb Fix typos (closes #10378) 2007-12-05 18:54:41 +00:00
base.rb Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. Closes #10800 [lifofifo] 2008-01-21 20:45:04 +00:00
benchmarking.rb Fix strange NoMemoryError on amd64. Closes #10442 [wrb] 2007-12-10 02:45:13 +00:00
caching.rb Moved the caching stores from ActionController::Caching::Fragments::* to ActiveSupport::Cache::*. If you're explicitly referring to a store, like ActionController::Caching::Fragments::MemoryStore, you need to update that reference with ActiveSupport::Cache::MemoryStore [DHH] Deprecated ActionController::Base.fragment_cache_store for ActionController::Base.cache_store [DHH] All fragment cache keys are now by default prefixed with the 'views/' namespace [DHH] Added ActiveRecord::Base.cache_key to make it easier to cache Active Records in combination with the new ActiveSupport::Cache::* libraries [DHH] Added ActiveSupport::Gzip.decompress/compress(source) as an easy wrapper for Zlib [Tobias Luetke] Included MemCache-Client to make the improved ActiveSupport::Cache::MemCacheStore work out of the box [Bob Cottrell, Eric Hodel] Added config.cache_store to environment options to control the default cache store (default is FileStore if tmp/cache is present, otherwise MemoryStore is used) [DHH] 2008-01-03 21:05:12 +00:00
cgi_ext.rb Parse url-encoded and multipart requests ourselves instead of delegating to CGI. 2007-05-18 06:24:50 +00:00
cgi_process.rb The asset_host block takes the controller request as an optional second argument. Example: use a single asset host for SSL requests. Closes #10549. 2008-01-06 20:53:23 +00:00
components.rb Ruby 1.9 compat, consistent load paths 2007-10-02 05:32:14 +00:00
cookies.rb Ruby 1.9 compat: account for new, non-flattening Array#to_s 2007-12-15 02:29:15 +00:00
dispatcher.rb Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. Closes #10800 [lifofifo] 2008-01-21 20:45:04 +00:00
filters.rb Filter procs must take 1 or 2 arguments. Raise ArgumentError otherwise. 2008-01-07 00:12:43 +00:00
flash.rb Ruby 1.9 compat, consistent load paths 2007-10-02 05:32:14 +00:00
headers.rb Provide a nicer way to access headers. request.headers["Content-Type"] instead of request.headers["HTTP_CONTENT_TYPE"] [Koz] 2008-01-11 06:39:56 +00:00
helpers.rb Ruby 1.9 compat: helpers 2007-12-15 02:29:36 +00:00
http_authentication.rb Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Base64. Closes #10554. 2007-12-18 21:14:07 +00:00
integration.rb Integration tests use ActionController::Dispatcher rather than the old Dispatcher. Closes #10596. 2007-12-22 19:03:01 +00:00
layout.rb Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. Closes #10800 [lifofifo] 2008-01-21 20:45:04 +00:00
mime_responds.rb Make documentation comment for mime responders match documentation example. Closes #9357 [yon] 2007-10-26 03:25:40 +00:00
mime_type.rb Ensure mime types can be compared with symbols. Closes #10796 [bscofield] 2008-01-20 22:55:25 +00:00
mime_types.rb Add multipart and url-encoded form mime types. 2007-05-15 23:57:16 +00:00
polymorphic_routes.rb Add documentation for polymorphic URL helpers, make API consistent for polymorphic_path and polymorphic_url. 2008-01-27 01:18:47 +00:00
record_identifier.rb Correct documentation for dom_id [jbarnette] Closes #10775 2008-01-26 05:11:09 +00:00
request.rb Provide a nicer way to access headers. request.headers["Content-Type"] instead of request.headers["HTTP_CONTENT_TYPE"] [Koz] 2008-01-11 06:39:56 +00:00
request_forgery_protection.rb Document how to disable forgery protection for tests. Useful note for those upgrading from 1.x. Closes #10440 [Trevor Turk] 2007-12-10 01:15:30 +00:00
request_profiler.rb Preserve integration session's request_count 2008-01-23 08:37:58 +00:00
rescue.rb Ruby 1.9 compat: File.exists\? -> File.exist\? en masse. References #1689 [Pratik Naik] 2007-12-10 05:54:46 +00:00
resources.rb Make example parameters in restful routing docs idiomatic. Closes #9993 [danger] 2007-10-26 03:32:20 +00:00
response.rb Add :status to redirect_to allowing users to choose their own response code without manually setting headers. Closes #8297 [codahale, chasgrundy] 2007-10-09 23:07:36 +00:00
routing.rb Make it simpler to make the root route an alias for another route. Closes #10818 [bscofield] 2008-01-26 08:41:19 +00:00
session_management.rb Document that the cookie store is the default session store. Mention the memcached store. Closes #10241 [Josh Susser, Jeremy Kemper] 2007-11-22 05:48:45 +00:00
status_codes.rb Nodoc the irrelevant (from 1.2) 2007-01-26 21:37:38 +00:00
streaming.rb Introduce send_file :x_sendfile => true to send an X-Sendfile response header. 2008-01-11 22:07:04 +00:00
test_case.rb Make the non inferrable controller message a little friendlier. [Koz] 2008-01-30 01:32:28 +00:00
test_process.rb * Continue evolution toward ActiveSupport::TestCase and friends. #10679 [Josh Peek] 2008-01-05 13:34:15 +00:00
url_rewriter.rb UrlWriter respects relative_url_root. Closes #10748. 2008-01-10 02:51:09 +00:00
verification.rb Refactored ActionController::Verification and improved docs (closes #10681) [jamesh] 2008-01-03 15:49:59 +00:00