Exemple #1
0
 def getFeedUrl(self):
     section = Alinea_getSectionWithID(self.sectionID)
     return section.public_url()
Exemple #2
0
 def getArticles(self,orderBy='date'):
     " return the last 10 articles "
     section = Alinea_getSectionWithID(self.sectionID)
     articles = section.getArticles()
     articles.reverse()
     return articles[:10]