From: Eevee Date: Sun, 25 Oct 2009 00:16:22 +0000 (-0700) Subject: Merge branch 'master' of git@veekun.com:floof X-Git-Url: http://git.veekun.com/zzz-floof.git/commitdiff_plain/482924ec2b85600ccb905a3ee53b1ca6df419ab6?hp=676ce5d1e2cb3fde6d3033d512fe15045c3c5812 Merge branch 'master' of git@veekun.com:floof --- diff --git a/floof/config/routing.py b/floof/config/routing.py index 603afd0..645d138 100644 --- a/floof/config/routing.py +++ b/floof/config/routing.py @@ -49,10 +49,10 @@ def make_map(): # Comments with map.submapper(controller='comments') as sub: sub.connect('/*owner_url/comments', action='thread') - sub.connect('/*owner_url/comments/{id}', action='thread') sub.connect('/*owner_url/comments/reply', action='reply') - sub.connect('/*owner_url/comments/{id}/reply', action='reply') sub.connect('/*owner_url/comments/reply_done', action='reply_done', **require_POST) + sub.connect('/*owner_url/comments/{id}', action='thread') + sub.connect('/*owner_url/comments/{id}/reply', action='reply') sub.connect('/*owner_url/comments/{id}/reply_done', action='reply_done', **require_POST) with map.submapper(controller="art") as sub: