--- a/settings.py Thu Sep 24 15:20:30 2009 +0530
+++ b/settings.py Fri Sep 25 00:27:42 2009 +0530
@@ -2,18 +2,18 @@
import os
+
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
('Shantanu Choudary', 'choudhary.shantanu@gmail.com'),
- # ('Your Name', 'your_email@domain.com'),
)
MANAGERS = ADMINS
DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
-DATABASE_NAME = 'participants' # Or path to database file if using sqlite3.
+DATABASE_NAME = '../conference' # Or path to database file if using sqlite3.
DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = '' # Not used with sqlite3.
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
@@ -36,9 +36,8 @@
# to load the internationalization machinery.
USE_I18N = True
-AUTH_PROFILE_MODULE = 'content.model.Participant'
+ROOT_PATH = os.path.dirname(__file__)
-ROOT_PATH = os.path.dirname(__file__)
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = os.path.join(ROOT_PATH, 'site-content')
@@ -54,7 +53,7 @@
ADMIN_MEDIA_PREFIX = '/media/'
# Make this unique, and don't share it with anybody.
-SECRET_KEY = '&l34#62pxee2fb+u&3mz)*z%1p8kujqvxw$7b^!-8&(ias$rzg'
+SECRET_KEY = '(ob412sq1npyyuvfi*b@eby$ip=1rfl*l*b%8f4&l@)3iu$&4#'
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
@@ -69,10 +68,10 @@
'django.contrib.auth.middleware.AuthenticationMiddleware',
)
-ROOT_URLCONF = 'scipy-in.urls'
+ROOT_URLCONF = 'scipy.urls'
TEMPLATE_DIRS = (
- os.path.join(ROOT_PATH, 'template'),
+ os.path.join(ROOT_PATH, 'template'),
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
@@ -83,5 +82,5 @@
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
- 'scipy-in.content',
+ 'scipy.conference',
)