diff -r 7769d0f61810 -r 8391bf718485 web/views/idownloadable.py --- a/web/views/idownloadable.py Fri May 02 17:41:11 2014 +0200 +++ b/web/views/idownloadable.py Fri May 02 17:57:37 2014 +0200 @@ -1,4 +1,4 @@ -# copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved. +# copyright 2003-2014 LOGILAB S.A. (Paris, FRANCE), all rights reserved. # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr # # This file is part of CubicWeb. @@ -34,23 +34,6 @@ from cubicweb.web.views import primary, baseviews -@deprecated('[3.10] use a custom IDownloadable adapter instead') -def download_box(w, entity, title=None, label=None, footer=u''): - req = entity._cw - w(u'\n') - - class DownloadBox(component.EntityCtxComponent): """add download box""" __regid__ = 'download_box' # no download box for images @@ -175,10 +158,6 @@ self.w(u'%s [%s]' % (url, name, durl, self._cw._('download'))) -IDownloadableLineView = class_renamed( - 'IDownloadableLineView', IDownloadableOneLineView, - '[3.10] IDownloadableLineView is deprecated, use IDownloadableOneLineView') - class AbstractEmbeddedView(EntityView): __abstract__ = True