<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -13,6 +13,9 @@ class AllFeed(Feed):
 
     def items(self):
         return Entry.current.all().order_by('-pub_date')[:25]
+    
+    def item_pubdate(self, item):
+        return item.pub_date
 
 
 
@@ -37,6 +40,9 @@ class FlowFeed(Feed):
 
     def items(self, obj):
         return obj.latest(qty=25)
+    
+    def item_pubdate(self, item):
+        return item.pub_date
 
 
 
@@ -63,6 +69,9 @@ class TagFeed(Feed):
         return obj.latest()
 
 
+    def item_pubdate(self, item):
+        return item.pub_date
+
 
 class AuthorFeed(Feed):
     def get_object(self, bits):
@@ -90,6 +99,9 @@ class AuthorFeed(Feed):
         return obj.latest()
 
 
+    def item_pubdate(self, item):
+        return item.pub_date
+
 
 class LanguageFeed(Feed):
     def get_object(self, bits):
@@ -115,6 +127,10 @@ class LanguageFeed(Feed):
     
     def items(self, obj):
         return obj.latest()
+    
+    
+    def item_pubdate(self, item):
+        return item.pub_date
 
 
 
@@ -139,6 +155,10 @@ class SeriesFeed(Feed):
     
     def items(self, obj):
         return obj.latest()
+        
+        
+    def item_pubdate(self, item):
+        return item.pub_date
 
 
 
@@ -151,6 +171,10 @@ class TranslationFeed(Feed):
 
     def items(self):
         return Entry.objects.all().filter(**{'pub_date__lte': datetime.datetime.now()}).filter(**{'is_translation':True})
+    
+    
+    def item_pubdate(self, item):
+        return item.pub_date
 
 
 
@@ -175,6 +199,10 @@ class CommentFeed(Feed):
 
     def items(self):
         return Comment.objects.all().order_by('-date',)[:20]
+        
+    
+    def item_pubdate(self, item):
+        return item.date
 
 
 
@@ -205,3 +233,8 @@ class EntryCommentFeed(Feed):
     
     def items(self, obj):
         return obj.comment_set.all().order_by('-date')
+        
+    
+    def item_pubdate(self, item):
+        return item.date
+    </diff>
      <filename>feeds.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c38be9682b16ec1df7db9a70cd3183bf39174719</id>
    </parent>
  </parents>
  <author>
    <name>Luke Hatcher</name>
    <email>lukeman@gmail.com</email>
  </author>
  <url>http://github.com/lethain/lifeflow/commit/36f7cc63f3ce03ca0bcdd3f7d5634b41a9f00df7</url>
  <id>36f7cc63f3ce03ca0bcdd3f7d5634b41a9f00df7</id>
  <committed-date>2008-07-03T14:58:20-07:00</committed-date>
  <authored-date>2008-07-03T14:58:20-07:00</authored-date>
  <message>Updated feeds.py to include published dates on Entry feeds. See http://lifeflow.lighthouseapp.com/projects/12083/tickets/54-rss-feeds-not-offering-published-date</message>
  <tree>eb1cbb0eac01b8b440b69d2c82876128bac07a43</tree>
  <committer>
    <name>Luke Hatcher</name>
    <email>lukeman@gmail.com</email>
  </committer>
</commit>
