diff --git a/views.py b/views.py index 8e533ff838babb57f379e88490685db30e8780ed_dmlld3MucHk=..f73fced7fcad67415dcca7c601a12263d1fe0e9d_dmlld3MucHk= 100644 --- a/views.py +++ b/views.py @@ -164,5 +164,6 @@ ## list views ################################################################# -class BlogEntryListView(baseviews.ListView): +class BlogEntryListItemView(baseviews.ListItemView): + id = 'full_list' __select__ = implements('BlogEntry') @@ -168,2 +169,3 @@ __select__ = implements('BlogEntry') + redirect_vid = 'blog' @@ -169,6 +171,6 @@ - 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') @@ -171,11 +173,9 @@ """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) @@ -178,13 +178,7 @@ 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')