Fixed some deprecated settings changed for django1.4.
This commit is contained in:
parent
06566c3e8f
commit
897be724f5
1 changed files with 4 additions and 5 deletions
|
|
@ -166,8 +166,7 @@ AT_INITIAL_SETUP_HOOK_MODULE = ""
|
||||||
# Module holding at_server_start(), at_server_reload() and
|
# Module holding at_server_start(), at_server_reload() and
|
||||||
# at_server_stop() methods. These methods will be called every time
|
# at_server_stop() methods. These methods will be called every time
|
||||||
# the server starts, reloads and resets/stops.
|
# the server starts, reloads and resets/stops.
|
||||||
AT_SERVER_STARTSTOP_MODULE = ""
|
AT_SERVER_STARTSTOP_MODULE = ""# Module holding server-side functions for out-of-band protocols to call.
|
||||||
# Module holding server-side functions for out-of-band protocols to call.
|
|
||||||
OOB_FUNC_MODULE = ""
|
OOB_FUNC_MODULE = ""
|
||||||
# Module holding MSSP meta data
|
# Module holding MSSP meta data
|
||||||
MSSP_META_MODULE = ""
|
MSSP_META_MODULE = ""
|
||||||
|
|
@ -395,8 +394,8 @@ TEMPLATE_DIRS = (
|
||||||
os.path.join(SRC_DIR, "web", "templates"),)
|
os.path.join(SRC_DIR, "web", "templates"),)
|
||||||
# List of callables that know how to import templates from various sources.
|
# List of callables that know how to import templates from various sources.
|
||||||
TEMPLATE_LOADERS = (
|
TEMPLATE_LOADERS = (
|
||||||
'django.template.loaders.filesystem.load_template_source',
|
'django.template.loaders.filesystem.Loader',
|
||||||
'django.template.loaders.app_directories.load_template_source',)
|
'django.template.loaders.app_directories.Loader',)
|
||||||
# MiddleWare are semi-transparent extensions to Django's functionality.
|
# MiddleWare are semi-transparent extensions to Django's functionality.
|
||||||
# see http://www.djangoproject.com/documentation/middleware/ for a more detailed
|
# see http://www.djangoproject.com/documentation/middleware/ for a more detailed
|
||||||
# explanation.
|
# explanation.
|
||||||
|
|
@ -412,7 +411,7 @@ MIDDLEWARE_CLASSES = (
|
||||||
TEMPLATE_CONTEXT_PROCESSORS = (
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
||||||
'django.core.context_processors.i18n',
|
'django.core.context_processors.i18n',
|
||||||
'django.core.context_processors.request',
|
'django.core.context_processors.request',
|
||||||
'django.core.context_processors.auth',
|
'django.contrib.auth.context_processors.auth',
|
||||||
'django.core.context_processors.media',
|
'django.core.context_processors.media',
|
||||||
'django.core.context_processors.debug',
|
'django.core.context_processors.debug',
|
||||||
'src.web.utils.general_context.general_context',)
|
'src.web.utils.general_context.general_context',)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue