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
Mislav Marohnić 01f06fc7f4 Don't let empty Tempfiles come through as uploaded files [#1785 state:resolved]
Signed-off-by: Joshua Peek <josh@joshpeek.com>
2009-01-20 12:38:25 -06:00
..
assertions Merge docrails 2009-01-18 18:10:58 +00:00
caching ActiveRecord::QueryCache middleware 2008-12-22 11:31:18 -06:00
cgi_ext Switch to Rack based session stores. 2008-12-15 16:33:31 -06:00
rack_ext 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
routing Fix formatted_* deprecation message 2008-12-30 15:16:51 -08:00
session Restore cookie store httponly default to true. Remove extraneous dup of options on initialization [#1784 state:resolved] 2009-01-20 11:50:43 -06: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 Deprecate ActionController::Base#session_enabled? 2009-01-19 18:53:14 +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 Revert "HTTP Digest authentication [#1230 state:resolved]" 2009-01-13 16:13:42 +00:00
integration.rb Update multipart tests to expose (another) bug in Rack's multipart parser 2009-01-13 17:21:45 -06:00
layout.rb Ensure the template format is always passed to the template finder. Now we can cleanup some nasty stuff. 2008-12-21 17:24:16 -06:00
middleware_stack.rb Update multipart tests to expose (another) bug in Rack's multipart parser 2009-01-13 17:21:45 -06:00
middlewares.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
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
request.rb Merge docrails 2009-01-18 18:10:58 +00: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
rescue.rb Memoize request accessors on the Rack env so other request objects have access to the same cache [#1668 state:resolved] 2009-01-04 12:15:15 -06:00
resources.rb Merge with docrails 2008-12-07 03:27:53 +01:00
response.rb Remove Content-Length header from :no_content responses 2009-01-07 15:55:28 -08:00
rewindable_input.rb Ensure any method sent to RewindableIO reads the original IO object [#1767 state:resolved] 2009-01-17 11:12:18 -06: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
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 Take care not to mix in public methods 2009-01-07 14:49:12 -08:00
test_process.rb Change Object#try to raise NoMethodError on private methods and always return nil when Object is nil [Pratik Naik, Lawrence Pit] 2009-01-13 03:28:32 +00: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 Don't let empty Tempfiles come through as uploaded files [#1785 state:resolved] 2009-01-20 12:38:25 -06:00
url_rewriter.rb Merge docrails changes 2008-07-28 12:33:24 +01: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