# HG changeset patch # User Sylvain Thénault <sylvain.thenault@logilab.fr> # Date 1245857401 -7200 # Wed Jun 24 17:30:01 2009 +0200 # Node ID f73fced7fcad67415dcca7c601a12263d1fe0e9d # Parent 8e533ff838babb57f379e88490685db30e8780ed hack on the list view has been replaced by the full_list view diff --git a/views.py b/views.py --- a/views.py +++ b/views.py @@ -164,27 +164,21 @@ ## list views ################################################################# -class BlogEntryListView(baseviews.ListView): +class BlogEntryListItemView(baseviews.ListItemView): + id = 'full_list' __select__ = implements('BlogEntry') + redirect_vid = 'blog' - def call(self, klass='invisible', title=None, **kwargs): + def call(self, **kwargs): """display a list of entities by calling their <item_vid> view """ entity = self.entity(0,0) self.req.add_css('cubes.blog.css') - # XXX: no title if subvid specified to try to avoid cases where we want - # the original list view... - if title is None and not ('vtitle' in self.req.form or 'subvid' in kwargs): + if not 'vtitle' in self.req.form: self.w(u'<h1>%s</h1>' % display_name(self.req, 'BlogEntry', form='plural')) super(BlogEntryListView, self).call(klass=klass, **kwargs) -class BlogEntryListItemView(baseviews.ListItemView): - id = 'full_list' - __select__ = implements('BlogEntry') - redirect_vid = 'blog' - - class BlogEntryBlogView(baseviews.ListItemView): id = 'blog' __select__ = implements('BlogEntry')