From a6ba3df7e2cc2c56950c88d81748dbd1ffe436c7 Mon Sep 17 00:00:00 2001 From: Nick Retallack Date: Fri, 23 Oct 2009 21:56:58 -0700 Subject: [PATCH] rearranged comment routes, more specific first --- floof/config/routing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.7.4