rails/actionpack/lib/action_controller
2009-02-02 22:39:02 -08:00
..
assertions Merge docrails 2009-01-18 18:10:58 +00:00
caching Fix for sweepers method_missing missing &block argument [#1581 status:committed] 2009-01-27 16:11:45 -06:00
cgi_ext Switch to Rack based session stores. 2008-12-15 16:33:31 -06:00
rack_ext Removed Prototype specific Safari 2 AJAX hack. 2009-01-31 23:51:41 -06:00
routing Fix formatted_* deprecation message 2008-12-30 15:16:51 -08:00
session Session cookie header should always be set if :expire_after option is specified 2009-01-28 05:05:48 +00:00
templates/rescues Silence server backtrace in rescue templates and log files. Also remove some noise from missing template errors. 2008-12-05 11:24:28 -06:00
vendor Depend on rack 0.4.0 instead of vendoring it 2008-11-25 13:20:12 -06:00
base.rb Implement HTTP Digest authentication. [#1230 state:resolved] [Gregg Kellogg, Pratik Naik] 2009-01-29 16:01:59 +00:00
benchmarking.rb Use status response accessor instead of the 'Status' header 2008-12-19 15:05:51 -06:00
caching.rb ActiveRecord::QueryCache middleware 2008-12-22 11:31:18 -06:00
cgi_ext.rb Switch to Rack based session stores. 2008-12-15 16:33:31 -06:00
cgi_process.rb Switch to Rack based session stores. 2008-12-15 16:33:31 -06:00
cookies.rb Switch to Rack::Response#set_cookie instead of using CGI::Cookie to build cookie headers 2008-12-20 21:25:47 -06:00
dispatcher.rb Cache AssetTag timestamps 2009-01-04 15:39:16 -06:00
failsafe.rb Use more generic test env flag 2008-12-18 12:57:37 -06:00
filters.rb Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, but it has since been removed from 1.9. 2008-08-31 13:20:15 -07:00
flash.rb Merge docrails 2009-01-18 18:10:58 +00:00
headers.rb Simplifying usage of ETags and Last-Modified and conditional GET requests 2008-08-07 23:43:12 -07:00
helpers.rb Inline code comments for class_eval/module_eval [#1657 state:resolved] 2008-12-28 19:49:28 +00:00
http_authentication.rb Digest#validate_digest_response should accept request instead of controller 2009-01-29 22:06:03 +00:00
integration.rb Use Rack::Head middleware to ensure the body is discarded for HEAD requests 2009-02-01 01:01:49 -06:00
layout.rb Ensure the full path is used when searching for layouts [#1803 state:resolved] 2009-01-27 11:08:29 -06:00
middleware_stack.rb Add MiddlewareStack#swap 2009-01-20 20:19:52 -06:00
middlewares.rb Use Rack::Head middleware to ensure the body is discarded for HEAD requests 2009-02-01 01:01:49 -06:00
mime_responds.rb Inline code comments for class_eval/module_eval [#1657 state:resolved] 2008-12-28 19:49:28 +00:00
mime_type.rb Fix Mime::Type#=~ not using Regexp.quote 2008-12-21 02:24:22 +00:00
mime_types.rb Added application/jsonrequest as a synonym for application/json 2008-07-02 11:39:42 -07:00
params_parser.rb Build query string and POST params parser on top of Rack::Request. Also switch our multipart parser to use Racks. Moved XML, JSON, and YAML parsers into ActionController::ParamsParser middleware [#1661 state:resolved] 2009-01-17 20:29:50 -06:00
performance_test.rb Use autoload instead of explicit requires for ActionController 2008-11-23 16:35:47 -06:00
polymorphic_routes.rb Inline code comments for class_eval/module_eval [#1657 state:resolved] 2008-12-28 19:49:28 +00:00
rack_ext.rb Build query string and POST params parser on top of Rack::Request. Also switch our multipart parser to use Racks. Moved XML, JSON, and YAML parsers into ActionController::ParamsParser middleware [#1661 state:resolved] 2009-01-17 20:29:50 -06:00
record_identifier.rb Correct code example in dom_id docs. [#437 state:resolved] 2008-06-17 00:32:37 -07:00
request_forgery_protection.rb Change the forgery token implementation to just be a simple random string. 2008-11-23 14:28:34 +01:00
request.rb Dont use Memoizable for ActionController::Request 2009-01-27 17:26:37 +00:00
rescue.rb Added localized rescue (404.da.html) [#1835 state:committed] 2009-02-02 17:56:22 +01:00
resources.rb Removed map.resources :only/:except inheritance 2009-02-01 14:47:56 +13:00
response.rb Remove Content-Length header from :no_content responses 2009-01-07 15:55:28 -08:00
rewindable_input.rb Use toplevel reference to ::StringIO since we're in a BasicObject. 2009-01-27 15:25:05 -08:00
routing.rb Merge docrails 2009-01-18 18:10:58 +00:00
session_management.rb Merge docrails 2009-01-18 18:10:58 +00:00
status_codes.rb Nodoc the irrelevant (from 1.2) 2007-01-26 21:37:38 +00:00
streaming.rb Allow use of symbols for :type option of ActionController::Streaming#send_file/#send_data [#1232 state:resolved] 2008-12-21 18:58:55 +00:00
test_case.rb Workaround jruby issue with protected module attr_accessor showing up as public in included class 2009-02-02 22:39:02 -08:00
test_process.rb Controller, response, and request should all refer to same session, even after a call to session_reset [#1823 state:resolved] 2009-01-29 19:39:48 -06:00
translation.rb Added ActionController::Translation module delegating to I18n #translate/#t and #localize/#l [status:committed #1008] 2008-09-10 00:39:54 -05:00
uploaded_file.rb Build query string and POST params parser on top of Rack::Request. Also switch our multipart parser to use Racks. Moved XML, JSON, and YAML parsers into ActionController::ParamsParser middleware [#1661 state:resolved] 2009-01-17 20:29:50 -06:00
url_encoded_pair_parser.rb Ruby 1.9 compat: work around that String is not Enumerable 2009-01-31 10:55:47 -08:00
url_rewriter.rb Ensure that when UrlWriter is included in multiple classes, the default_url_options of one don't affect the other. [#1277 state:resolved] 2009-01-28 19:31:48 +00:00
verification.rb Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, but it has since been removed from 1.9. 2008-08-31 13:20:15 -07:00