summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorPierre-Yves Chibon <pingou@pingoured.fr>2012-03-31 18:28:59 +0200
committerPierre-Yves Chibon <pingou@pingoured.fr>2012-03-31 18:28:59 +0200
commit812cd8bc9a7457f9369cbf05083648da6638f0fe (patch)
treefbf34f86b6931d468d2aec56d1b0fe0c472d2417 /urls.py
parent0bfe208990450708785719430af40adca8b5df3a (diff)
downloadhyperkitty-812cd8bc9a7457f9369cbf05083648da6638f0fe.tar.gz
hyperkitty-812cd8bc9a7457f9369cbf05083648da6638f0fe.tar.xz
hyperkitty-812cd8bc9a7457f9369cbf05083648da6638f0fe.zip
Implement the new identifiers (I've removed all the dashes in the identifiers)
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 65ac15a..845474d 100644
--- a/urls.py
+++ b/urls.py
@@ -21,7 +21,7 @@ urlpatterns = patterns('',
url(r'^archives/(?P<mlist_fqdn>.*@.*)/$', 'views.pages.archives'),
url(r'^archives/(?P<mlist_fqdn>.*@.*)$', 'views.pages.archives'),
# The thread view
- url(r'^thread/(?P<mlist_fqdn>.*@.*)/(?P<threadid>\d+)$', 'views.pages.thread'),
+ url(r'^thread/(?P<mlist_fqdn>.*@.*)/(?P<threadid>.+)$', 'views.pages.thread'),
# This will be the new recent page
url(r'^list$', 'views.pages.index'),
url(r'^list/$', 'views.pages.index'),