OSDN Git Service

Converted routing and urls to follow the Rails REST convention.
authorEric Davis <edavis@littlestreamsoftware.com>
Mon, 26 Jan 2009 01:47:51 +0000 (01:47 +0000)
committerEric Davis <edavis@littlestreamsoftware.com>
Mon, 26 Jan 2009 01:47:51 +0000 (01:47 +0000)
commit765f7abc60334b278c97678c41f1ba458db283d0
treeb038f8fc57b5fe2cb49e0bc8b5e6b68300cc97e6
parentbcc9007196828635abf4ce0e0260766241e7b9d5
Converted routing and urls to follow the Rails REST convention.

Patch supplied by commits from Gerrit Kaiser on Github.  Existing routes will
still work (backwards compatible) but any new urls will be generated using the
new routing rules.

Changes listed below:

* made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id
* prettier URL for project roadmap
* more nice project URLs
* use GET for filtering form
* prettified URLs used on issues tab
* custom route for activity atom feeds
* prettier repository urls
* fixed broken route definition
* fixed failing tests for issuecontroller that were hardcoding the url string
* more RESTful routes for boards and messages
* RESTful routes for wiki pages
* RESTful routes for documents
* moved old routes that are retained for compatibility to the bottom and grouped them together
* added RESTful URIs for issues
* RESTfulness for the news section
* fixed route order
* changed hardcoded URLs in tests
* fixed badly written tests
* fixed forgotten parameter in routes
* changed hardcoded URLS to new scheme
* changed project add url to the standard POST to collection
* create new issue by POSTing to collection
* changed hardcoded URLs in integrations tests
* made project add form work again
* restful routes for project deletion
* prettier routes for project (un)archival
* made routes table more readable
* fixed note quoting
* user routing
* fixed bug
* always sort by GET
* Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled.
* prettified URLs used on issues tab
* urls for time log
* fixed reply routing
* eliminate revision query paremeter for diff and entry actions
* fixed test failures with hard-coded urls
* ensure ajax links always use get
* refactored ajax link generation into separate method

  #1901

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
30 files changed:
app/helpers/application_helper.rb
app/helpers/sort_helper.rb
app/views/projects/changelog.rhtml
app/views/timelog/details.rhtml
app/views/timelog/report.rhtml
app/views/users/_general.rhtml
config/routes.rb
test/functional/admin_controller_test.rb
test/functional/boards_controller_test.rb
test/functional/documents_controller_test.rb
test/functional/issue_relations_controller_test.rb [new file with mode: 0644]
test/functional/issues_controller_test.rb
test/functional/members_controller_test.rb [new file with mode: 0644]
test/functional/messages_controller_test.rb
test/functional/news_controller_test.rb
test/functional/projects_controller_test.rb
test/functional/reports_controller_test.rb [new file with mode: 0644]
test/functional/repositories_controller_test.rb
test/functional/repositories_subversion_controller_test.rb
test/functional/timelog_controller_test.rb
test/functional/users_controller_test.rb
test/functional/versions_controller_test.rb
test/functional/wiki_controller_test.rb
test/functional/wikis_controller_test.rb
test/integration/admin_test.rb
test/integration/issues_test.rb
test/integration/projects_test.rb
test/unit/helpers/application_helper_test.rb
test/unit/lib/redmine/wiki_formatting/macros_test.rb
test/unit/mailer_test.rb