summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-02-07 14:52:18 +0100
committerAurélien Bompard <aurelien@bompard.org>2013-02-07 15:00:29 +0100
commitaae9a5a1b6c75095817c0914ef7b92e63903fc2e (patch)
tree6173bf6f1f64f1296dabf792e63679e9e955b53f /hyperkitty/urls.py
parent76e48cc49fc7c73ba9642129059c2e51234c3fe6 (diff)
downloadhyperkitty-aae9a5a1b6c75095817c0914ef7b92e63903fc2e.tar.gz
hyperkitty-aae9a5a1b6c75095817c0914ef7b92e63903fc2e.tar.xz
hyperkitty-aae9a5a1b6c75095817c0914ef7b92e63903fc2e.zip
Fix the tags search view (#35)
And factor some views/templates while I'm at it. And remove unused/obsolete stuff in the same move.
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index f86b937..e9132cc 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -75,14 +75,10 @@ urlpatterns = patterns('hyperkitty.views',
# Search Tag
- url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/tag/(?P<tag>.*)/(?P<page>\d+)/$',
- 'list.search_tag'),
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/tag/(?P<tag>.*)/$',
'list.search_tag', name='search_tag'),
# Search
- url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/search/(?P<target>.*)/(?P<keyword>.*)/(?P<page>\d+)/$',
- 'list.search_keyword'),
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/search/(?P<target>.*)/(?P<keyword>.*)/$',
'list.search_keyword', name="search_keyword"),
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/search/$',