Commit | Line | Data |
---|---|---|
6525d9ce | 1 | # -*- encoding: utf-8 -*- |
155a7c62 CR |
2 | |
3 | import os | |
d15017b2 | 4 | from conf import * |
155a7c62 CR |
5 | |
6 | ADMINS = ( | |
7 | # ('Your Name', 'your_email@domain.com'), | |
8 | ) | |
9 | ||
10 | MANAGERS = ADMINS | |
11 | ||
155a7c62 CR |
12 | TIME_ZONE = 'America/Chicago' |
13 | ||
d15017b2 | 14 | LANGUAGE_CODE = 'fr-ca' |
155a7c62 CR |
15 | |
16 | # Absolute path to the directory that holds media. | |
17 | # Example: "/home/media/media.lawrence.com/" | |
18 | MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'media') | |
19 | ||
20 | # URL that handles the media served from MEDIA_ROOT. Make sure to use a | |
21 | # trailing slash if there is a path component (optional in other cases). | |
22 | # Examples: "http://media.lawrence.com", "http://example.com/media/" | |
23 | MEDIA_URL = '/media/' | |
24 | ||
25 | # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a | |
26 | # trailing slash. | |
27 | # Examples: "http://foo.com/media/", "/media/". | |
28 | ADMIN_MEDIA_PREFIX = '/admin_media/' | |
29 | ||
7a355faa AJ |
30 | # List of callables that know how to import templates from various sources. |
31 | TEMPLATE_LOADERS = ( | |
32 | 'django.template.loaders.filesystem.load_template_source', | |
33 | 'django.template.loaders.app_directories.load_template_source', | |
34 | # 'django.template.loaders.eggs.load_template_source', | |
35 | ) | |
36 | ||
37 | TEMPLATE_CONTEXT_PROCESSORS = ( | |
38 | 'django.core.context_processors.auth', | |
39 | 'django.core.context_processors.debug', | |
40 | 'django.core.context_processors.i18n', | |
41 | 'django.core.context_processors.media', | |
42 | 'django.core.context_processors.request', | |
43 | ) | |
44 | ||
45 | ||
155a7c62 | 46 | MIDDLEWARE_CLASSES = ( |
42eb863b | 47 | 'django.middleware.cache.UpdateCacheMiddleware', |
155a7c62 | 48 | 'django.middleware.common.CommonMiddleware', |
42eb863b | 49 | 'django.middleware.cache.FetchFromCacheMiddleware', |
155a7c62 CR |
50 | 'django.contrib.sessions.middleware.SessionMiddleware', |
51 | 'django.contrib.auth.middleware.AuthenticationMiddleware', | |
7a355faa AJ |
52 | 'pagination.middleware.PaginationMiddleware', |
53 | 'django_sorting.middleware.SortingMiddleware', | |
155a7c62 CR |
54 | 'django.middleware.doc.XViewMiddleware', |
55 | ) | |
56 | ||
0cc5f772 | 57 | ROOT_URLCONF = 'auf_savoirs_en_partage.urls' |
155a7c62 CR |
58 | |
59 | ||
60 | INSTALLED_APPS = ( | |
61 | 'django.contrib.auth', | |
62 | 'django.contrib.contenttypes', | |
63 | 'django.contrib.sessions', | |
64 | 'django.contrib.admin', | |
7a355faa AJ |
65 | 'pagination', |
66 | 'django_sorting', | |
6ef8ead4 | 67 | 'django_roa', |
92c7413b | 68 | 'timezones', |
d15017b2 | 69 | 'savoirs', |
932eef9a | 70 | 'chercheurs', |
bab65667 | 71 | 'sitotheque', |
155a7c62 CR |
72 | ) |
73 | ||
9af73c99 AJ |
74 | |
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.user_chercheur", | |
83 | ) | |
155a7c62 CR |
84 | TEMPLATE_LOADERS = ( |
85 | 'django.template.loaders.filesystem.load_template_source', | |
86 | 'django.template.loaders.app_directories.load_template_source', | |
87 | ) | |
88 | ||
89 | TEMPLATE_DIRS = ( | |
90 | os.path.join(os.path.dirname(__file__), "templates"), | |
91 | ) | |
92 | ||
6ef8ead4 | 93 | AUTHENTICATION_BACKENDS = ( |
9af73c99 | 94 | 'authentification.CascadeBackend', |
6ef8ead4 | 95 | ) |
5fa0c5a4 | 96 | |
42eb863b CR |
97 | CACHE_BACKEND = 'memcached://127.0.0.1:11211/' |
98 | ||
79c398f6 | 99 | ROA_CUSTOM_ARGS = {'api-key': ROA_API_KEY} |
6525d9ce | 100 | |
79c398f6 | 101 | from auf_references_client.settings import * |