# HG changeset patch # User sylvain.thenault@logilab.fr # Date 1235080742 -3600 # Node ID 0b31dbac64596f0ad744d9598d025e2b2ecc800b # Parent 168ad6d424d1fed88eeab4277e5d05532972f456 more bw compat diff -r 168ad6d424d1 -r 0b31dbac6459 common/entity.py --- a/common/entity.py Thu Feb 19 22:48:50 2009 +0100 +++ b/common/entity.py Thu Feb 19 22:59:02 2009 +0100 @@ -1,3 +1,4 @@ from warnings import warn warn('moved to cubicweb.entity', DeprecationWarning, stacklevel=2) from cubicweb.entity import * +from cubicweb.entity import _marker diff -r 168ad6d424d1 -r 0b31dbac6459 web/views/actions.py --- a/web/views/actions.py Thu Feb 19 22:48:50 2009 +0100 +++ b/web/views/actions.py Thu Feb 19 22:59:02 2009 +0100 @@ -276,3 +276,8 @@ def url(self): return self.build_url(self.id) + + +from logilab.common.deprecation import class_moved +from cubicweb.web.views.bookmark import FollowAction +FollowAction = class_moved(FollowAction)