aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
Commit message (Expand)AuthorAgeFilesLines
* Fixed that ActionController::Base#read_multipart would fail if boundary was e...David Heinemeier Hansson2008-03-281-1/+0
* Fixed HTML::Tokenizer (used in sanitize helper) didnt handle unclosed CDATA t...David Heinemeier Hansson2008-03-281-1/+1
* Improve documentation.Pratik Naik2008-03-261-0/+7
* Fix regression from filter refactoring where re-adding a skipped filter resul...Rick Olson2008-03-231-0/+3
* Fix an edge case with extra periods in Routing.normalize_paths. Closes #11337...Jeremy Kemper2008-03-211-2/+2
* assert_response, don't cry if @exception isn't available in the templateJeremy Kemper2008-03-181-1/+3
* Refactor filters to use Active Support callbacks. Closes #11235.Jeremy Kemper2008-03-182-407/+263
* Fixed that polymorphic routes would modify the input array (closes #11363) [t...David Heinemeier Hansson2008-03-171-0/+4
* Docfix (closes #11249) [juanjo.bazan]David Heinemeier Hansson2008-03-151-0/+2
* Fixed that cache fetch method would cause nil exception when called with no o...David Heinemeier Hansson2008-03-151-1/+1
* Fix more obscure nested parameter hash parsing bug. Closes #10797 [thomas.lee]Rick Olson2008-03-131-1/+2
* Fix nested parameter hash parsing bug. #10797 [thomas.lee]Rick Olson2008-03-111-0/+1
* Allow using named routes in ActionController::TestCase before any request has...Pratik Naik2008-03-081-2/+2
* Fixed that sweepers defined by cache_sweeper will be added regardless of the ...David Heinemeier Hansson2008-03-081-3/+2
* Make MimeResponds::Responder#any work without explicit types. Closes #11140 [...Pratik Naik2008-03-071-2/+6
* Better error message for type conflicts when parsing params. Closes #7962 [s...Rick Olson2008-03-071-1/+1
* Remove unused ActionController::Base.template_class. Closes #10787Pratik Naik2008-03-051-8/+1
* Documenation for has_one/has_many nested resource options. Closes #11195 [mil...Pratik Naik2008-03-051-0/+15
* Moved template handlers related code from ActionView::Base to ActionView::Tem...Pratik Naik2008-03-051-2/+1
* Allow file uploads in Integration Tests. Closes #11091 [RubyRedRick]Michael Koziarski2008-03-031-1/+49
* Use realtime to reduce garbage. [adymo]Michael Koziarski2008-02-291-1/+1
* Add :trailing_slash option to UrlWriter. Closes #9117 [juanjo.bazan]Michael Koziarski2008-02-181-2/+3
* Make sure render :update support the options hash. Closes #11088 [ernesto.ji...Michael Koziarski2008-02-123-9/+11
* remove support for ampersand-delimited cookie valuesJamis Buck2008-02-121-4/+3
* Added support for naming concrete classes in sweeper declarations [DHH]David Heinemeier Hansson2008-02-071-1/+9
* Remove ERB trim variables from trace template in case ActionView::Base.erb_tr...Rick Olson2008-02-071-5/+5
* Fix bug with setting Request#format= after the getter has cached the value. C...Rick Olson2008-02-071-1/+1
* Correct inconsistencies in RequestForgeryProtection docs. #11032 [mislav]Rick Olson2008-02-061-34/+41
* Introduce a Template class to ActionView. Closes #11024 [lifofifo]Michael Koziarski2008-02-061-1/+3
* Add --measure option to script/performance/request to set ruby-prof measure m...Jeremy Kemper2008-02-031-1/+4
* Introduce map.resources :cards, :as => 'tarjetas' to use a custom resource na...Jeremy Kemper2008-02-021-2/+10
* TestSession supports indifferent access. Closes #7372.Jeremy Kemper2008-02-021-3/+3
* Don't split cookies on comma also. References r8505.Jeremy Kemper2008-02-021-1/+1
* Make the non inferrable controller message a little friendlier. [Koz]Michael Koziarski2008-01-301-1/+7
* Make assert_routing aware of the HTTP method used. Closes #8039 [mpalmer]Michael Koziarski2008-01-301-2/+5
* Add documentation for polymorphic URL helpers, make API consistent for polym...Michael Koziarski2008-01-271-15/+90
* Make it simpler to make the root route an alias for another route. Closes #...Michael Koziarski2008-01-262-0/+11
* Correct documentation for dom_id [jbarnette] Closes #10775Michael Koziarski2008-01-261-4/+4
* Preserve integration session's request_countJeremy Kemper2008-01-231-1/+10
* Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. C...Michael Koziarski2008-01-213-18/+12
* Ensure mime types can be compared with symbols. Closes #10796 [bscofield]Michael Koziarski2008-01-201-1/+4
* Revert r8669 for now, breaks Action Mailer. Reopens #10800.Jeremy Kemper2008-01-193-12/+18
* Performance: optimize route recognition. Large speedup for apps with many res...Jeremy Kemper2008-01-193-13/+163
* Introduce TemplateFinder to handle view paths and lookups. Closes #10800.Jeremy Kemper2008-01-193-18/+12
* Extract ActiveSupport::Callbacks from Active Record, test case setup and tear...Jeremy Kemper2008-01-191-38/+13
* Restructure routing into several smaller files. References #10835 [oleganza]Michael Koziarski2008-01-177-1179/+1197
* Ensure that the tests use the instance-level view-paths correctly. Closes #1...Michael Koziarski2008-01-161-5/+5
* don't misbehave when redirecting to nil. Closes #10272 [farleyknight]Michael Koziarski2008-01-121-1/+2
* Introduce send_file :x_sendfile => true to send an X-Sendfile response header.Jeremy Kemper2008-01-111-23/+31
* Provide a nicer way to access headers. request.headers["Content-Type"] inste...Michael Koziarski2008-01-112-1/+34