equal
deleted
inserted
replaced
1 """CubicWeb web client core. You'll need a apache-modpython or twisted |
1 """CubicWeb web client core. You'll need a apache-modpython or twisted |
2 publisher to get a full CubicWeb web application |
2 publisher to get a full CubicWeb web application |
3 |
3 |
4 |
4 |
5 :organization: Logilab |
5 :organization: Logilab |
6 :copyright: 2001-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
6 :copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
7 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
7 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8 """ |
8 """ |
9 __docformat__ = "restructuredtext en" |
9 __docformat__ = "restructuredtext en" |
10 |
10 |
11 from cubicweb.web._exceptions import * |
11 from cubicweb.web._exceptions import * |
33 |
33 |
34 |
34 |
35 from logging import getLogger |
35 from logging import getLogger |
36 LOGGER = getLogger('cubicweb.web') |
36 LOGGER = getLogger('cubicweb.web') |
37 |
37 |
|
38 # XXX deprecated |
38 FACETTES = set() |
39 FACETTES = set() |
39 |
|
40 |
|
41 ## FACETTES = set( ( |
|
42 ## # (relation, role, target's attribute) |
|
43 ## ('created_by', 'subject', 'login'), |
|
44 ## ('in_group', 'subject', 'name'), |
|
45 ## ('in_state', 'subject', 'name'), |
|
46 ## )) |
|