Projet

Général

Profil

Télécharger (11,8 ko) Statistiques
| Branche: | Tag: | Révision:

calebasse / calebasse / settings.py @ 5e2377b1

1
# -*- coding: utf-8 -*-
2

    
3
# Django settings for calebasse project.
4

    
5
import os
6
from logging.handlers import SysLogHandler
7

    
8
PROJECT_PATH = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'calebasse')
9

    
10
DEBUG = True
11
TEMPLATE_DEBUG = True
12

    
13
ADMINS = (
14
    # ('Your Name', 'your_email@example.com'),
15
)
16

    
17
MANAGERS = ADMINS
18

    
19
DATABASES = {
20
    'default': {
21
        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
22
        'NAME': os.path.join(PROJECT_PATH, 'calebasse.sqlite3'),                      # Or path to database file if using sqlite3.
23
        'USER': '',                      # Not used with sqlite3.
24
        'PASSWORD': '',                  # Not used with sqlite3.
25
        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
26
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
27
    }
28
}
29

    
30
# Local time zone for this installation. Choices can be found here:
31
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
32
# although not all choices may be available on all operating systems.
33
# On Unix systems, a value of None will cause Django to use the same
34
# timezone as the operating system.
35
# If running in a Windows environment this must be set to the same as your
36
# system time zone.
37
TIME_ZONE = 'Europe/Paris'
38

    
39
# Language code for this installation. All choices can be found here:
40
# http://www.i18nguy.com/unicode/language-identifiers.html
41
LANGUAGE_CODE = 'fr-fr'
42

    
43
SITE_ID = 1
44

    
45
# If you set this to False, Django will make some optimizations so as not
46
# to load the internationalization machinery.
47
USE_I18N = True
48

    
49
# If you set this to False, Django will not format dates, numbers and
50
# calendars according to the current locale.
51
USE_L10N = True
52
FORMAT_MODULE_PATH = 'calebasse.formats'
53

    
54
# If you set this to False, Django will not use timezone-aware datetimes.
55
USE_TZ = False
56

    
57
# Absolute filesystem path to the directory that will hold user-uploaded files.
58
# Example: "/home/media/media.lawrence.com/media/"
59
MEDIA_ROOT = os.path.join(PROJECT_PATH, 'media')
60

    
61
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
62
# trailing slash.
63
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
64
MEDIA_URL = '/media/'
65

    
66
# Absolute path to the directory static files should be collected to.
67
# Don't put anything in this directory yourself; store your static files
68
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
69
# Example: "/home/media/media.lawrence.com/static/"
70
STATIC_ROOT = os.path.join(os.path.join(PROJECT_PATH, '..'), 'static')
71

    
72
# URL prefix for static files.
73
# Example: "http://media.lawrence.com/static/"
74
STATIC_URL = '/static/'
75

    
76
# Additional locations of static files
77
STATICFILES_DIRS = (
78
    # Put strings here, like "/home/html/static" or "C:/www/django/static".
79
    # Always use forward slashes, even on Windows.
80
    # Don't forget to use absolute paths, not relative paths.
81
    os.path.join(PROJECT_PATH, 'static'),
82
)
83

    
84
# List of finder classes that know how to find static files in
85
# various locations.
86
STATICFILES_FINDERS = (
87
    'django.contrib.staticfiles.finders.FileSystemFinder',
88
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
89
#    'django.contrib.staticfiles.finders.DefaultStorageFinder',
90
)
91

    
92
# Make this unique, and don't share it with anybody.
93
SECRET_KEY = 'ct(a@ny^_)8v-^)jkdzbktqg6ajfn6y!zdjum^(f_o!h0jeotq'
94

    
95
# List of callables that know how to import templates from various sources.
96
TEMPLATE_LOADERS = (
97
    'django.template.loaders.filesystem.Loader',
98
    'django.template.loaders.app_directories.Loader',
99
#     'django.template.loaders.eggs.Loader',
100
)
101

    
102
MIDDLEWARE_CLASSES = (
103
    'django.middleware.common.CommonMiddleware',
104
    'django.contrib.sessions.middleware.SessionMiddleware',
105
    'django.middleware.csrf.CsrfViewMiddleware',
106
    'django.contrib.auth.middleware.AuthenticationMiddleware',
107
    'django.contrib.messages.middleware.MessageMiddleware',
108
    #'debug_toolbar.middleware.DebugToolbarMiddleware',
109
    'calebasse.middleware.request.GlobalRequestMiddleware',
110
    # Uncomment the next line for simple clickjacking protection:
111
    # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
112
    'django.middleware.transaction.TransactionMiddleware',
113
    'reversion.middleware.RevisionMiddleware',
114
    # Entr'ouvert wsgi middleware to expose version
115
    'entrouvert.djommon.middleware.VersionMiddleware',
116
    'django_journal.middleware.JournalMiddleware',
117
)
118

    
119
ROOT_URLCONF = 'calebasse.urls'
120

    
121
# Python dotted path to the WSGI application used by Django's runserver.
122
WSGI_APPLICATION = 'calebasse.wsgi.application'
123

    
124
TEMPLATE_DIRS = (
125
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
126
    # Always use forward slashes, even on Windows.
127
    # Don't forget to use absolute paths, not relative paths.
128
    os.path.join(PROJECT_PATH, "templates")
129
)
130

    
131
TEMPLATE_CONTEXT_PROCESSORS = ("django.contrib.auth.context_processors.auth",
132
    "django.core.context_processors.debug",
133
    "django.core.context_processors.i18n",
134
    "django.core.context_processors.media",
135
    "django.core.context_processors.static",
136
    "django.core.context_processors.tz",
137
    "django.core.context_processors.request",
138
    "django.contrib.messages.context_processors.messages")
