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
|
|
|
from django.conf.global_settings import *
|
|
|
|
|
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-02-15 12:04:11 +01:00
|
|
|
#SITE_ROOT = os.path.join(SITE_ROOT, '..')
|
2012-02-09 17:35:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
AUTH_PROFILE_MODULE = 'participant.Profile'
|
2012-04-14 09:49:37 +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-05-30 23:30:24 +02:00
|
|
|
DBPATH = _fs2unicode(os.path.join(os.path.join(SITE_ROOT, '..'), 'database.db'))
|
2012-02-09 17:35:18 +01:00
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
|
|
|
|
'NAME': DBPATH, # Or path to database file if using sqlite3.
|
|
|
|
'USER': '', # Not used with sqlite3.
|
|
|
|
'PASSWORD': '', # Not used with sqlite3.
|
|
|
|
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
|
|
|
|
'PORT': '', # Set to empty string for default. Not used with sqlite3.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ugettext = lambda s: s
|
|
|
|
|
|
|
|
LANGUAGES = (
|
|
|
|
('de', ugettext('German')),
|
|
|
|
('en', ugettext('English')),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# Absolute path to the directory that holds media.
|
|
|
|
# Example: "/home/media/media.lawrence.com/"
|
2012-06-04 10:17:56 +02:00
|
|
|
MEDIA_ROOT = 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
|
|
|
|
|
|
|
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',
|
|
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
|
|
'django.middleware.locale.LocaleMiddleware',
|
|
|
|
)
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'openslides.urls'
|
|
|
|
|
|
|
|
TEMPLATE_DIRS = (
|
|
|
|
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
|
|
|
|
# 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-02-15 12:04:11 +01:00
|
|
|
'utils',
|
|
|
|
'poll',
|
2012-03-18 17:11:58 +01:00
|
|
|
'projector',
|
2012-02-15 12:04:11 +01:00
|
|
|
'agenda',
|
2012-02-09 17:35:18 +01:00
|
|
|
'application',
|
|
|
|
'assignment',
|
2012-03-18 17:11:58 +01:00
|
|
|
'participant',
|
2012-04-14 12:52:56 +02:00
|
|
|
'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-02-09 17:35:18 +01:00
|
|
|
'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
|
|
|
)
|