| author | ymh <ymh.work@gmail.com> |
| Tue, 06 Nov 2012 17:59:59 +0100 | |
| changeset 905 | 7be50692abb4 |
| parent 858 | dcf47b385ddd |
| permissions | -rw-r--r-- |
|
444
2711eef17092
Update front tag list management with settings/config.
cavaliet
parents:
333
diff
changeset
|
1 |
# -*- coding: utf-8 -*- |
| 0 | 2 |
import os, logging |
3 |
||
4 |
SITE_ID = 1 |
|
5 |
||
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
6 |
#BASE_DIR = os.path.dirname(os.path.abspath(__file__)).rstrip("/")+"/" |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
7 |
BASE_DIR = '%(base_dir)s' |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
8 |
BASE_URL = '%(base_url)s' |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
9 |
WEB_URL = '%(web_url)s' |
|
905
7be50692abb4
Correct web_auth to be a list to respect regex order
ymh <ymh.work@gmail.com>
parents:
858
diff
changeset
|
10 |
WEB_AUTH = [] # example [{'REGEX': 'localhost/~ymh/platform', 'NAME': 'ymh', 'PASSWORD': 'ymh'}] |
|
106
2affc8a44dfb
Clean static_url management, add icons and clean settings.py and config.py.tmpl management with the static urls.
cavaliet
parents:
104
diff
changeset
|
11 |
STATIC_URL = BASE_URL + 'static/site/' |
|
2affc8a44dfb
Clean static_url management, add icons and clean settings.py and config.py.tmpl management with the static urls.
cavaliet
parents:
104
diff
changeset
|
12 |
|
|
2affc8a44dfb
Clean static_url management, add icons and clean settings.py and config.py.tmpl management with the static urls.
cavaliet
parents:
104
diff
changeset
|
13 |
|
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
14 |
STREAM_URL = "%(stream_url)s" |
| 0 | 15 |
|
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
16 |
STREAM_SRC_PREFIX = "%(stream_src_prefix)s" |
| 0 | 17 |
|
|
112
9886ab183b09
add permalink + corrcetion config with static and media path. update urls
ymh <ymh.work@gmail.com>
parents:
109
diff
changeset
|
18 |
BASE_STATIC_ROOT = os.path.abspath(BASE_DIR + "../static/").rstrip("/")+"/" |
| 142 | 19 |
BASE_STATIC_URL = BASE_URL + 'static/' |
| 0 | 20 |
|
21 |
# Absolute path to the directory that holds media. |
|
22 |
# Example: "/home/media/media.lawrence.com/" |
|
|
112
9886ab183b09
add permalink + corrcetion config with static and media path. update urls
ymh <ymh.work@gmail.com>
parents:
109
diff
changeset
|
23 |
MEDIA_ROOT = BASE_STATIC_ROOT + "media/" |
| 0 | 24 |
|
25 |
||
|
104
b62a2a3e272d
Use django.contrib.staticfiles to manage static file. Reorganize static files in ldt folder.
cavaliet
parents:
103
diff
changeset
|
26 |
# Absolute path to the directory that static files (js, css, swf...) |
|
b62a2a3e272d
Use django.contrib.staticfiles to manage static file. Reorganize static files in ldt folder.
cavaliet
parents:
103
diff
changeset
|
27 |
# DO NOT forget to do command line ./manage.py collectstatic to gather static media into the web/static folder |
|
112
9886ab183b09
add permalink + corrcetion config with static and media path. update urls
ymh <ymh.work@gmail.com>
parents:
109
diff
changeset
|
28 |
STATIC_ROOT = BASE_STATIC_ROOT + "site/" |
|
104
b62a2a3e272d
Use django.contrib.staticfiles to manage static file. Reorganize static files in ldt folder.
cavaliet
parents:
103
diff
changeset
|
29 |
|
|
122
f3a013f66974
Add search form, displaying the results in a regular LDT template. Update language files.
cavaliet
parents:
112
diff
changeset
|
30 |
# PATH to the ffmpeg executable, used to know automatically the media file duration |
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
31 |
FFMPEG_PATH = "%(ffmpeg_path)s" |
|
122
f3a013f66974
Add search form, displaying the results in a regular LDT template. Update language files.
cavaliet
parents:
112
diff
changeset
|
32 |
|
| 0 | 33 |
|
|
112
9886ab183b09
add permalink + corrcetion config with static and media path. update urls
ymh <ymh.work@gmail.com>
parents:
109
diff
changeset
|
34 |
CONTENT_ROOT = BASE_STATIC_ROOT + "content/" |
| 0 | 35 |
|
|
106
2affc8a44dfb
Clean static_url management, add icons and clean settings.py and config.py.tmpl management with the static urls.
cavaliet
parents:
104
diff
changeset
|
36 |
# PATH where uploaded media are put. |
| 0 | 37 |
STREAM_PATH = CONTENT_ROOT |
38 |
||
| 142 | 39 |
ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/' |
40 |
LDT_MEDIA_PREFIX = STATIC_URL + 'ldt/' |
|
41 |
||
42 |
||
| 0 | 43 |
|
44 |
DATABASES = { |
|
45 |
'default': { |
|
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
46 |
'ENGINE': 'django.db.backends.%(db_engine)s', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
47 |
'NAME': '%(db_name)s', # Or path to database file if using sqlite3. |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
48 |
'USER': '%(db_user)s', # Not used with sqlite3. |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
49 |
'PASSWORD': '%(db_password)s', # Not used with sqlite3. |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
50 |
'HOST': '%(db_host)s', # Set to empty string for localhost. Not used with sqlite3. |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
51 |
'PORT': '%(db_port)d', # Set to empty string for default. Not used with sqlite3. |
| 0 | 52 |
} |
53 |
} |
|
54 |
||
| 279 | 55 |
CACHES = { |
56 |
'default': { |
|
| 283 | 57 |
'BACKEND': 'django.core.cache.backends.dummy.DummyCache', |
| 279 | 58 |
} |
59 |
} |
|
60 |
||
| 0 | 61 |
DEBUG = True |
62 |
TEMPLATE_DEBUG = DEBUG |
|
63 |
||
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
64 |
#LOG_FILE = os.path.abspath(os.path.join(BASE_DIR,"../log/log.txt")) |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
65 |
LOG_FILE = '%(log_file)s' |
| 0 | 66 |
LOG_LEVEL = logging.DEBUG |
| 858 | 67 |
LOGGING = { |
68 |
'version': 1, |
|
69 |
'disable_existing_loggers': False, |
|
70 |
'formatters' : { |
|
71 |
'simple' : { |
|
72 |
'format': "%(asctime)s - %(levelname)s : %(message)s", |
|
73 |
}, |
|
74 |
'semi-verbose': { |
|
75 |
'format': '%(levelname)s %(asctime)s %(module)s %(message)s' |
|
76 |
}, |
|
77 |
}, |
|
78 |
'handlers': { |
|
79 |
'mail_admins': { |
|
80 |
'level': 'ERROR', |
|
81 |
'class': 'django.utils.log.AdminEmailHandler' |
|
82 |
}, |
|
83 |
'stream_to_console': { |
|
84 |
'level': LOG_LEVEL, |
|
85 |
'class': 'logging.StreamHandler' |
|
86 |
}, |
|
87 |
'file': { |
|
88 |
'level': LOG_LEVEL, |
|
89 |
'class': 'logging.FileHandler', |
|
90 |
'filename': LOG_FILE, |
|
91 |
'formatter': 'semi-verbose', |
|
92 |
}, |
|
93 |
}, |
|
94 |
'loggers': { |
|
95 |
'django.db.backends':{ |
|
96 |
'handlers': ['file'], |
|
97 |
'level': LOG_LEVEL, |
|
98 |
'propagate': True, |
|
99 |
}, |
|
100 |
'django.request': { |
|
101 |
'handlers': ['file'], |
|
102 |
'level': LOG_LEVEL, |
|
103 |
'propagate': True, |
|
104 |
}, |
|
105 |
'ldt': { |
|
106 |
'handlers': ['file'], |
|
107 |
'level': LOG_LEVEL, |
|
108 |
'propagate': True, |
|
109 |
}, |
|
110 |
} |
|
111 |
} |
|
| 0 | 112 |
|
113 |
||
114 |
ADMINS = ( |
|
115 |
# ('Your Name', 'your_email@domain.com'), |
|
116 |
) |
|
117 |
||
118 |
MANAGERS = ADMINS |
|
119 |
||
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
120 |
GOOGLE_ANALYTICS_CODE = '%(google_analytics_code)s' |
|
589
e7410c4df032
template cleaning, translation in js, and add generic google analytics
ymh <ymh.work@gmail.com>
parents:
538
diff
changeset
|
121 |
|
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
122 |
EMAIL_USE_TLS = %(email_use_tls)s |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
123 |
EMAIL_HOST = '%(email_host)s' |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
124 |
EMAIL_HOST_USER = '%(email_host_user)s' |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
125 |
EMAIL_HOST_PASSWORD = '%(email_host_user)s' |
|
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
126 |
EMAIL_PORT = %(email_port)d |
| 0 | 127 |
|
128 |
ACCOUNT_ACTIVATION_DAYS = 7 |
|
129 |
REGISTRATION_OPEN = False |
|
130 |
||
131 |
LDT_MAX_SEARCH_NUMBER = 50 |
|
| 176 | 132 |
LDT_MAX_FRAGMENT_PER_SEARCH = 3 |
| 177 | 133 |
LDT_RESULTS_PER_PAGE = 1 |
| 29 | 134 |
LDT_JSON_DEFAULT_INDENT = 0 |
|
644
94429061bbfa
First step of pagination for contents and projet in workspace home.
cavaliet
parents:
594
diff
changeset
|
135 |
LDT_MAX_CONTENTS_PER_PAGE = 5 |
|
94429061bbfa
First step of pagination for contents and projet in workspace home.
cavaliet
parents:
594
diff
changeset
|
136 |
LDT_MAX_PROJECTS_PER_PAGE = 5 |
| 740 | 137 |
LDT_FRONT_MEDIA_PER_PAGE = 9 |
| 0 | 138 |
|
139 |
EMPTY_MEDIA_EXTERNALID = None |
|
|
103
5578dcb54f4d
merge context_processors.py and enable upload cancel and remove temp file. Creation of a session temp folder for upload.
cavaliet
parents:
29
diff
changeset
|
140 |
|
|
5578dcb54f4d
merge context_processors.py and enable upload cancel and remove temp file. Creation of a session temp folder for upload.
cavaliet
parents:
29
diff
changeset
|
141 |
AUTO_INDEX_AFTER_SAVE = True |
|
243
3cff86180fbe
Replaced calls to objects by calls to safe_objects in views + xml can be changed on the fly to hide a content
verrierj
parents:
196
diff
changeset
|
142 |
|
|
769
a49769a3088d
clean config file and do some correction in the sync script.
ymh <ymh.work@gmail.com>
parents:
740
diff
changeset
|
143 |
FORBIDDEN_STREAM_URL = "%(forbidden_stream_url)s" |
|
444
2711eef17092
Update front tag list management with settings/config.
cavaliet
parents:
333
diff
changeset
|
144 |
|
|
2711eef17092
Update front tag list management with settings/config.
cavaliet
parents:
333
diff
changeset
|
145 |
FRONT_TAG_LIST = [u"Enmi 2011", u"film", u"conférence"] |
| 504 | 146 |
|
|
718
5e27a39d3742
replace lucene by haystack, remove references to lucene
ymh <ymh.work@gmail.com>
parents:
644
diff
changeset
|
147 |
HAYSTACK_CONNECTIONS = { |
|
5e27a39d3742
replace lucene by haystack, remove references to lucene
ymh <ymh.work@gmail.com>
parents:
644
diff
changeset
|
148 |
'default': { |
| 719 | 149 |
#for elasticsearch use ldt.indexation.backends.elasticsearch_backend.ElasticsearchSearchEngine |
|
718
5e27a39d3742
replace lucene by haystack, remove references to lucene
ymh <ymh.work@gmail.com>
parents:
644
diff
changeset
|
150 |
'ENGINE': 'haystack.backends.simple_backend.SimpleEngine', |
| 722 | 151 |
#'URL': 'http://127.0.0.1:9200/', |
152 |
#'INDEX_NAME': 'ldt', |
|
|
718
5e27a39d3742
replace lucene by haystack, remove references to lucene
ymh <ymh.work@gmail.com>
parents:
644
diff
changeset
|
153 |
}, |
|
5e27a39d3742
replace lucene by haystack, remove references to lucene
ymh <ymh.work@gmail.com>
parents:
644
diff
changeset
|
154 |
} |