summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-12-13 14:43:13 -0600
committerDan McGee <dan@archlinux.org>2010-12-13 14:44:07 -0600
commit080278adea3be10c2b6b10e41f92e722d0c2c8cf (patch)
tree81c5e70a91990a49ce3802c6fe5f600a443ff4e9 /urls.py
parentd22c970f09fccdaefaa44ef71170a077c80bdc59 (diff)
downloadarchweb-080278adea3be10c2b6b10e41f92e722d0c2c8cf.tar.gz
archweb-080278adea3be10c2b6b10e41f92e722d0c2c8cf.zip
Move news urls into own file
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py16
1 files changed, 4 insertions, 12 deletions
diff --git a/urls.py b/urls.py
index 77bf8c1b..1e6f3204 100644
--- a/urls.py
+++ b/urls.py
@@ -69,17 +69,6 @@ urlpatterns += patterns('todolists.views',
(r'^todolists/$', 'public_list'),
)
-urlpatterns += patterns('news.views',
- (r'^news/add/$', 'add'),
- (r'^news/preview/$', 'preview'),
- # old news URLs, permanent redirect view so we don't break all links
- (r'^news/(?P<object_id>\d+)/$', 'view_redirect'),
- (r'^news/(?P<slug>[-\w]+)/$', 'view'),
- (r'^news/(?P<slug>[-\w]+)/edit/$', 'edit'),
- (r'^news/(?P<slug>[-\w]+)/delete/$', 'delete'),
- (r'^news/$', 'news_list', {}, 'news-list'),
-)
-
urlpatterns += patterns('mirrors.views',
(r'^mirrors/$', 'mirrors', {}, 'mirrors-list'),
(r'^mirrors/(?P<name>[\.\-\w]+)/$', 'mirror_details'),
@@ -129,7 +118,7 @@ urlpatterns += patterns('django.contrib.auth.views',
'template_name': 'registration/logout.html'}),
)
-# (mostly) Static Pages
+# Public pages
urlpatterns += patterns('public.views',
(r'^$', 'index', {}, 'index'),
(r'^about/$', direct_to_template, {'template': 'public/about.html'}, 'page-about'),
@@ -142,9 +131,12 @@ urlpatterns += patterns('public.views',
(r'^download/$', 'download', {}, 'page-download'),
)
+# Includes and other remaining stuff
urlpatterns += patterns('',
(r'^admin/', include(admin.site.urls)),
(r'^jsi18n/$', 'django.views.i18n.null_javascript_catalog'),
+
+ (r'^news/', include('news.urls')),
)
if settings.DEBUG == True: