2009-05-15 03:38:11 +01:00
|
|
|
from localsettings import * #inital localsettings call so that urljoins work
|
2009-05-13 05:53:37 +01:00
|
|
|
import os
|
2009-05-13 06:11:40 +01:00
|
|
|
import urlparse
|
2011-05-02 02:51:14 +01:00
|
|
|
import django
|
2009-05-13 05:13:38 +01:00
|
|
|
|
2018-04-15 16:28:13 +01:00
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
# Django settings for troggle project.
|
2009-05-13 05:13:38 +01:00
|
|
|
DEBUG = True
|
|
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
|
2019-06-26 15:23:20 +01:00
|
|
|
ALLOWED_HOSTS = [u'expo.survex.com']
|
2018-04-15 16:28:13 +01:00
|
|
|
|
2009-05-13 05:13:38 +01:00
|
|
|
ADMINS = (
|
|
|
|
# ('Your Name', 'your_email@domain.com'),
|
|
|
|
)
|
|
|
|
|
|
|
|
MANAGERS = ADMINS
|
|
|
|
|
|
|
|
# Local time zone for this installation. Choices can be found here:
|
|
|
|
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
|
|
|
|
# although not all choices may be available on all operating systems.
|
|
|
|
# If running in a Windows environment this must be set to the same as your
|
|
|
|
# system time zone.
|
2018-04-11 22:02:57 +01:00
|
|
|
USE_TZ = True
|
2009-05-13 05:13:38 +01:00
|
|
|
TIME_ZONE = 'Europe/London'
|
|
|
|
|
|
|
|
# Language code for this installation. All choices can be found here:
|
|
|
|
# http://www.i18nguy.com/unicode/language-identifiers.html
|
|
|
|
LANGUAGE_CODE = 'en-uk'
|
|
|
|
|
|
|
|
SITE_ID = 1
|
|
|
|
|
|
|
|
# If you set this to False, Django will make some optimizations so as not
|
|
|
|
# to load the internationalization machinery.
|
|
|
|
USE_I18N = True
|
2018-04-15 16:28:13 +01:00
|
|
|
USE_L10N = True
|
2009-05-13 05:13:38 +01:00
|
|
|
|
2015-06-21 15:08:09 +01:00
|
|
|
FIX_PERMISSIONS = []
|
|
|
|
NOTABLECAVESHREFS = [ "161", "204", "258", "76", "107", "264" ]
|
2009-05-13 05:13:38 +01:00
|
|
|
|
|
|
|
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
|
|
|
|
# trailing slash.
|
|
|
|
# Examples: "http://foo.com/media/", "/media/".
|
2009-05-13 05:33:57 +01:00
|
|
|
ADMIN_MEDIA_PREFIX = '/troggle/media-admin/'
|
2009-05-13 05:58:18 +01:00
|
|
|
PHOTOS_ROOT = os.path.join(EXPOWEB, 'photos')
|
2019-04-01 23:03:45 +01:00
|
|
|
CAVEDESCRIPTIONS = os.path.join(EXPOWEB, "cave_data")
|
|
|
|
ENTRANCEDESCRIPTIONS = os.path.join(EXPOWEB, "entrance_data")
|
2009-05-14 06:32:58 +01:00
|
|
|
|
2009-05-15 03:29:19 +01:00
|
|
|
MEDIA_URL = urlparse.urljoin(URL_ROOT , '/site_media/')
|
|
|
|
SURVEYS_URL = urlparse.urljoin(URL_ROOT , '/survey_scans/')
|
|
|
|
PHOTOS_URL = urlparse.urljoin(URL_ROOT , '/photos/')
|
|
|
|
SVX_URL = urlparse.urljoin(URL_ROOT , '/survex/')
|
2009-05-13 05:13:38 +01:00
|
|
|
|
2019-06-26 03:32:18 +01:00
|
|
|
# top-level survex file basename (without .svx)
|
|
|
|
SURVEX_TOPNAME = "1623"
|
|
|
|
|
2019-03-06 23:20:34 +00:00
|
|
|
DEFAULT_LOGBOOK_PARSER = "Parseloghtmltxt"
|
|
|
|
DEFAULT_LOGBOOK_FILE = "logbook.html"
|
|
|
|
|
|
|
|
LOGBOOK_PARSER_SETTINGS = {
|
|
|
|
"2018": ("2018/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2017": ("2017/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2016": ("2016/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2015": ("2015/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2014": ("2014/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2013": ("2013/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2012": ("2012/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2011": ("2011/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2010": ("2010/logbook.html", "Parselogwikitxt"),
|
|
|
|
"2009": ("2009/2009logbook.txt", "Parselogwikitxt"),
|
|
|
|
"2008": ("2008/2008logbook.txt", "Parselogwikitxt"),
|
|
|
|
"2007": ("2007/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2006": ("2006/logbook/logbook_06.txt", "Parselogwikitxt"),
|
|
|
|
"2005": ("2005/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2004": ("2004/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2003": ("2003/logbook.html", "Parseloghtml03"),
|
|
|
|
"2002": ("2002/logbook.html", "Parseloghtmltxt"),
|
|
|
|
"2001": ("2001/log.htm", "Parseloghtml01"),
|
|
|
|
"2000": ("2000/log.htm", "Parseloghtml01"),
|
|
|
|
"1999": ("1999/log.htm", "Parseloghtml01"),
|
|
|
|
"1998": ("1998/log.htm", "Parseloghtml01"),
|
|
|
|
"1997": ("1997/log.htm", "Parseloghtml01"),
|
|
|
|
"1996": ("1996/log.htm", "Parseloghtml01"),
|
|
|
|
"1995": ("1995/log.htm", "Parseloghtml01"),
|
|
|
|
"1994": ("1994/log.htm", "Parseloghtml01"),
|
|
|
|
"1993": ("1993/log.htm", "Parseloghtml01"),
|
|
|
|
"1992": ("1992/log.htm", "Parseloghtml01"),
|
|
|
|
"1991": ("1991/log.htm", "Parseloghtml01"),
|
|
|
|
}
|
|
|
|
|
2009-05-13 05:13:38 +01:00
|
|
|
APPEND_SLASH = False
|
|
|
|
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'
|
|
|
|
|
|
|
|
# List of callables that know how to import templates from various sources.
|
|
|
|
TEMPLATE_LOADERS = (
|
2013-08-01 16:00:01 +01:00
|
|
|
'django.template.loaders.filesystem.Loader',
|
|
|
|
'django.template.loaders.app_directories.Loader',
|
2009-05-13 05:13:38 +01:00
|
|
|
# 'django.template.loaders.eggs.load_template_source',
|
|
|
|
)
|
|
|
|
|
2013-07-02 21:05:48 +01:00
|
|
|
if django.VERSION[0] == 1 and django.VERSION[1] < 4:
|
|
|
|
authmodule = 'django.core.context_processors.auth'
|
|
|
|
else:
|
|
|
|
authmodule = 'django.contrib.auth.context_processors.auth'
|
|
|
|
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = ( authmodule, "core.context.troggle_context", )
|
2009-05-13 05:48:10 +01:00
|
|
|
|
|
|
|
LOGIN_REDIRECT_URL = '/'
|
|
|
|
|
2009-05-13 05:13:38 +01:00
|
|
|
INSTALLED_APPS = (
|
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.sites',
|
|
|
|
'django.contrib.redirects',
|
2018-04-14 21:14:19 +01:00
|
|
|
'django.contrib.messages',
|
2018-04-15 16:28:13 +01:00
|
|
|
'django.contrib.staticfiles',
|
2009-05-13 06:23:57 +01:00
|
|
|
#'troggle.photologue',
|
2009-05-13 05:56:16 +01:00
|
|
|
#'troggle.reversion',
|
2009-05-13 06:26:17 +01:00
|
|
|
#'django_evolution',
|
2018-04-15 16:28:13 +01:00
|
|
|
'tinymce',
|
2018-04-10 01:34:06 +01:00
|
|
|
'registration',
|
2009-05-13 05:48:10 +01:00
|
|
|
'troggle.profiles',
|
2009-07-02 20:43:18 +01:00
|
|
|
'troggle.core',
|
2011-07-11 00:15:59 +01:00
|
|
|
'troggle.flatpages',
|
2019-06-26 20:57:24 +01:00
|
|
|
'troggle.imagekit',
|
2009-05-15 03:38:11 +01:00
|
|
|
)
|
|
|
|
|
2018-04-15 16:28:13 +01:00
|
|
|
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',
|
|
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
|
|
'troggle.middleware.SmartAppendSlashMiddleware'
|
|
|
|
)
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'troggle.urls'
|
|
|
|
|
|
|
|
WSGI_APPLICATION = 'troggle.wsgi.application'
|
|
|
|
|
|
|
|
ACCOUNT_ACTIVATION_DAYS=3
|
|
|
|
|
|
|
|
AUTH_PROFILE_MODULE = 'core.person'
|
|
|
|
|
2009-07-11 01:36:00 +01:00
|
|
|
QM_PATTERN="\[\[\s*[Qq][Mm]:([ABC]?)(\d{4})-(\d*)-(\d*)\]\]"
|
2009-07-03 21:59:31 +01:00
|
|
|
|
2011-05-01 19:17:57 +01:00
|
|
|
TINYMCE_JS_URL = 'http://debug.example.org/tiny_mce/tiny_mce_src.js'
|
2018-04-15 16:28:13 +01:00
|
|
|
|
|
|
|
#TINYMCE_JS_URL = os.path.join(MEDIA_URL, "tinybibble_mce.js")
|
|
|
|
|
2011-05-01 19:17:57 +01:00
|
|
|
TINYMCE_DEFAULT_CONFIG = {
|
|
|
|
'plugins': "table,spellchecker,paste,searchreplace",
|
|
|
|
'theme': "advanced",
|
|
|
|
}
|
|
|
|
TINYMCE_SPELLCHECKER = False
|
|
|
|
TINYMCE_COMPRESSOR = True
|
|
|
|
|
|
|
|
MAX_LOGBOOK_ENTRY_TITLE_LENGTH = 200
|
|
|
|
|
2019-02-24 16:48:12 +00:00
|
|
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
|
|
|
|
2011-05-01 19:17:57 +01:00
|
|
|
from localsettings import * #localsettings needs to take precedence. Call it to override any existing vars.
|