Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | call-seq directive makes rdoc cry and replaces method names with a curly ↵ | Joost Baaij | 2010-08-27 | 1 | -28/+9 |
| | | | | brace; besides it doesn't add anything when you only list one call example since this is obviously documented already | ||||
* | Use nested scope for routes defined at the :resources scope level (as in ↵ | Andrew White | 2010-08-24 | 1 | -5/+6 |
| | | | | | | Rails 2.3) Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Allow format to be skipped. This is used internally by mount. | José Valim | 2010-08-24 | 1 | -2/+5 |
| | |||||
* | Finally fix the bug where symbols and strings were not having the same ↵ | José Valim | 2010-08-24 | 1 | -67/+46 |
| | | | | | | | behavior in the router. If you were using symbols before for methods like match/get/post/put/delete, it is likely that this commit will break your routes. Everything should behave the same if you are using strings, if not, please open up a ticket. | ||||
* | Ensure shortcuts inside resources also generates helpers. | José Valim | 2010-08-24 | 1 | -48/+39 |
| | |||||
* | Fix how routes inside namespaces are generated. | José Valim | 2010-08-24 | 1 | -1/+1 |
| | |||||
* | Allow actions which start with A-Za-z_ only | Santiago Pastorino | 2010-08-24 | 1 | -1/+1 |
| | |||||
* | Reset symbolized path parameters when a test request is recycled [#5437 ↵ | Andrew White | 2010-08-24 | 1 | -2/+2 |
| | | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Ensure prefix in routes are generated properly. | José Valim | 2010-08-24 | 1 | -13/+10 |
| | |||||
* | Fix a bug where symbols and strings were not behaving the same in the ↵ | José Valim | 2010-08-24 | 1 | -9/+4 |
| | | | | router. [#5431 state:resolved] | ||||
* | When custom resource actions are specified using strings add the default ↵ | Andrew White | 2010-08-24 | 1 | -2/+6 |
| | | | | | | | | name and action if the string is a valid ruby method name. [#5431 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Cache the symbolized path parameters using a instance variable in the ↵ | Andrew White | 2010-08-22 | 2 | -3/+8 |
| | | | | | | | | | | | request object rather than the environment hash. This it to prevent stale parameters in later routing constraints/redirects as only the normal path parameters are set by Rack::Mount. Also if a constraint proc arity is more than one, pass the symbolized path parameters as the first argument to match redirect proc args and provide easier access. [#5157 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Fix hash modification during iteration in Mapper [#5420] | Nick Sieger | 2010-08-20 | 1 | -1/+1 |
| | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Support routing constraints in functional tests | Andrew White | 2010-08-20 | 2 | -16/+39 |
| | | | | | | | | | | Extend assert_recognizes and assert_generates to support passing full urls as the path argument. This allows testing of routing constraints such as subdomain and host within functional tests. [#5005 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Don't add the standard https port when using redirect in routes.rb and ↵ | Andrew White | 2010-08-20 | 2 | -1/+11 |
| | | | | | | | | ensure that request.scheme returns https when using a reverse proxy. [#5408 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Allow symbols for :path resource(s) option [#5306 state:resolved] | Andrew White | 2010-08-20 | 1 | -2/+2 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Move regexps in options hash to :constraints hash so that they are pushed ↵ | Andrew White | 2010-08-19 | 1 | -0/+4 |
| | | | | | | into the scope [#5208 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Move edit route before show route so that it will have precedence if the :id ↵ | Andrew White | 2010-08-19 | 1 | -2/+2 |
| | | | | | | parameter allows slashes [#5409 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Don't pluralize resource methods [#4704 state:resolved] | Javier Martín | 2010-08-18 | 1 | -14/+14 |
| | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Allow member actions (get, etc) to accept strings, with test | Andre Arko | 2010-08-17 | 1 | -0/+1 |
| | |||||
* | annoted_source_code may return nil if an error happens during template ↵ | José Valim | 2010-08-16 | 1 | -1/+1 |
| | | | | compiling. | ||||
* | Allow for any possible TLD when using the :all option with the cookie ↵ | Bryce Thornton | 2010-08-15 | 1 | -8/+18 |
| | | | | | | session store. This works for subdomain.mysite.local, google.co.uk, google.com.au, etc. [#5147 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 3 | -15/+15 |
| | | | | 's/[ \t]*$//' -i {} \;) | ||||
* | Moves local_request? to require.local? | Santiago Pastorino | 2010-08-13 | 2 | -8/+8 |
| | | | | [#5361 state:committed] | ||||
* | no need to assign if we are gonna return | Xavier Noria | 2010-08-12 | 1 | -2/+2 |
| | |||||
* | Improve best_standards_support to use only IE=Edge in development mode | wycats | 2010-08-09 | 1 | -2/+11 |
| | |||||
* | adds missing requires for Object#try | Xavier Noria | 2010-08-09 | 2 | -0/+2 |
| | |||||
* | adds URL to the body generated by the redirect macro in the routes mapper as ↵ | Xavier Noria | 2010-08-09 | 1 | -1/+4 |
| | | | | per the RFC, extracts common test pattern into a test macro, adds a test to cover the :status option | ||||
* | Avoid potentially expensive inspect call in router. [#4491 state:resolved] | Samuel Lebeau | 2010-08-03 | 1 | -3/+6 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | edit pass to apply API guideline wrt the use of "# =>" in example code | Xavier Noria | 2010-07-30 | 1 | -1/+1 |
| | |||||
* | Revert "Avoid uneeded queries in session stores if sid is not given." | José Valim | 2010-07-29 | 2 | -5/+3 |
| | | | | | | First step to merge Rails and Rack session stores. Rack always expects to receive the SID since it may have different behavior if the SID is nil. This reverts commit e210895ba95e498b9debbf43a3e5ae588bca81f0. | ||||
* | Forgot to check in this new file | wycats | 2010-07-27 | 1 | -0/+13 |
| | |||||
* | Add a header that tells Internet Explorer (all versions) to use the best ↵ | wycats | 2010-07-27 | 1 | -1/+2 |
| | | | | | | available standards support. This ensures that IE doesn't go into quirks mode because it has been blacklisted by too many users pressing the incompatible button. It also tells IE to use the ChromeFrame renderer, if the user has installed the plugin. This guarantees that the best available standards support will be used on the client. | ||||
* | Change returning with tap | Santiago Pastorino | 2010-07-25 | 2 | -3/+3 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | options could be of any kind of Hash (Hash, HashWithIndifferentAccess or ↵ | Santiago Pastorino | 2010-07-21 | 2 | -2/+2 |
| | | | | OrderedHash) this way we keep the properties of the options passed as an argument | ||||
* | correct typos in Routing examples | Mislav Marohnić | 2010-07-22 | 1 | -3/+3 |
| | |||||
* | Fixed a globbed route issue where slashes were being escaped, causing ↵ | Brian Rose | 2010-07-21 | 1 | -1/+2 |
| | | | | | | assert_routing to fail. [#5135 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Ensure insert_before in middleware stack raises a meaningful error message ↵ | José Valim | 2010-07-21 | 1 | -4/+11 |
| | | | | [#3679 state:resolved] | ||||
* | Moved a few methods from RecordIdentifier to ActiveModel::Naming | Piotr Sarnacki | 2010-07-21 | 1 | -3/+3 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Moved PolymorphicRoutes to ActionDispatch::Routing | Piotr Sarnacki | 2010-07-20 | 3 | -2/+189 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Extract ParameterFilter class from FilterParameters mixin | Bryan Helmkamp | 2010-07-19 | 2 | -64/+81 |
| | | | | Signed-off-by: wycats <wycats@gmail.com> | ||||
* | Remove assert_valid. It was already deprecated on Rails 2.3. | José Valim | 2010-07-19 | 2 | -21/+0 |
| | |||||
* | Set session options id to nil is respected and cancels lazy loading. | José Valim | 2010-07-18 | 1 | -2/+2 |
| | |||||
* | Avoid uneeded queries in session stores if sid is not given. | José Valim | 2010-07-18 | 2 | -3/+5 |
| | |||||
* | Removing ActionDispatch::Http::FilterParameters#fitered_parameters alias | Nick Quaranto | 2010-07-18 | 1 | -2/+1 |
| | |||||
* | Merge remote branch 'docrails/master' | Xavier Noria | 2010-07-17 | 1 | -7/+7 |
|\ | |||||
| * | Small fix in cookie docs and trailing whitespaces | Carlos Antonio da Silva | 2010-07-15 | 1 | -7/+7 |
| | | |||||
* | | Bump up to rack-mount 0.6.9 and rack-mount-0.6.6.pre removed from ↵ | Santiago Pastorino | 2010-07-15 | 35 | -4014/+1 |
|/ | | | | action_dispatch vendor | ||||
* | Merge remote branch 'docrails/master' | Xavier Noria | 2010-07-13 | 2 | -2/+2 |
|\ | |||||
| * | Fixed many references to the old config/environment.rb and Rails::Initializer | Benjamin Quorning | 2010-07-13 | 1 | -1/+1 |
| | |