author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 23 Sep 2009 19:16:44 +0200 | |
changeset 3445 | 32492e9e734b |
parent 1977 | 606923dff11b |
child 4212 | ab6573088b4a |
permissions | -rw-r--r-- |
0 | 1 |
# server debugging flag |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
2 |
""" |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
3 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
4 |
:organization: Logilab |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
7 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
8 |
""" |
0 | 9 |
DEBUG = False |
10 |
||
11 |
# sqlite'stored procedures have to be registered at connexion opening time |
|
12 |
SQL_CONNECT_HOOKS = {} |
|
13 |
||
14 |
# add to this set relations which should have their add security checking done |
|
15 |
# *BEFORE* adding the actual relation (done after by default) |
|
16 |
BEFORE_ADD_RELATIONS = set(('owned_by',)) |
|
17 |
||
18 |
# add to this set relations which should have their add security checking done |
|
19 |
# *at COMMIT TIME* (done after by default) |
|
20 |
ON_COMMIT_ADD_RELATIONS = set(()) |
|
21 |
||
22 |
# available sources registry |
|
23 |
SOURCE_TYPES = {} |