--- 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
--- 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)