summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-04-17 21:52:14 -0400
committerLuke Shumaker <lukeshu@parabola.nu>2019-03-10 01:08:39 -0500
commit77230f277a3bb66762da74d03e7be3a06e858970 (patch)
tree209bc7a512835415b6f7d91dcb41bc973fbb1a23
parent20d35fadc4c2585837bc88bc1fcaa8423d6835e7 (diff)
I can't intercept /people/* urls
-rw-r--r--urls.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/urls.py b/urls.py
index 9acc1899..2036c577 100644
--- a/urls.py
+++ b/urls.py
@@ -99,18 +99,19 @@ urlpatterns += patterns('django.contrib.auth.views',
legacy_urls = (
('^about.php', '/about/'),
('^changelog.php', '/packages/?sort=-last_update'),
- ('^devs.php', '/people/developers/'),
+ ('^devs.php', '/people/hackers/'),
('^donations.php', '/donate/'),
('^download.php', '/download/'),
('^index.php', '/'),
('^logos.php', '/art/'),
('^news.php', '/news/'),
('^packages.php', '/packages/'),
- ('^people.php', '/people/developers/'),
+ ('^people.php', '/people/hackers/'),
('^todolists/$', '/todo/'),
- ('^developers/$', '/people/hackers/'),
('^hackers/$', '/people/hackers/'),
- ('^fellows/$', '/people/developer-fellows/'),
+ ('^developers/$', '/people/hackers/'),
+ ('^fellows/$', '/people/hacker-fellows/'),
+ ('^trustedusers/$', '/people/hackers/'),
('^docs/en/guide/install/arch-install-guide.html',
'https://wiki.parabola.nu/Installation_Guide'),