Ejemplo n.º 1
0
 def items(self, obj):
     """Items are the published entries of the author"""
     return entries_published(obj.entries)[:FEEDS_MAX_ITEMS]
Ejemplo n.º 2
0
 def entries_published(self):
     """Return only the entries published"""
     return entries_published(self.entries)
Ejemplo n.º 3
0
 def related_published(self):
     """Return only related entries published"""
     return entries_published(self.related)
Ejemplo n.º 4
0
 def items(self, obj):
     """Items are the published entries of the author"""
     return entries_published(obj.entries)[:FEEDS_MAX_ITEMS]
Ejemplo n.º 5
0
 def entries_published(self):
     """Return only the entries published"""
     return entries_published(self.entries)
Ejemplo n.º 6
0
 def related_published(self):
     """Return only related entries published"""
     return entries_published(self.related)