-
-def check_local_setting(name, value):
- local_vars = locals()
- if name in local_vars and local_vars[name] == value:
- return True
- else:
- return False
-
-SITE_SRC_ROOT = os.path.dirname(__file__)
-LOG_FILENAME = 'django.osqa.log'
-
-#for logging
-import logging
-logging.basicConfig(
- filename=os.path.join(SITE_SRC_ROOT, 'log', LOG_FILENAME),
- level=logging.ERROR,
- format='%(pathname)s TIME: %(asctime)s MSG: %(filename)s:%(funcName)s:%(lineno)d %(message)s',
-)
-
-#ADMINS and MANAGERS
-ADMINS = (('Forum Admin', 'forum@example.com'),)
-MANAGERS = ADMINS
-
-DEBUG = True
-DEBUG_TOOLBAR_CONFIG = {
- 'INTERCEPT_REDIRECTS': True
-}
-TEMPLATE_DEBUG = DEBUG
-INTERNAL_IPS = ('127.0.0.1',)
-
-if True:
-
- DATABASE_NAME = 'meta_rep' # Or path to database file if using sqlite3.
- DATABASE_USER = 'postgres' # Not used with sqlite3.
- DATABASE_PASSWORD = 'postgres' # Not used with sqlite3.
- DATABASE_ENGINE = 'postgresql_psycopg2' #mysql, etc
- DATABASE_HOST = 'localhost'
- DATABASE_PORT = ''
+if DEBUG:
+ TEMPLATE_LOADERS = [
+ 'django.template.loaders.filesystem.load_template_source',
+ 'django.template.loaders.app_directories.load_template_source',
+ 'forum.modules.template_loader.module_templates_loader',
+ 'forum.skins.load_template_source',
+ ]