diff -r e651d5f24cb5 -r b01dd0ef43aa cubicweb/web/box.py --- a/cubicweb/web/box.py Wed Mar 13 13:37:49 2019 +0100 +++ b/cubicweb/web/box.py Thu Mar 14 14:43:18 2019 +0100 @@ -23,7 +23,7 @@ from six import add_metaclass from logilab.mtconverter import xml_escape -from logilab.common.deprecation import class_deprecated, class_renamed +from logilab.common.deprecation import class_deprecated from cubicweb import Unauthorized, role as get_role from cubicweb.schema import display_name @@ -33,7 +33,6 @@ RawBoxItem) from cubicweb.web.action import UnregisteredAction from cubicweb.web.component import ( - AjaxEditRelationCtxComponent, EditRelationMixIn, Separator, ) @@ -195,8 +194,3 @@ label = super(EditRelationBoxTemplate, self).box_item( entity, etarget, rql, label) return RawBoxItem(label, liclass=u'invisible') - - -AjaxEditRelationBoxTemplate = class_renamed( - 'AjaxEditRelationBoxTemplate', AjaxEditRelationCtxComponent, - '[3.10] AjaxEditRelationBoxTemplate has been renamed to AjaxEditRelationCtxComponent (%(cls)s)')