Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add notes on how to override the default :id constraint [#5994 state:resolved] | Andrew White | 2011-02-14 | 1 | -1/+8 | |
| | ||||||
* | Remove incorrect assert_recognizes example | Andrew White | 2011-02-13 | 1 | -3/+0 | |
| | ||||||
* | Fix assert_recognizes with block constraints [#5805 state:resolved] | Andrew White | 2011-02-13 | 3 | -6/+13 | |
| | ||||||
* | Add missing deprecation require | Carlos Antonio da Silva | 2011-02-11 | 1 | -0/+1 | |
| | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | |||||
* | Change the CSRF whitelisting to only apply to get requests | Michael Koziarski | 2011-02-08 | 1 | -1/+2 | |
| | | | | | | | | Unfortunately the previous method of browser detection and XHR whitelisting is unable to prevent requests issued from some Flash animations and Java applets. To ease the work required to include the CSRF token in ajax requests rails now supports providing the token in a custom http header: X-CSRF-Token: ... This fixes CVE-2011-0447 | |||||
* | Use Mime::Type references. | José Valim | 2011-02-08 | 1 | -1/+5 | |
| | ||||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-02-05 | 1 | -17/+39 | |
|\ | ||||||
| * | improve routing docs, mostly for #match | Gabriel Horner | 2011-02-05 | 1 | -12/+34 | |
| | | ||||||
| * | keep options titles consistent to "Options" | Gabriel Horner | 2011-02-03 | 1 | -5/+5 | |
| | | ||||||
* | | fixed bug with nested resources within shallow scope | german | 2011-02-04 | 1 | -1/+1 | |
| | | | | | | | | | | | | [#6372 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | |||||
* | | Protocol-relative URL support. | Stephen Celis | 2011-02-02 | 1 | -2/+5 | |
|/ | | | | | | [#5774 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | |||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-02-02 | 3 | -94/+194 | |
|\ | ||||||
| * | explain different ways to use match() | Jonathan Dance + Gabriel Horner | 2011-01-29 | 1 | -9/+16 | |
| | | ||||||
| * | organize and expand on options for routing methods | Jonathan Dance + Gabriel Horner | 2011-01-29 | 1 | -81/+161 | |
| | | ||||||
| * | corrected the location of status code symbols | misfo | 2011-01-29 | 1 | -1/+1 | |
| | | ||||||
| * | add cross-references and documentation for scope | Jonathan Dance + Gabriel Horner | 2011-01-28 | 1 | -0/+12 | |
| | | ||||||
| * | fix cross-references in HttpHelper methods | Jonathan Dance + Gabriel Horner | 2011-01-28 | 1 | -4/+4 | |
| | | ||||||
| * | clarify what the "they" that are is and what the "are" in question is | Matt Jankowski | 2011-01-27 | 1 | -1/+2 | |
| | | ||||||
* | | Use run_callbacks; the generated _run_<name>_callbacks method is not a ↵ | John Firebaugh | 2011-01-31 | 2 | -5/+5 | |
| | | | | | | | | | | | | public interface. Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | |||||
* | | Add tld_length option when using domain :all in cookies | brainopia | 2011-01-21 | 1 | -9/+9 | |
| | | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | | Support list of possible domains for cookies | brainopia | 2011-01-21 | 1 | -0/+3 | |
|/ | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | removing more unused variables | Aaron Patterson | 2011-01-17 | 1 | -1/+1 | |
| | ||||||
* | use raise to create exceptions and to set the backtrace | Aaron Patterson | 2011-01-12 | 2 | -2/+2 | |
| | ||||||
* | reraising should be in the rescue block | Aaron Patterson | 2011-01-12 | 1 | -1/+1 | |
| | ||||||
* | Refactor to handle the X-Cascade without having to raise an exception | Krekoten' Marjan | 2011-01-09 | 1 | -12/+12 | |
| | ||||||
* | render :template is faster than render :file | Santiago Pastorino | 2011-01-01 | 2 | -5/+4 | |
| | ||||||
* | This is not needed anymore | Santiago Pastorino | 2011-01-01 | 1 | -3/+0 | |
| | ||||||
* | Don't deprecate to_prepare. | José Valim | 2010-12-23 | 1 | -4/+4 | |
| | ||||||
* | Clean up callbacks should also be called on exceptions. | José Valim | 2010-12-23 | 1 | -0/+3 | |
| | ||||||
* | Typo (request -> response) | John Firebaugh | 2010-12-21 | 1 | -1/+1 | |
| | ||||||
* | Expand ActionDispatch::Reloader docs | John Firebaugh | 2010-12-21 | 1 | -6/+14 | |
| | ||||||
* | Small changes on AD::Reloader. | José Valim | 2010-12-20 | 1 | -20/+3 | |
| | ||||||
* | Replace AD::Callbacks.to_prepare with AD::Reloader.to_prepare | John Firebaugh | 2010-12-20 | 1 | -25/+6 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Introduce ActionDispatch::Reloader | John Firebaugh | 2010-12-20 | 1 | -0/+82 | |
| | | | | | | | | | | | | Based on the implementation on the 2-3-stable branch, patches by Hongli Lai <hongli@phusion.nl>, and helpful suggestions from José Valim. Hongli Lai's patches included locking around the request cycle; this is now handled by Rack::Lock (https://github.com/rack/rack/issues/issue/87/). [#2873] Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | dry up case / when statement | Aaron Patterson | 2010-12-17 | 1 | -5/+3 | |
| | ||||||
* | Fix edge cases for domain :all option on cookie store | brainopia | 2010-12-16 | 1 | -2/+5 | |
| | | | | | | | | Dont set explicit domain for cookies if host is not a domain name [#6002 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | |||||
* | Fix indentation on the namespace method's documentation | Ryan Bigg | 2010-12-13 | 1 | -16/+16 | |
| | ||||||
* | Provide an example for ActionDispatch::Routing::Mapper#scope | Ryan Bigg | 2010-12-11 | 1 | -0/+12 | |
| | ||||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2010-12-11 | 1 | -5/+10 | |
|\ | | | | | | | | | Conflicts: activerecord/lib/active_record/transactions.rb | |||||
| * | Action Controller Overview: Remove dead link to the API docs for filters | Ryan Bigg | 2010-12-10 | 1 | -0/+1 | |
| | | ||||||
| * | root method options are the same as the match method | Ryan Bigg | 2010-12-10 | 1 | -0/+2 | |
| | | ||||||
| * | root route should go at the *top* of the routes file, because it is the most ↵ | Ryan Bigg | 2010-12-09 | 1 | -1/+3 | |
| | | | | | | | | popular route and should be matched first | |||||
| * | indent code samples for mount doc | Ryan Bigg | 2010-12-09 | 1 | -3/+3 | |
| | | ||||||
| * | mapper.rb: add "options" to make the default-to-namespace-name line read better | Ryan Bigg | 2010-12-09 | 1 | -1/+1 | |
| | | ||||||
* | | Check if the routes object really responds to define_mount_prefix. | José Valim | 2010-12-09 | 1 | -1/+1 | |
|/ | ||||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2010-12-05 | 1 | -2/+2 | |
|\ | ||||||
| * | Fix mime type doc typos | Carlos Antonio da Silva | 2010-12-04 | 1 | -2/+2 | |
| | | ||||||
* | | Wrap everything in class << self. | José Valim | 2010-12-03 | 1 | -42/+37 | |
| | | ||||||
* | | Merge remote branch 'joshk/redirect_routing' | José Valim | 2010-12-03 | 4 | -79/+184 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | Conflicts: actionpack/CHANGELOG actionpack/lib/action_controller/metal/mime_responds.rb Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
| * | | Added documentation explaining the new additional supported syntaxes for the ↵ | Josh Kalderimis | 2010-11-30 | 1 | -0/+29 | |
| | | | | | | | | | | | | routing redirect method, a small changelog note, and two extra tests for path interpolation when using the hash option syntax. |