Skip to content

Commit

Permalink
Remove excess whitespace from UrlMappings.groovy.
Browse files Browse the repository at this point in the history
  • Loading branch information
pledbrook committed Jan 25, 2012
1 parent 7af2039 commit e465166
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions grails-app/conf/UrlMappings.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class UrlMappings {

"/blog/delete/$id"(controller: 'blogEntry', action:'delete')
"/blog"(controller:"blog", action:"list")
"/Grails+Screencasts"(controller:"screencast", action:"list")
"/Grails+Screencasts"(controller:"screencast", action:"list")

"/rateable/rate/$id"(controller: "rateable", action:"rate")
"/tag/autoCompleteNames"(controller:'tag', action:'autoCompleteNames')
Expand All @@ -84,25 +84,25 @@ class UrlMappings {
"/rollback/$id/$number"(controller: "content", action: "rollbackWikiVersion")
"/diff/$id/$number/$diff"(controller: "content", action: "diffWikiVersion")
"/previous/$id/$number"(controller: "content", action: "previousWikiVersion")
"/screencasts"(controller:"screencast", action:"list")
"/screencasts/tags"(controller:"screencast", action:"browseTags")
"/screencast/save"(controller:"screencast", action:"save")
"/screencast/search"(controller:"screencast", action:"search")
"/screencast/update"(controller:"screencast", action:"update")
"/screencast/edit/$id"(controller:"screencast", action:"edit")
"/screencast/feed"(controller:"screencast", action:"feed")

"/screencasts"(controller:"screencast", action:"list")
"/screencasts/tags"(controller:"screencast", action:"browseTags")
"/screencast/save"(controller:"screencast", action:"save")
"/screencast/search"(controller:"screencast", action:"search")
"/screencast/update"(controller:"screencast", action:"update")
"/screencast/edit/$id"(controller:"screencast", action:"edit")
"/screencast/feed"(controller:"screencast", action:"feed")
"/screencast/add"(controller:"screencast", action:"create")
"/screencast/show/$id"(controller:"screencast", action:"show")
"/screencast/show/$id"(controller:"screencast", action:"show")
"/comment/add"(controller:"commentable", action:"add")

if (Environment.current != Environment.PRODUCTION) {
"/websites"(controller: "webSite", action: "list")
"/websites/add"(controller: "webSite", action: "create")
"/websites/save"(controller: "webSite", action: "save")
"/websites/search"(controller:"webSite", action:"search")
"/websites/tags"(controller:"webSite", action:"browseTags")
"/websites/feed"(controller:"webSite", action:"feed")
"/websites/search"(controller:"webSite", action:"search")
"/websites/tags"(controller:"webSite", action:"browseTags")
"/websites/feed"(controller:"webSite", action:"feed")
"/website/edit/$id"(controller: "webSite", action: "edit")
"/website/update/$id"(controller: "webSite", action: "update")

Expand All @@ -112,9 +112,9 @@ class UrlMappings {
"/tutorials"(controller: "tutorial", action: "list")
"/tutorials/add"(controller: "tutorial", action: "create")
"/tutorials/save"(controller: "tutorial", action: "save")
"/tutorials/search"(controller:"tutorial", action:"search")
"/tutorials/tags"(controller:"tutorial", action:"browseTags")
"/tutorials/feed"(controller:"tutorial", action:"feed")
"/tutorials/search"(controller:"tutorial", action:"search")
"/tutorials/tags"(controller:"tutorial", action:"browseTags")
"/tutorials/feed"(controller:"tutorial", action:"feed")
"/tutorial/edit/$id"(controller: "tutorial", action: "edit")
"/tutorial/update/$id"(controller: "tutorial", action: "update")

Expand Down

0 comments on commit e465166

Please sign in to comment.