diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-31 18:28:59 +0200 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-31 18:28:59 +0200 |
commit | 812cd8bc9a7457f9369cbf05083648da6638f0fe (patch) | |
tree | fbf34f86b6931d468d2aec56d1b0fe0c472d2417 /urls.py | |
parent | 0bfe208990450708785719430af40adca8b5df3a (diff) | |
download | hyperkitty-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'), |