summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2010-12-29 21:38:35 +0000
committerParabola <dev@list.parabolagnulinux.org>2010-12-29 21:38:35 +0000
commitedb96c300a560f35ed8f8d6dd87d3159e1edbbe2 (patch)
treeaaa034172ed00bd4f627eece08fd737e6cfbc929 /settings.py
parentf66414291ae9c19bea9db6b1c86390dc694afbb8 (diff)
Revert "Various changes, plus licenses are now pointing to the real licenses. (gtklocker)"
This reverts commit d8fe78f471f2b7821a99f7c2697e0e2ab0a374c1. Conflicts: media/devs/gtklocker.png
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py13
1 files changed, 3 insertions, 10 deletions
diff --git a/settings.py b/settings.py
index 70cfeae2..f98f709c 100644
--- a/settings.py
+++ b/settings.py
@@ -2,21 +2,19 @@ import os
# Django settings for archweb project.
## Set the debug values
-DEBUG = True
+DEBUG = False
TEMPLATE_DEBUG = DEBUG
## Notification admins
-# Put yourself here
ADMINS = (
- ('Nicolas Reynolds', 'fauno@kiwwwi.com.ar'),
+ ('Dan McGee', 'dan@archlinux.org'),
)
# Set managers to admins
MANAGERS = ADMINS
# Package out-of-date emails for orphans
-# TODO configure email client
-NOTIFICATIONS = ['packages@list.parabolagnulinux.org']
+NOTIFICATIONS = ['arch-notifications@archlinux.org']
# Full path to the data directory
DEPLOY_PATH = os.path.dirname(os.path.realpath(__file__))
@@ -35,7 +33,6 @@ SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
-# TODO work i18n
USE_I18N = False
# If you set this to False, Django will not format dates, numbers and
@@ -91,7 +88,6 @@ TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates".
# Always use forward slashes, even on Windows.
'%s/templates' % DEPLOY_PATH,
- '/usr/lib/python2.7/site-packages/django_git/templates/django_git/'
)
TEMPLATE_LOADERS = (
@@ -125,11 +121,8 @@ INSTALLED_APPS = (
'devel',
'public',
'south', # database migration support
- # 'django_git'
)
-REPOS_ROOT='/srv/git/projects'
-
## Import local settings
from local_settings import *