diff -r 6f9003a32ecc -r 375c857aa0f5 web/views/bookmark.py --- a/web/views/bookmark.py Mon May 04 12:53:42 2009 +0200 +++ b/web/views/bookmark.py Mon May 04 12:53:59 2009 +0200 @@ -12,7 +12,7 @@ from cubicweb.selectors import implements from cubicweb.web.htmlwidgets import BoxWidget, BoxMenu, RawBoxItem from cubicweb.web import uicfg, action, box, formwidgets -from cubicweb.web.views.baseviews import PrimaryView +from cubicweb.web.views import primary uicfg.rcategories.tag_relation('primary', ('Bookmark', 'path', '*'), 'subject') uicfg.rwidgets.tag_relation(formwidgets.TextInput, ('Bookmark', 'path', '*'), 'subject') @@ -29,7 +29,7 @@ return self.rset.get_entity(self.row or 0, self.col or 0).actual_url() -class BookmarkPrimaryView(PrimaryView): +class BookmarkPrimaryView(primary.PrimaryView): __select__ = implements('Bookmark') def cell_call(self, row, col):