X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/bc1cccee5faefbcfe6e28ce8f49694cca47b85cb..6fb3ad2a578aa2e0eced735187a02a79a8907668:/floof/config/routing.py?ds=sidebyside diff --git a/floof/config/routing.py b/floof/config/routing.py index 5bd87d9..969376a 100644 --- a/floof/config/routing.py +++ b/floof/config/routing.py @@ -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