summaryrefslogtreecommitdiff
path: root/django/archives/settings.py
diff options
context:
space:
mode:
authorMagnus Hagander2012-06-21 08:34:56 +0000
committerMagnus Hagander2012-06-21 08:34:56 +0000
commit6ecaddb830587e2d4d2d1d14a1a5e89c412c6e69 (patch)
treeaa5a51726a28c6562e28fcf07285d1cf5d66dcec /django/archives/settings.py
parentec1e2e8f917d06c734a18d67dee6c1c218e632ce (diff)
Remove more unneeded stuff
Diffstat (limited to 'django/archives/settings.py')
-rw-r--r--django/archives/settings.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/django/archives/settings.py b/django/archives/settings.py
index 7f8754d..06f5de7 100644
--- a/django/archives/settings.py
+++ b/django/archives/settings.py
@@ -13,9 +13,9 @@ DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'archives', # Or path to database file if using sqlite3.
- 'USER': 'mha', # Not used with sqlite3.
+ 'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
- 'HOST': '/tmp', # Set to empty string for localhost. Not used with sqlite3.
+ 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
@@ -27,7 +27,7 @@ DATABASES = {
# timezone as the operating system.
# If running in a Windows environment this must be set to the same as your
# system time zone.
-TIME_ZONE = 'Europe/Stockholm'
+TIME_ZONE = 'UTC'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
@@ -95,7 +95,7 @@ TEMPLATE_LOADERS = (
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
# 'django.contrib.sessions.middleware.SessionMiddleware',
- 'django.middleware.csrf.CsrfViewMiddleware',
+# 'django.middleware.csrf.CsrfViewMiddleware',
# 'django.contrib.auth.middleware.AuthenticationMiddleware',
# 'django.contrib.messages.middleware.MessageMiddleware',
)