We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On colab/rss/feeds.py: class LatestThreadsFeeds(Feed): title = _(u'Latest Discussions') link = '/rss/threads/latest/'
def items(self): return Thread.objects.all()[:20]
def item_link(self, item): return item.latest_message.url
def item_title(self, item): title = '[' + item.mailinglist.name + '] ' title += item.latest_message.subject_clean return title
def item_description(self, item): return item.latest_message.body
class HottestThreadsFeeds(Feed): title = _(u'Discussions Most Relevance') link = '/rss/threads/hottest/'
def items(self): return Thread.highest_score.all()[:20]
Thread comes from super_archives. figure out a way of doing with plugin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On colab/rss/feeds.py:
class LatestThreadsFeeds(Feed):
title = _(u'Latest Discussions')
link = '/rss/threads/latest/'
def items(self):
return Thread.objects.all()[:20]
def item_link(self, item):
return item.latest_message.url
def item_title(self, item):
title = '[' + item.mailinglist.name + '] '
title += item.latest_message.subject_clean
return title
def item_description(self, item):
return item.latest_message.body
class HottestThreadsFeeds(Feed):
title = _(u'Discussions Most Relevance')
link = '/rss/threads/hottest/'
def items(self):
return Thread.highest_score.all()[:20]
Thread comes from super_archives. figure out a way of doing with plugin
The text was updated successfully, but these errors were encountered: