| Commit message (Expand) | Author | Age | Files | Lines |
* | request.parameters doesn't overwrite request.request_parameters. Closes #9949... | Jeremy Kemper | 2007-10-22 | 1 | -1/+1 |
* | Changed before_filter halting to happen automatically on render or redirect b... | David Heinemeier Hansson | 2007-10-21 | 1 | -19/+28 |
* | Ensure that cookies handle array values correctly. Closes #9937 [queso] | Rick Olson | 2007-10-20 | 1 | -1/+4 |
* | Use SecureRandom to generate unique ids, if available. | Jeremy Kemper | 2007-10-18 | 1 | -12/+22 |
* | caches_page uses a single after_filter instead of one per action. Closes #9891. | Jeremy Kemper | 2007-10-16 | 1 | -3/+2 |
* | More Performant Cookie Regexp for Integration tests. [Ola Bini] | Michael Koziarski | 2007-10-16 | 1 | -1/+1 |
* | Dispatcher: fix that to_prepare should only run once in production. Closes #9... | Jeremy Kemper | 2007-10-16 | 1 | -1/+2 |
* | Improve the error message for assert_redirected_to. Closes #7337 [mikong, san... | Jeremy Kemper | 2007-10-16 | 1 | -3/+2 |
* | Fix Json related documentation for render and the AR serializer. Closes #9814... | Michael Koziarski | 2007-10-15 | 2 | -6/+12 |
* | Memcached sessions: add session data on initialization; don't silently discar... | Jeremy Kemper | 2007-10-14 | 1 | -15/+8 |
* | Missed post_via_redirect. References #6834 | Michael Koziarski | 2007-10-13 | 1 | -1/+1 |
* | Define get_via_redirect as well. Closes #6834 [colthorp] | Michael Koziarski | 2007-10-13 | 1 | -1/+2 |
* | Make sure that custom inflections are picked up by map.resources by triggerin... | Michael Koziarski | 2007-10-13 | 1 | -7/+20 |
* | rescue_from accepts :with => lambda { |exception| ... } or a normal block. Cl... | Jeremy Kemper | 2007-10-10 | 1 | -4/+7 |
* | Add :status to redirect_to allowing users to choose their own response code w... | Michael Koziarski | 2007-10-09 | 2 | -10/+25 |
* | Fix url_for, redirect_to, etc. with :controller => :symbol instead of 'string... | Jeremy Kemper | 2007-10-07 | 2 | -1/+5 |
* | Use StringIO and Tempfile subclasses instead of defining singleton methods on... | Jeremy Kemper | 2007-10-06 | 1 | -47/+59 |
* | Rewind stdin if possible after multipart parsing. | Jeremy Kemper | 2007-10-06 | 1 | -0/+1 |
* | Don't generate strings to log unless they'll actually get logged. | Jeremy Kemper | 2007-10-06 | 1 | -1/+1 |
* | Move #query_string to AbstractRequest | Jeremy Kemper | 2007-10-03 | 2 | -3/+10 |
* | rescue LoadError if memcache isn't available while loading the MemCache fragm... | Rick Olson | 2007-10-03 | 1 | -0/+4 |
* | Use #require_library_or_gem to load the memcache library for the MemCache ses... | Rick Olson | 2007-10-03 | 2 | -1/+2 |
* | Move ActionController::Routing.optimise_named_routes to ActionController::Bas... | Rick Olson | 2007-10-03 | 3 | -14/+14 |
* | Merge session fixation fixes from stable | Michael Koziarski | 2007-10-02 | 1 | -4/+12 |
* | Ruby 1.9 compat, consistent load paths | Jeremy Kemper | 2007-10-02 | 22 | -122/+142 |
* | Fixed that render template did not honor exempt_from_layout (closes #9698) [p... | David Heinemeier Hansson | 2007-09-30 | 1 | -3/+3 |
* | Fixed that a response has to be available for that exact mime type for it to ... | David Heinemeier Hansson | 2007-09-29 | 1 | -1/+1 |
* | Ensure request is present, as well as defined. [nzkoz] | Michael Koziarski | 2007-09-29 | 1 | -4/+4 |
* | Re-enable Routing optimisation code for _url methods, add defined?(request) t... | Michael Koziarski | 2007-09-28 | 2 | -9/+5 |
* | Better error messages if you leave out the :secret option for request forgery... | Rick Olson | 2007-09-28 | 1 | -1/+5 |
* | Allow ability to disable request forgery protection, disable it in test mode ... | Rick Olson | 2007-09-28 | 2 | -4/+15 |
* | Fixed spelling errors (closes #9706) [tarmo/rmm5t] | David Heinemeier Hansson | 2007-09-28 | 5 | -6/+6 |
* | Fixed the layout defaults (closes #9564) [lifo] | David Heinemeier Hansson | 2007-09-28 | 1 | -14/+19 |
* | Avoid calling is_missing on LoadErrors. Closes #7460. | Nicholas Seckar | 2007-09-27 | 1 | -1/+1 |
* | Reinstate the default AR.instantiate_observers to_prepare block. | Jeremy Kemper | 2007-09-26 | 1 | -0/+6 |
* | Move Railties' Dispatcher to ActionController::Dispatcher, introduce before_ ... | Jeremy Kemper | 2007-09-26 | 1 | -0/+183 |
* | Added failing tests for iphone | David Heinemeier Hansson | 2007-09-25 | 1 | -4/+11 |
* | Change from InvalidToken to InvalidAuthenticityToken to be more specific | David Heinemeier Hansson | 2007-09-24 | 2 | -16/+21 |
* | Move rescue_action_with_handler from rescue_action to perform_action so it is... | Jeremy Kemper | 2007-09-24 | 1 | -2/+2 |
* | port over some of the csrf_killer README docs | Rick Olson | 2007-09-24 | 1 | -0/+13 |
* | Beefed up docs a bit | David Heinemeier Hansson | 2007-09-24 | 1 | -17/+27 |
* | Optimized named routes respect AbstractRequest.relative_url_root. Closes #9612. | Jeremy Kemper | 2007-09-23 | 1 | -0/+2 |
* | Dont need all of test/unit (closes #6673) [zenspider/josh] | David Heinemeier Hansson | 2007-09-23 | 1 | -1/+0 |
* | Remove , and ; (comma and semicolon) from routing separators again. Reference... | Jeremy Kemper | 2007-09-23 | 1 | -2/+2 |
* | Fixed cache_page to use the request url instead of the routing options when p... | David Heinemeier Hansson | 2007-09-23 | 1 | -8/+11 |
* | Introduce ActionController::Base.rescue_from to declare exception-handling me... | Jeremy Kemper | 2007-09-23 | 1 | -2/+51 |
* | Rename some RequestForgeryProtection methods. The class method is now #prote... | Rick Olson | 2007-09-23 | 2 | -21/+32 |
* | Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha... | Rick Olson | 2007-09-23 | 3 | -1/+81 |
* | Roll back #7578, tests failed | David Heinemeier Hansson | 2007-09-22 | 1 | -2/+3 |
* | Improve the error message for assert_redirected_to (closes #7337) [sandofsky] | David Heinemeier Hansson | 2007-09-22 | 1 | -3/+2 |