aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/rescue.rb
Commit message (Expand)AuthorAgeFilesLines
* Memoize request accessors on the Rack env so other request objects have acces...Joshua Peek2009-01-041-2/+2
* Fixed call_with_exception for Routing Errors [#1684 state:resolved]Laszlo Bacsi2009-01-021-2/+2
* Clean up view path cruft and split path implementations into Template::Path a...Joshua Peek2008-12-291-2/+2
* Make router and controller classes better rack citizensJoshua Peek2008-12-281-1/+3
* Use status response accessor instead of the 'Status' headerJoshua Peek2008-12-191-1/+1
* Ensure error file is sent with a 'text/html' content type [#1478 state:resolved]Brady Bouchard2008-12-171-1/+1
* Fixed template lookups from outside the rails root [#1557 state:resolved]Joshua Peek2008-12-111-1/+1
* Silence server backtrace in rescue templates and log files. Also remove some ...Joshua Peek2008-12-051-24/+42
* Added ActiveSupport::BacktraceCleaner and Rails::BacktraceCleaner for cutting...David Heinemeier Hansson2008-11-221-10/+4
* Add tests for ActiveSupport::Rescuable. Use ActiveSupport::Rescuable in Actio...Pratik Naik2008-10-041-99/+3
* Ensure rescue_from handlers are respected inside tests. [#835 state:resolved]Pratik Naik2008-10-041-18/+18
* Merge docrailsPratik Naik2008-09-031-1/+1
* Move copying ivar logic from ActionController::Base to ActionView::BasePratik Naik2008-08-311-3/+0
* Cleanup around partial renderingRyan Bates2008-08-211-1/+1
* Allow Dispatcher exceptions to be handled in application.rb using rescue_fromPratik Naik2008-07-161-12/+16
* Made ActionView::Base#render_file privateJoshua Peek2008-06-251-1/+1
* Simpler rescue_action conditionJeremy Kemper2008-05-121-4/+2
* Improve documentation coverage and markupXavier Noria2008-05-021-17/+19
* Changing "and" to && whereever I catch itDavid Heinemeier Hansson2008-04-271-1/+1
* Move missing template logic to ActionViewPratik Naik2008-04-191-1/+1
* Added Rails.public_path to control where HTML and assets are expected to be l...David Heinemeier Hansson2008-04-131-1/+1
* Ruby 1.9 compat: File.exists\? -> File.exist\? en masse. References #1689 [Pr...Jeremy Kemper2007-12-101-1/+1
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
* Docfix (closes #10155)David Heinemeier Hansson2007-11-181-2/+2
* Make rescue_from behave like rescue when dealing with subclasses. Closes #10...Michael Koziarski2007-11-061-6/+51
* rescue_from accepts :with => lambda { |exception| ... } or a normal block. Cl...Jeremy Kemper2007-10-101-4/+7
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-2/+2
* Change from InvalidToken to InvalidAuthenticityToken to be more specificDavid Heinemeier Hansson2007-09-241-9/+9
* Move rescue_action_with_handler from rescue_action to perform_action so it is...Jeremy Kemper2007-09-241-2/+2
* Introduce ActionController::Base.rescue_from to declare exception-handling me...Jeremy Kemper2007-09-231-2/+51
* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha...Rick Olson2007-09-231-1/+2
* Random hits from the style naziDavid Heinemeier Hansson2007-09-091-1/+1
* Remove deprecated functionality from actionpack. Closes #8958 [lifofifo]Michael Koziarski2007-09-031-1/+1
* Routing: respond with 405 Method Not Allowed status when the route path match...Jeremy Kemper2007-05-261-6/+14
* Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug ...David Heinemeier Hansson2007-04-281-24/+0
* Added .erb and .builder as preferred aliases to the now deprecated .rhtml and...David Heinemeier Hansson2007-02-201-1/+1
* RecordInvalid, RecordNotSaved => 422 Unprocessable Entity, StaleObjectError =...Jeremy Kemper2007-01-171-1/+3
* Improve the documentation for customising your rescue actions. Closes #7041 [...Michael Koziarski2007-01-151-6/+14
* Use 400 Bad Request status for unrescued ActiveRecord::RecordInvalid exceptions.Jeremy Kemper2006-12-221-1/+2
* Silence log_error deprecation warnings from inspecting deprecated instance va...Jeremy Kemper2006-12-191-8/+10
* Unrescued ActiveRecord::RecordNotFound responds with 404 instead of 500.Jeremy Kemper2006-12-081-1/+2
* test controller rescuesJeremy Kemper2006-11-131-62/+84
* Fixed that rescue template path shouldn't be hardcoded, then it's easier to h...David Heinemeier Hansson2006-10-091-1/+1
* Fixed some deprecation warnings in ActionPack [Rick Olson]Rick Olson2006-09-301-1/+1
* Added proper getters and setters for content type and charset [DHH] Added utf...David Heinemeier Hansson2006-09-171-1/+1
* Changed that uncaught exceptions raised any where in the application will cau...David Heinemeier Hansson2006-09-031-4/+7
* Tighten rescue clauses. Closes #5985.Jeremy Kemper2006-08-311-1/+1
* Deprecate direct usage of @params. Update ActionView::Base for instance var d...Jeremy Kemper2006-08-071-2/+2
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ...Marcel Molina2006-04-291-2/+1
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molin...Marcel Molina2006-04-291-2/+1