web/controller.py
changeset 8190 2a3c1b787688
parent 7879 9aae456abab5
child 8258 88a7d2c49d39
equal deleted inserted replaced
8189:2ee0ef069fa7 8190:2a3c1b787688
     1 # copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     1 # copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     3 #
     3 #
     4 # This file is part of CubicWeb.
     4 # This file is part of CubicWeb.
     5 #
     5 #
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
    18 """abstract controller classe for CubicWeb web client"""
    18 """abstract controller classe for CubicWeb web client"""
    19 
    19 
    20 __docformat__ = "restructuredtext en"
    20 __docformat__ = "restructuredtext en"
    21 
    21 
    22 from logilab.mtconverter import xml_escape
    22 from logilab.mtconverter import xml_escape
    23 
    23 from logilab.common.registry import yes
    24 from cubicweb.selectors import yes
    24 
    25 from cubicweb.appobject import AppObject
    25 from cubicweb.appobject import AppObject
    26 from cubicweb.mail import format_mail
    26 from cubicweb.mail import format_mail
    27 from cubicweb.web import LOGGER, Redirect, RequestError
    27 from cubicweb.web import LOGGER, Redirect, RequestError
    28 
    28 
    29 
    29