Remove inactive Django admin code

These can only cause trouble.

(imported from commit 1def3234675c12461e9fc8b71c6b9e1b107edd1d)
This commit is contained in:
Keegan McAllister
2012-10-29 13:53:12 -04:00
parent ba08d06cb8
commit 5ed13e9079
3 changed files with 0 additions and 27 deletions

View File

@@ -2,10 +2,6 @@ from django.conf import settings
from django.conf.urls import patterns, url
import os.path
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
url(r'^$', 'zephyr.views.home', name='home'),
# We have two entries for accounts/login to allow reverses on the Django
@@ -49,12 +45,6 @@ urlpatterns = patterns('',
# Used internally for communication between Django and Tornado processes
url(r'^notify_new_message$', 'zephyr.views.notify_new_message', name='notify_new_message'),
url(r'^notify_pointer_update$', 'zephyr.views.notify_pointer_update', name='notify_pointer_update'),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
# url(r'^admin/', include(admin.site.urls)),
)
if settings.ALLOW_REGISTER: