Lots of changes to fix lots of bugs and add comments to blog
[sommitrealweird.git] / sommitrealweird / blog / feeds.py
index d08456f1564ea3aaf98368a119f050ab9851f521..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
@@ -18,5 +17,21 @@ class LatestBlogEntries(Feed):
         except:
             return BlogEntry.objects.all().order_by('-publish_date')
 
+    def author_name(self, obj):
+        return "Brett Parker"
+
+    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