diff --git a/confirmation/admin.py b/confirmation/admin.py deleted file mode 100644 index 2b5f6ba5b6..0000000000 --- a/confirmation/admin.py +++ /dev/null @@ -1,13 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright: (c) 2008, Jarek Zgoda - -__revision__ = '$Id: admin.py 3 2008-11-18 07:33:52Z jarek.zgoda $' - - -from django.contrib import admin - -from confirmation.models import Confirmation - - -admin.site.register(Confirmation) \ No newline at end of file diff --git a/humbug/settings.py b/humbug/settings.py index 02ede1d318..0627343165 100644 --- a/humbug/settings.py +++ b/humbug/settings.py @@ -143,10 +143,6 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.messages', 'jstemplate', - # Uncomment the next line to enable the admin: - # 'django.contrib.admin', - # Uncomment the next line to enable admin documentation: - # 'django.contrib.admindocs', 'confirmation', 'zephyr', ) diff --git a/humbug/urls.py b/humbug/urls.py index fff0673974..55b07d39f6 100644 --- a/humbug/urls.py +++ b/humbug/urls.py @@ -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: