2012-02-09 17:35:18 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
2012-04-25 22:29:19 +02:00
|
|
|
openslides.openslides_settings
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-02-09 17:35:18 +01:00
|
|
|
|
|
|
|
OpenSlides default settings.
|
|
|
|
|
2012-04-25 22:29:19 +02:00
|
|
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
2012-02-09 17:35:18 +01:00
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
2012-04-25 22:29:19 +02:00
|
|
|
|
2012-02-09 17:35:18 +01:00
|
|
|
import os
|
2012-05-30 23:30:24 +02:00
|
|
|
import sys
|
2012-02-09 17:35:18 +01:00
|
|
|
|
2012-05-30 23:30:24 +02:00
|
|
|
_fs_encoding = sys.getfilesystemencoding() or sys.getdefaultencoding()
|
|
|
|
def _fs2unicode(s):
|
|
|
|
if isinstance(s, unicode):
|
|
|
|
return s
|
|
|
|
return s.decode(_fs_encoding)
|
|
|
|
|
2012-02-09 17:35:18 +01:00
|
|
|
SITE_ROOT = os.path.realpath(os.path.dirname(__file__))
|
|
|
|
|
2012-07-10 14:00:51 +02:00
|
|
|
AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',
|
|
|
|
'openslides.utils.auth.AnonymousAuth',)
|
2012-02-09 17:35:18 +01:00
|
|
|
|
|
|
|
LOGIN_URL = '/login/'
|
|
|
|
LOGIN_REDIRECT_URL = '/'
|
|
|
|
|
2012-07-27 23:18:31 +02:00
|
|
|
SESSION_COOKIE_NAME = 'OpenSlidesSessionID'
|
|
|
|
|
2012-02-09 17:35:18 +01:00
|
|
|
|
|
|
|
ugettext = lambda s: s
|
|
|
|
|
|
|
|
LANGUAGES = (
|
|
|
|
('de', ugettext('German')),
|
|
|
|
('en', ugettext('English')),
|
2012-11-07 22:24:39 +01:00
|
|
|
('fr', ugettext('French')),
|
2012-02-09 17:35:18 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
# If you set this to False, Django will make some optimizations so as not
|
|
|
|
# to load the internationalization machinery.
|
|
|
|
USE_I18N = True
|
|
|
|
|
|
|
|
# If you set this to False, Django will not format dates, numbers and
|
|
|
|
# calendars according to the current locale
|
|
|
|
USE_L10N = True
|
|
|
|
|
2012-08-05 22:35:09 +02:00
|
|
|
LOCALE_PATHS = (
|
2012-08-14 14:19:59 +02:00
|
|
|
_fs2unicode(os.path.join(SITE_ROOT, 'locale')),
|
2012-08-05 22:35:09 +02:00
|
|
|
)
|
|
|
|
|
2012-02-09 17:35:18 +01:00
|
|
|
# Absolute path to the directory that holds media.
|
|
|
|
# Example: "/home/media/media.lawrence.com/"
|
2012-07-08 18:09:25 +02:00
|
|
|
MEDIA_ROOT = _fs2unicode(os.path.join(SITE_ROOT, './static/'))
|
2012-02-09 17:35:18 +01:00
|
|
|
|
|
|
|
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
|
|
|
|
# trailing slash if there is a path component (optional in other cases).
|
|
|
|
# Examples: "http://media.lawrence.com", "http://example.com/media/"
|
|
|
|
MEDIA_URL = ''
|
|
|
|
|
2012-04-14 14:51:56 +02:00
|
|
|
# Absolute path to the directory that holds static media from ``collectstatic``
|
|
|
|
# Example: "/home/media/static.lawrence.com/"
|
2012-05-30 23:30:24 +02:00
|
|
|
STATIC_ROOT = _fs2unicode(os.path.join(SITE_ROOT, '../site-static'))
|
2012-02-09 17:35:18 +01:00
|
|
|
|
2012-04-14 14:51:56 +02:00
|
|
|
# URL that handles the media served from STATIC_ROOT. Make sure to use a
|
|
|
|
# trailing slash if there is a path component (optional in other cases).
|
|
|
|
# Examples: "http://static.lawrence.com", "http://example.com/static/"
|
|
|
|
STATIC_URL = '/static/'
|
|
|
|
|
|
|
|
# Additional directories containing static files (not application specific)
|
|
|
|
# Examples: "/home/media/lawrence.com/extra-static/"
|
|
|
|
STATICFILES_DIRS = (
|
2012-05-30 23:30:24 +02:00
|
|
|
_fs2unicode(os.path.join(SITE_ROOT, 'static')),
|
2012-04-14 14:51:56 +02:00
|
|
|
)
|
2012-02-09 17:35:18 +01:00
|
|
|
|
2012-07-08 18:09:23 +02:00
|
|
|
#XXX: Note this setting (as well as our workaround finder)
|
|
|
|
# can be removed again once django-bug-#18404 has been resolved
|
|
|
|
STATICFILES_FINDERS = (
|
|
|
|
'django.contrib.staticfiles.finders.FileSystemFinder',
|
|
|
|
'openslides.utils.staticfiles.AppDirectoriesFinder',
|
|
|
|
)
|
|
|
|
|
2012-02-09 17:35:18 +01:00
|
|
|
MESSAGE_STORAGE = 'django.contrib.messages.storage.cookie.CookieStorage'
|
|
|
|
|
|
|
|
# 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',
|
|
|
|
)
|
|
|
|
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
|
|
'django.middleware.common.CommonMiddleware',
|
|
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
2012-08-12 10:12:26 +02:00
|
|
|
'openslides.participant.middleware.AuthenticationMiddleware',
|
2012-02-09 17:35:18 +01:00
|
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
|
|
'django.middleware.locale.LocaleMiddleware',
|
|
|
|
)
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'openslides.urls'
|
|
|
|
|
|
|
|
TEMPLATE_DIRS = (
|
2012-07-10 14:00:51 +02:00
|
|
|
# Put strings here, like "/home/html/django_templates" or
|
|
|
|
# "C:/www/django/templates".
|
2012-02-09 17:35:18 +01:00
|
|
|
# Always use forward slashes, even on Windows.
|
|
|
|
# Don't forget to use absolute paths, not relative paths.
|
2012-05-30 23:30:24 +02:00
|
|
|
_fs2unicode(os.path.join(SITE_ROOT, 'templates')),
|
2012-02-09 17:35:18 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
INSTALLED_APPS = (
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.messages',
|
2012-04-14 14:51:56 +02:00
|
|
|
'django.contrib.staticfiles',
|
2012-02-20 00:14:54 +01:00
|
|
|
'mptt',
|
2012-07-10 14:00:51 +02:00
|
|
|
'openslides.utils',
|
|
|
|
'openslides.poll',
|
|
|
|
'openslides.projector',
|
|
|
|
'openslides.agenda',
|
2012-10-24 11:04:23 +02:00
|
|
|
'openslides.motion',
|
2012-07-10 14:00:51 +02:00
|
|
|
'openslides.assignment',
|
|
|
|
'openslides.participant',
|
|
|
|
'openslides.config',
|
2012-02-09 17:35:18 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
|
|
|
'django.contrib.auth.context_processors.auth',
|
|
|
|
'django.contrib.messages.context_processors.messages',
|
|
|
|
'django.core.context_processors.request',
|
|
|
|
'django.core.context_processors.i18n',
|
2012-04-14 14:51:56 +02:00
|
|
|
'django.core.context_processors.static',
|
2012-07-10 14:00:51 +02:00
|
|
|
'openslides.utils.utils.revision',
|
2012-04-14 09:49:37 +02:00
|
|
|
'openslides.utils.auth.anonymous_context_additions',
|
2012-02-09 17:35:18 +01:00
|
|
|
)
|
2012-10-25 15:17:25 +02:00
|
|
|
|
|
|
|
CACHES = {
|
|
|
|
'default': {
|
|
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
|
|
'LOCATION': 'openslidecache'
|
|
|
|
}
|
|
|
|
}
|