Add author to iesg telechat minutes feed, to make it valid.

Add document comments feed to top-level urls.
 - Legacy-Id: 101
This commit is contained in:
Bill Fenner 2007-05-04 21:49:21 +00:00
parent 5fb1900540
commit f9b9b51536
2 changed files with 3 additions and 0 deletions

View file

@ -7,6 +7,7 @@ class IESGMinutes(Feed):
link = "/iesg/telechat/"
subtitle = "Minutes from IESG Telechats."
feed_type = Atom1Feed
author_name = 'IESG Secretary'
def items(self):
return TelechatMinutes.objects.order_by('-telechat_date')[:10]

View file

@ -1,10 +1,12 @@
from django.conf.urls.defaults import *
from ietf.iesg.feeds import IESGMinutes
from ietf.idtracker.feeds import DocumentComments
import ietf.views
feeds = {
'iesg_minutes': IESGMinutes,
'comments': DocumentComments,
}
urlpatterns = patterns('',