139

    
140
FIXTURE_DIRS = (
141
        os.path.join(PROJECT_PATH, 'fixtures'),
142
)
143

    
144
INSTALLED_APPS = (
145
    'django.contrib.auth',
146
    'django.contrib.contenttypes',
147
    'django.contrib.sessions',
148
    'django.contrib.sites',
149
    'django.contrib.messages',
150
    'django.contrib.staticfiles',
151
    'reversion',
152
    'south',
153
    'django.contrib.admin',
154
    'ajax_select',
155
    'django_select2',
156
    #'debug_toolbar',
157
    'widget_tweaks',
158
    # Uncomment the next line to enable admin documentation:
159
    # 'django.contrib.admindocs',
160
    'calebasse.agenda',
161
    'calebasse.dossiers',
162
    'calebasse.actes',
163
    'calebasse.facturation',
164
    'calebasse.personnes',
165
    'calebasse.ressources',
166
    'calebasse.statistics',
167
    'calebasse.common',
168
    'calebasse.middleware.request',
169
    'south',
170
    'django_journal',
171
)
172

    
173
INTERNAL_IPS=('127.0.0.1',)
174
DEBUG_TOOLBAR_CONFIG = {
175
    'INTERCEPT_REDIRECTS': False,
176
}
177

    
178
# A sample logging configuration. The only tangible logging
179
# performed by this configuration is to send an email to
180
# the site admins on every HTTP 500 error when DEBUG=False.
181
# See http://docs.djangoproject.com/en/dev/topics/logging for
182
# more details on how to customize your logging configuration.
183
LOGGING = {
184
    'version': 1,
185
    'disable_existing_loggers': True,
186
    'filters': {
187
        'require_debug_false': {
188
            '()': 'django.utils.log.RequireDebugFalse'
189
        },
190
    },
191
    'formatters': {
192
        'verbose': {
193
            'format': '[%(asctime)s] %(levelname)-8s %(name)s.%(message)s',
194
            'datefmt': '%Y-%m-%d %a %H:%M:%S'
195
        },
196
        'syslog': {
197
            'format': 'calebasse (pid=%(process)d) %(levelname)s %(name)s: %(message)s',
198
        },
199
    },
200
    'handlers': {
201
        'mail_admins': {
202
            'level': 'ERROR',
203
            'filters': ['require_debug_false'],
204
            'class': 'django.utils.log.AdminEmailHandler'
205
        },
206
        'console': {
207
            'level':'INFO',
208
            'class':'logging.StreamHandler',
209
            'formatter': 'verbose',
210
        },
211
        'syslog': {
212
            'level': 'DEBUG',
213
            'class': 'entrouvert.logging.handlers.SysLogHandler',
214
            'formatter': 'syslog',
215
            'facility': SysLogHandler.LOG_LOCAL0,
216
            'address': '/dev/log',
217
            'max_length': 999,
218
        },
219
    },
220
    'loggers': {
221
        'django.db.backends': {
222
            'level': 'ERROR',
223
            'handlers': ['console'],
224
            'propagate': False,
225
        },
226
        '': {
227
            'handlers': ['syslog'],
228
            'level': 'DEBUG' if DEBUG else 'INFO',
229
            'propagate': True,
230
        }
231
    },
232
}
233

    
234
# AJAX Select
235
AJAX_LOOKUP_CHANNELS = {
236
    #   pass a dict with the model and the field to search against
237
    'worker' : ('calebasse.personnes.lookup', 'WorkerLookup'),
238
    'intervenant' : ('calebasse.personnes.lookup', 'IntervenantLookup'),
239
    #'patientrecord'  : {'model':'dossiers.PatientRecord', 'search_field':'display_name'}
240
    #'coordinators'  : {'model':'dossiers.PatientRecord', 'search_field':'display_name'}
241
    'patientrecord' : ('calebasse.dossiers.lookups', 'PatientRecordLookup'),
242
    #'school' : {'model':'ressources.School', 'search_field':'name'},
243
    'school' : ('calebasse.ressources.lookups', 'SchoolLookup'),
244
    'addresses' : ('calebasse.dossiers.lookups', 'PatientAddressLookup'),
245
    'worker-or-group' : ('calebasse.ressources.lookups', 'WorkerOrGroupLookup'),
246
    'all-worker-or-group' : ('calebasse.ressources.lookups', 'AllWorkerOrGroupLookup'),
247
}
248

    
249
# Default URL after login
250
LOGIN_REDIRECT_URL = '/'
251

    
252
# Sentry / raven configuration
253
# You need to overload this option in the local_settings.py
254
RAVEN_CONFIG = None
255

    
256
# Base directory for generated patient files
257
PATIENT_FILES_BASE_DIRECTORY = None
258

    
259
# Client side base directory for generated patient files
260
CLIENT_SIDE_PATIENT_FILES_BASE_DIRECTORY =  None
261

    
262
# Patient subdirectories
263
PATIENT_SUBDIRECTORIES = (
264
    u'Assistante sociale',
265
    u'Consultation',
266
    u'Courriers',
267
    u'Demande',
268
    u'Demandes prises en charge',
269
    u'Educateur spécialisé',
270
    u'Ergothérapie',
271
    u'Groupe',
272
    u'Kinésithérapie',
273
    u'Logico-mathématiques',
274
    u'Neuro-psychologie',
275
    u'Orientation',
276
    u'Orthophonie',
277
    u'Psychologie',
278
    u'Psychomotricité',
279
    u'Psychopédagogue',
280
    u'Synthèses',
281
    u'TCC',
282
)
283

    
284
# RTF templates directory
285
RTF_TEMPLATES_DIRECTORY = None
286
# Use patient home dictrory for RTF files generated
287
# PATIENT_FILES_BASE_DIRECTORY must be set to work
288
USE_PATIENT_FILE_RTF_REPOSITORY_DIRECTORY = False
289
# RTF files generated directory
290
RTF_REPOSITORY_DIRECTORY = None
291

    
292
# Invoicing file saving directory
293
INVOICING_DIRECTORY = None
294

    
295
# display events only for current service
296
CURRENT_SERVICE_EVENTS_ONLY = True
297

    
298
#CSV_ENCODING = 'cp1252' #For windows : windows-1252/Winlatin1
299
#CSVPROFILE = {\
300
#    'delimiter' : ';',
301
#    'quotechar' : '"',
302
#    'doublequote' : True
303
#    'skipinitialspace' : False
304
#    'lineterminator' : '\r\n'
305
#    'quoting' : csv.QUOTE_MINIMAL
306
#}
307

    
308
# IRIS/B2 transmission
309
# B2_TRANSMISSION = {
310
#    'output_directory': '/var/lib/calebasse/B2/',
311
#    # B2 informations
312
#    'nom': 'CMPP FOOBAR',                      # mandatory
313
#    'numero_emetteur': '123456789',            # mandatory
314
#    'norme': 'CP  ',
315
#    'type_emetteur': 'TE',
316
#    'application': 'TR',
317
#    'categorie': '189',
318
#    'statut': '60',
319
#    'mode_tarif': '05',
320
#    'message': 'ENTROUVERT 0143350135 CALEBASSE 1307',
321
#    # SMTP configuration
322
#    'smtp_from': 'transmission@domain.net',    # mandatory
323
#    'smtp_host': '127.0.0.1',
324
#    'smtp_port': 25,
325
#    'smtp_login': '',
326
#    'smtp_password': '',
327
#    # delay between two mails, in seconds, or None
328
#    'smtp_delay': None,
329
# }
330

    
331
try:
332
    from local_settings import *
333
except ImportError:
334
    print """
335
    -------------------------------------------------------------------------
336
    You need to create a local_settings.py file which needs to contain at least
337
    database connection information.
338

    
339
    Copy local_settings_example.py to local_settings.py and edit it.
340
    -------------------------------------------------------------------------
341
    """
342
    import sys
343
    sys.exit(1)
344

    
345
if RAVEN_CONFIG:
346
    INSTALLED_APPS += ('raven.contrib.django.raven_compat', )
347
    LOGGING['handlers']['sentry'] = {
348
            'level': 'ERROR',
349
            'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler',
350
            }
351
    LOGGING['loggers']['raven'] = {
352
            'level': 'DEBUG',
353
            'handlers': ['console'],
354
            'propagate': False,
355
            }
356
    LOGGING['loggers']['sentry.errors'] = {
357
            'level': 'DEBUG',
358
            'handlers': ['console'],
359
            'propagate': False,
360
            }
361
    LOGGING['loggers']['']['handlers'].append('sentry')
(12-12/17)