1 # -*- encoding: utf-8 -*-
7 ('Équipe ARI-SI', 'developpeurs@ca.auf.org'),
8 ('Éric Mc Sween', 'eric.mcsween@gmail.com')
13 TIME_ZONE
= 'America/Chicago'
15 LANGUAGE_CODE
= 'fr-ca'
17 # Absolute path to the directory that holds media.
18 # Example: "/home/media/media.lawrence.com/"
19 MEDIA_ROOT
= os
.path
.join(os
.path
.dirname(__file__
), 'media')
21 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
22 # trailing slash if there is a path component (optional in other cases).
23 # Examples: "http://media.lawrence.com", "http://example.com/media/"
26 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
28 # Examples: "http://foo.com/media/", "/media/".
29 ADMIN_MEDIA_PREFIX
= '/admin_media/'
31 # List of callables that know how to import templates from various sources.
33 'django.template.loaders.filesystem.load_template_source',
34 'django.template.loaders.app_directories.load_template_source',
35 # 'django.template.loaders.eggs.load_template_source',
38 MIDDLEWARE_CLASSES
= (
39 'django.middleware.cache.UpdateCacheMiddleware',
40 'django.middleware.gzip.GZipMiddleware',
41 'django.middleware.common.CommonMiddleware',
42 'django.contrib.sessions.middleware.SessionMiddleware',
43 'django.contrib.auth.middleware.AuthenticationMiddleware',
44 'django.middleware.cache.FetchFromCacheMiddleware',
45 'chercheurs.middleware.ChercheurMiddleware',
46 'djangoflash.middleware.FlashMiddleware',
47 'pagination.middleware.PaginationMiddleware',
48 'django.middleware.doc.XViewMiddleware',
51 ROOT_URLCONF
= 'auf_savoirs_en_partage.urls'
56 'admin_tools.theming',
58 'admin_tools.dashboard',
59 'django.contrib.auth',
60 'django.contrib.contenttypes',
61 'django.contrib.sessions',
62 'django.contrib.admin',
72 'auf.django.admingroup',
75 TEMPLATE_CONTEXT_PROCESSORS
= (
76 # default : http://docs.djangoproject.com/en/dev/ref/settings/?from=olddocs#template-context-processors
77 "django.core.context_processors.auth",
78 "django.core.context_processors.debug",
79 "django.core.context_processors.i18n",
80 "django.core.context_processors.media",
81 "django.core.context_processors.request",
82 "context_processors.discipline_region",
83 "djangoflash.context_processors.flash"
87 'django.template.loaders.filesystem.load_template_source',
88 'django.template.loaders.app_directories.load_template_source',
92 os
.path
.join(os
.path
.dirname(__file__
), "templates"),
95 AUTHENTICATION_BACKENDS
= (
96 'auf.django.auth.backends.CascadeBackend', #'authentification.AUFBackend',
97 'authentification.PersonneBackend',
98 'django.contrib.auth.backends.ModelBackend',
100 AUTH_PROFILE_MODULE
= 'savoirs.Profile'
102 LOGIN_URL
= '/chercheurs/connexion/'
103 LOGIN_REDIRECT_URL
= '/chercheurs/perso/'
105 CACHE_BACKEND
= 'memcached://localhost:11211'
106 CACHE_MIDDLEWARE_ANONYMOUS_ONLY
= True
108 ROA_CUSTOM_ARGS
= {'api-key': ROA_API_KEY
}
110 ADMIN_TOOLS_INDEX_DASHBOARD
= 'auf_savoirs_en_partage.dashboard.CustomIndexDashboard'
111 ADMIN_TOOLS_MENU
= 'auf_savoirs_en_partage.menu.CustomMenu'
113 CONTACT_EMAIL
= 'contact-savoirsenpartage@auf.org'
115 SPHINX_API_VERSION
= 0x116
118 from auf_references_client
.settings
import *