web/views/sessions.py
branchtls-sprint
changeset 1133 8a409ea0c9ec
parent 0 b97547f5f1fa
child 1802 d628defebc17
equal deleted inserted replaced
1132:96752791c2b6 1133:8a409ea0c9ec
     1 """web session component: by dfault the session is actually the db connection
     1 """web session component: by dfault the session is actually the db connection
     2 object :/
     2 object :/
     3 
     3 
     4 :organization: Logilab
     4 :organization: Logilab
     5 :copyright: 2001-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     5 :copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     6 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     6 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     7 """
     7 """
     8 __docformat__ = "restructuredtext en"
     8 __docformat__ = "restructuredtext en"
     9 
     9 
    10 from cubicweb.web import ExplicitLogin, InvalidSession
    10 from cubicweb.web import InvalidSession
    11 from cubicweb.web.application import AbstractSessionManager
    11 from cubicweb.web.application import AbstractSessionManager
    12 
    12 
    13 
    13 
    14 class InMemoryRepositorySessionManager(AbstractSessionManager):
    14 class InMemoryRepositorySessionManager(AbstractSessionManager):
    15     """manage session data associated to a session identifier"""
    15     """manage session data associated to a session identifier"""