#10359: Feed class reference contains false info
---------------------------+------------------------------------------------
 Reporter:  minder         |       Owner:  nobody    
   Status:  new            |   Milestone:            
Component:  Documentation  |     Version:  1.0       
 Keywords:                 |       Stage:  Unreviewed
Has_patch:  0              |  
---------------------------+------------------------------------------------
 http://docs.djangoproject.com/en/dev/ref/contrib/syndication/#feed-class-
 reference

 I noticed this when I tried to make feed from objects that do not have
 get_absolute_url method (short messages for frontpage that don't need to
 have their own pages). I wrote item_link so that it points to the page
 that displayed recent messages but it turned out, that the feed readers
 were displaying only the last message - both rss and atom. It turned out
 this was caused by the lack of unique id for each item in the feed.

 The only way to make unique ids I could find in the docs was item_guid
 method (it returns obj.id in my case) but the docs clearly state that this
 method is '''only''' used in atom feeds. It is not. I tried it with RSS
 feed and it worked.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/10359>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to