web/__init__.py
branchtls-sprint
changeset 1181 620ec8e6ae19
parent 0 b97547f5f1fa
child 1635 866563e2d0fc
equal deleted inserted replaced
1180:5536d4ee2bc3 1181:620ec8e6ae19
     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 ##     ))