Newer
Older
"""Comment notification hooks
:organization: Logilab
:copyright: 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
"""
__docformat__ = "restructuredtext en"
from cubicweb import RegistryException
from cubicweb.selectors import implements
from cubicweb.sobjects import notification
class CommentAddedView(notification.NotificationView):
__regid__ = 'notif_after_add_relation_comments'
root = self.cw_rset.get_entity(self.cw_row, self.cw_col).cw_adapt_to('ITree').root()
return '%s %s %s' % (self._cw._('new comment for'),
view = self._cw.vreg['views'].select('fullthreadtext', self._cw,
rset=self.cw_rset, row=row, col=col)
return view.render(row=row, col=col, w=self.w, **kwargs)