diff options
author | Dan McGee <dan@archlinux.org> | 2013-03-11 18:23:59 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-03-11 18:24:56 -0500 |
commit | 00b9084303ccb27f7937a9392d2a582d25a04288 (patch) | |
tree | cd568f430e76c6b78ac8daee225ceedb32ca7962 /urls.py | |
parent | f579f88e174abfd0514788879fd190035b6bbf87 (diff) |
Remove public todolists view
Replace this with a redirect to the developer todolist index page.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,6 @@ urlpatterns += patterns('', {}, 'opensearch-packages'), (r'^opensearch/packages/suggest$', 'packages.views.opensearch_suggest', {}, 'opensearch-packages-suggest'), - (r'^todolists/$','todolists.views.public_list'), ) # Retro home page views @@ -109,6 +108,7 @@ legacy_urls = ( ('^news.php', '/news/'), ('^packages.php', '/packages/'), ('^people.php', '/developers/'), + ('^todolists/$', '/todo/'), ('^docs/en/guide/install/arch-install-guide.html', 'https://wiki.archlinux.org/index.php/Installation_Guide'), |