sobjects/notification.py
changeset 8190 2a3c1b787688
parent 7879 9aae456abab5
child 8897 11f7ccd2fa72
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
    22 
    22 
    23 from itertools import repeat
    23 from itertools import repeat
    24 
    24 
    25 from logilab.common.textutils import normalize_text
    25 from logilab.common.textutils import normalize_text
    26 from logilab.common.deprecation import class_renamed, class_moved, deprecated
    26 from logilab.common.deprecation import class_renamed, class_moved, deprecated
    27 
    27 from logilab.common.registry import yes
    28 from cubicweb.selectors import yes
    28 
    29 from cubicweb.view import Component
    29 from cubicweb.view import Component
    30 from cubicweb.mail import NotificationView as BaseNotificationView, SkipEmail
    30 from cubicweb.mail import NotificationView as BaseNotificationView, SkipEmail
    31 from cubicweb.server.hook import SendMailOp
    31 from cubicweb.server.hook import SendMailOp
    32 
    32 
    33 
    33