preparing for django 1.8

This commit is contained in:
Philip Sargent 2020-06-16 11:14:10 +01:00
parent 453af2851b
commit 4c44a504ed
3 changed files with 11 additions and 11 deletions

View File

@ -45,4 +45,7 @@ def _resolves(url):
resolve(url)
return True
except http.Http404:
return False
return False
except:
print(url)
raise

View File

@ -14,7 +14,8 @@ try:
except ImportError: # django >= 1.7
SiteProfileNotAvailable = type('SiteProfileNotAvailable', (Exception,), {})
from django.db.models import get_model
from django.db import models
#from django.db.models import get_model
def get_profile_model():
@ -28,7 +29,7 @@ def get_profile_model():
if (not hasattr(settings, 'AUTH_PROFILE_MODULE')) or \
(not settings.AUTH_PROFILE_MODULE):
raise SiteProfileNotAvailable
profile_mod = get_model(*settings.AUTH_PROFILE_MODULE.split('.'))
profile_mod = models.get_model(*settings.AUTH_PROFILE_MODULE.split('.'))
if profile_mod is None:
raise SiteProfileNotAvailable
return profile_mod

View File

@ -31,9 +31,8 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# Django settings for troggle project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ALLOWED_HOSTS = ['expo.survex.com']
ALLOWED_HOSTS = ['expo.survex.com','localhost', '127.0.0.1']
ADMINS = (
# ('Your Name', 'your_email@domain.com'),
@ -96,12 +95,14 @@ SMART_APPEND_SLASH = True
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'a#vaeozn0)uz_9t_%v5n#tj)m+%ace6b_0(^fj!355qki*v)j2'
TEMPLATES = [{}]
TEMPLATE_DEBUG = DEBUG
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
authmodule = 'django.contrib.auth.context_processors.auth'
TEMPLATE_CONTEXT_PROCESSORS = ( authmodule, "core.context.troggle_context", )
@ -112,12 +113,8 @@ INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
# 'django.contrib.sites',
# 'django.contrib.redirects',
'django.contrib.messages',
'django.contrib.staticfiles',
# 'django_extensions',
# 'tinymce',
# 'registration',
'troggle.profiles',
'troggle.core',
@ -128,7 +125,6 @@ MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
# 'django.contrib.redirects.middleware.RedirectFallbackMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',