Lots of changes to fix lots of bugs and add comments to blog
[sommitrealweird.git] / sommitrealweird / blog / feeds.py
index be04190f7b07d19f52b3d8699895cb82ffe864e5..69eb81fe346d323dacb11add90740623ae66e7e4 100644 (file)
@@ -3,8 +3,7 @@ from django.utils.feedgenerator import Atom1Feed
 from blog.models import BlogEntry
 from django.conf import settings
 
-class LatestBlogEntries(Feed):
-    feed_type = Atom1Feed
+class LatestBlogEntriesRss(Feed):
     title = settings.BLOG_TITLE
     description = u'Updates on %s' %(title,)
     link = settings.BLOG_ROOT
@@ -24,5 +23,15 @@ class LatestBlogEntries(Feed):
     def author_email(self, obj):
         return "iDunno@sommitrealweird.co.uk"
 
+    def item_author_name(self, obj):
+        return "Brett Parker"
+
+    def item_author_email(self, obj):
+        return "iDunno@sommitrealweird.co.uk"
+
     def item_pubdate(self, obj):
         return obj.publish_date
+
+class LatestBlogEntries(LatestBlogEntriesRss):
+    feed_type = Atom1Feed
+    subtitle = LatestBlogEntriesRss.description