aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/filters.rb
Commit message (Expand)AuthorAgeFilesLines
* Remove unnecessary returns from builtin filters since render/return is now su...Jeremy Kemper2007-10-241-1/+0
* Changed before_filter halting to happen automatically on render or redirect b...David Heinemeier Hansson2007-10-211-19/+28
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-6/+8
* Random hits from the style naziDavid Heinemeier Hansson2007-09-091-1/+1
* Refactored in use of extract_options! (closes #9079) [josh]David Heinemeier Hansson2007-07-241-1/+1
* Fix errors with around_filters which do not yield, restore 1.1 behaviour with...Michael Koziarski2007-07-111-47/+47
* Rescuing in around_filters works as expected again [codahale, Stephan Kaes]. ...Tobias Lütke2007-05-221-0/+5
* Sweep flash when filter chain is halted. Closes #6175. [Caio Chassot <lists@...Marcel Molina2007-05-061-8/+0
* Bug fix for the filter implementationMichael Koziarski2007-05-061-3/+9
* Replace the current block/continuation filter chain handling by an implementa...Rick Olson2007-05-021-62/+147
* Consistent public/protected/private visibility for chained methods. Closes #7...Jeremy Kemper2007-03-131-9/+11
* Slight doc tweak to #prepend_filter. Closes #6493 [Jeremy Voorhis]Rick Olson2007-01-051-2/+2
* Correctly report which filter halted the chain. References #6699.Jeremy Kemper2006-12-121-5/+3
* More consistent implementation of filter replacement (thanks Martin! closes #...Jamis Buck2006-10-211-42/+22
* make sure filters in subclasses with :only or :except conditions are treated ...Jamis Buck2006-10-141-2/+29
* r5540@ks: jeremy | 2006-10-08 23:05:30 -0700Jeremy Kemper2006-10-091-73/+73
* Fix bug that kept any before_filter except the first one from being able to h...Rick Olson2006-09-271-5/+4
* whitespaceJeremy Kemper2006-09-261-5/+5
* Filters overhaul including meantime filter support for around filters. Closes...Jeremy Kemper2006-09-221-215/+439
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ...Marcel Molina2006-04-291-8/+3
* Do filter condition lookup against the actual hashMarcel Molina2006-04-061-1/+1
* Honor skipping filters conditionally for only certain actions even when the p...Marcel Molina2006-04-051-0/+13
* Performance speedup for ActionController (closes #4174) [Stefan Kaes] Include...David Heinemeier Hansson2006-03-201-4/+4
* The session should be saved even if the filter chain is stoppedDavid Heinemeier Hansson2006-02-121-1/+5
* Stopped the massive bleeding of concerns into ActionController::Base. Base no...David Heinemeier Hansson2006-02-121-4/+21
* Add caution and restyle componentsDavid Heinemeier Hansson2006-02-121-2/+1
* Major components cleanup and speedup. Closes #3527.Jeremy Kemper2006-02-091-6/+10
* Replace dubious controller parent class in filter docs. Closes #3655, #3722.Marcel Molina2006-02-081-1/+1
* Added :only and :except controls to skip_before/after_filter just like for wh...David Heinemeier Hansson2006-01-311-4/+20
* Added skip_before_filter/skip_after_filter for easier control of the filter c...David Heinemeier Hansson2005-11-041-0/+37
* Fixed docs (closes #2468)David Heinemeier Hansson2005-10-261-3/+3
* Fixed #1774 againDavid Heinemeier Hansson2005-07-271-1/+1
* Improved performance with 5-30% through a series of Action Pack optimizations...David Heinemeier Hansson2005-07-231-8/+8
* Log if filters return false and halt execution #1735 [Michael Koziarski]David Heinemeier Hansson2005-07-171-1/+5
* Faster action_exempted? #1231 [skaen]David Heinemeier Hansson2005-05-191-4/+4
* Fixed doc #1291David Heinemeier Hansson2005-05-191-1/+1
* Added conditions to around_filters just like before_filter and after_filterDavid Heinemeier Hansson2005-04-271-2/+3
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-071-1/+1
* Fixed that all redirect and render calls now return true, so you can use the ...David Heinemeier Hansson2005-01-201-4/+4
* Added conditional filters #431 [Marcel]David Heinemeier Hansson2005-01-091-15/+85
* Added authentication framework to protect actions behind a condition and redi...David Heinemeier Hansson2005-01-091-1/+1
* Added the possibility of passing nil to UrlHelper#link_to to use the link its...David Heinemeier Hansson2005-01-051-8/+8
* InitialDavid Heinemeier Hansson2004-11-241-0/+279