summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-12-29 18:28:49 -0800
committereliott <eliott@cactuswax.net>2007-12-29 18:28:49 -0800
commit1f303690a502a1f5175ff6b93e7f667fe1781fe4 (patch)
tree3c62534c67b21bfaa8a7b9c756b7211dd7a8208c /urls.py
parentcdf2c11aebbe23627e18ac5243d972ba8cdb9931 (diff)
downloadarchweb-1f303690a502a1f5175ff6b93e7f667fe1781fe4.tar.gz
archweb-1f303690a502a1f5175ff6b93e7f667fe1781fe4.zip
Further purse of public app
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/urls.py b/urls.py
index bc4bbf9e..83f603c2 100644
--- a/urls.py
+++ b/urls.py
@@ -49,21 +49,21 @@ urlpatterns = patterns('',
(r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}),
# (mostly) Static Pages
- (r'^$', 'archweb_dev.public.views.index'),
- (r'^about/$', 'archweb_dev.public.views.about'),
- (r'^art/$', 'archweb_dev.public.views.art'),
- (r'^cvs/$', 'archweb_dev.public.views.cvs'),
- (r'^developers/$', 'archweb_dev.public.views.developers'),
- (r'^donate/$', 'archweb_dev.public.views.donate'),
- (r'^download/$', 'archweb_dev.public.views.download'),
- (r'^irc/$', 'archweb_dev.public.views.irc'),
- (r'^moreforums/$', 'archweb_dev.public.views.moreforums'),
- (r'^press/$', 'archweb_dev.public.views.press'),
- (r'^projects/$', 'archweb_dev.public.views.projects'),
- (r'^robots.txt$', 'archweb_dev.public.views.robots'),
+ (r'^$', 'archweb_dev.devel.views.siteindex'),
+ (r'^about/$', 'archweb_dev.devel.views.about'),
+ (r'^art/$', 'archweb_dev.devel.views.art'),
+ (r'^cvs/$', 'archweb_dev.devel.views.cvs'),
+ (r'^developers/$', 'archweb_dev.devel.views.developers'),
+ (r'^donate/$', 'archweb_dev.devel.views.donate'),
+ (r'^download/$', 'archweb_dev.devel.views.download'),
+ (r'^irc/$', 'archweb_dev.devel.views.irc'),
+ (r'^moreforums/$', 'archweb_dev.devel.views.moreforums'),
+ (r'^press/$', 'archweb_dev.devel.views.press'),
+ (r'^projects/$', 'archweb_dev.devel.views.projects'),
+ (r'^robots.txt$', 'archweb_dev.devel.views.robots'),
# Authentication / Admin
- (r'^denied/$', 'archweb_dev.public.views.denied'),
+ (r'^denied/$', 'archweb_dev.devel.views.denied'),
(r'^login/$', 'django.contrib.auth.views.login', {'template_name': 'registration/login.html'}),
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'registration/login.html'}),
(r'^logout/$', 'django.contrib.auth.views.logout', {'template_name': 'registration/logout.html'}),