def items(self, obj): """Items are the published entries of the author""" return entries_published(obj.entries)[:FEEDS_MAX_ITEMS]
def entries_published(self): """Return only the entries published""" return entries_published(self.entries)
def related_published(self): """Return only related entries published""" return entries_published(self.related)