saved searches is going awesome. Partial work on adding them as galleries
[zzz-floof.git] / floof / config / routing.py
index 5bd87d9..969376a 100644 (file)
@@ -42,5 +42,12 @@ def make_map():
     map.connect('/tag/{id}/delete', controller='tag', action='delete')
 
     map.connect('/search', controller='search', action='index')
+    map.connect('/search/list', controller='search', action='list')
+
+
+    # default routing is back so we can test stuff.
+    # please don't take it away until we have some more core features in.
+    map.connect('/{controller}/{action}')
+    map.connect('/{controller}/{action}/{id}')
 
     return map