152 lines
3.9 KiB
Python
152 lines
3.9 KiB
Python
"""
|
|
Django settings for experiENS project.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/1.7/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/1.7/ref/settings/
|
|
"""
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
import os
|
|
from django.core.urlresolvers import reverse_lazy
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
|
|
|
|
ALLOWED_HOSTS = []
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.gis',
|
|
'django.contrib.sites',
|
|
|
|
'django_elasticsearch_dsl',
|
|
|
|
'widget_tweaks',
|
|
'allauth_ens',
|
|
|
|
'allauth',
|
|
'allauth.account',
|
|
'allauth.socialaccount',
|
|
'allauth_cas',
|
|
|
|
'allauth_ens.providers.clipper',
|
|
|
|
'tastypie',
|
|
'braces',
|
|
'tinymce',
|
|
'taggit',
|
|
'taggit_autosuggest',
|
|
'avisstage'
|
|
)
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
)
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [
|
|
# insert your TEMPLATE_DIRS here
|
|
],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.i18n',
|
|
'django.template.context_processors.media',
|
|
'django.template.context_processors.static',
|
|
'django.template.context_processors.tz',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.messages.context_processors.messages',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
ROOT_URLCONF = 'experiENS.urls'
|
|
|
|
WSGI_APPLICATION = 'experiENS.wsgi.application'
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/1.7/topics/i18n/
|
|
|
|
LANGUAGE_CODE = 'fr-fr'
|
|
|
|
TIME_ZONE = 'Europe/Paris'
|
|
|
|
USE_I18N = True
|
|
|
|
USE_L10N = True
|
|
|
|
USE_TZ = True
|
|
|
|
SITE_ID = 1
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/1.7/howto/static-files/
|
|
|
|
STATIC_URL = '/static/'
|
|
|
|
AUTHENTICATION_BACKENDS = (
|
|
'django.contrib.auth.backends.ModelBackend',
|
|
'experiENS.auth.ENSCASBackend',
|
|
)
|
|
|
|
CAS_SERVER_URL = "https://cas.eleves.ens.fr/" #SPI CAS
|
|
CAS_VERIFY_URL = "https://cas.eleves.ens.fr/"
|
|
CAS_IGNORE_REFERER = True
|
|
CAS_REDIRECT_URL = reverse_lazy('avisstage:perso')
|
|
CAS_EMAIL_FORMAT = "%s@clipper.ens.fr"
|
|
CAS_FORCE_CHANGE_USERNAME_CASE = "lower"
|
|
CAS_VERSION = 'CAS_2_SAML_1_0'
|
|
|
|
ACCOUNT_ADAPTER = 'avisstage.allauth_adapter.AccountAdapter'
|
|
SOCIALACCOUNT_ADAPTER = 'avisstage.allauth_adapter.SocialAccountAdapter'
|
|
|
|
LOGIN_URL = reverse_lazy('account_login')
|
|
LOGOUT_URL = reverse_lazy('account_logout')
|
|
LOGIN_REDIRECT_URL = reverse_lazy('avisstage:perso')
|
|
ACCOUNT_HOME_URL = reverse_lazy('avisstage:index')
|
|
|
|
LOGGING = {
|
|
'version': 1,
|
|
'disable_existing_loggers': False,
|
|
'handlers': {
|
|
'file': {
|
|
'level': 'INFO',
|
|
'class': 'logging.FileHandler',
|
|
'filename': os.path.join(BASE_DIR, 'recherche.log'),
|
|
},
|
|
},
|
|
'loggers': {
|
|
'recherche': {
|
|
'handlers': ['file'],
|
|
'level': 'INFO',
|
|
'propagate': True,
|
|
},
|
|
},
|
|
}
|