aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/routing.textile
Commit message (Collapse)AuthorAgeFilesLines
* Add CHANGELOG entry and documentation for Routing ConcernsRafael Mendonça França2012-08-131-0/+30
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-06-301-1/+7
|\ | | | | | | | | Conflicts: activemodel/lib/active_model/errors.rb
| * Fixed example in 1.2 so help will be defined as the text impliesPerry Smith2012-06-241-1/+7
| |
* | Revert "Allow loading external route files from the router"José Valim2012-06-291-18/+0
|/ | | | | | | | | | | | | | This reverts commit 6acebb38bc0637bc05c19d87f8767f16ce79189b. Usage of this feature did not reveal any improvement in existing apps. Conflicts: actionpack/lib/action_dispatch/routing/mapper.rb guides/source/routing.textile railties/lib/rails/engine.rb railties/lib/rails/paths.rb railties/test/paths_test.rb
* Support unicode character route in config/routes.rb.kennyj2012-06-161-0/+8
|
* copy edit routing guide [ci skip]Vijay Dev2012-06-021-1/+3
|
* routes are viewable in browser (update guides)schneems2012-06-011-2/+2
| | | From the Pull Request #6461
* [routing guide] Add mention of get '/:username' routeRyan Bigg2012-05-261-0/+8
| | | | This is fairly common in Rails applications and is requested a lot of the time on Stack Overflow and #rubyonrails
* grammar fixes in a tip in Rails routing guideRory O’Kane2012-05-241-1/+1
|
* Remove unnecessary ).Uģis Ozols2012-04-281-1/+1
|
* Allow loading external route files from the routerJose and Yehuda2012-04-251-0/+18
| | | | | | | | | This feature enables the ability to load an external routes file from the router via: draw :filename External routes files go in +config/routes+. This feature works in both engines and applications.
* Remove default match without specified methodJose and Yehuda2012-04-241-39/+37
| | | | | | | | | | | | | | | | In the current router DSL, using the +match+ DSL method will match all verbs for the path to the specified endpoint. In the vast majority of cases, people are currently using +match+ when they actually mean +get+. This introduces security implications. This commit disallows calling +match+ without an HTTP verb constraint by default. To explicitly match all verbs, this commit also adds a :via => :all option to +match+. Closes #5964
* copy editing [ci skip]Vijay Dev2012-04-011-1/+1
|
* Routing guide: document lambda constraints and request argument.Henrik N2012-03-281-0/+11
|
* moves the guides up to the root directoryXavier Noria2012-03-171-0/+890