On 3/24/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>     def items(self, obj):
>         return submissions.get_list(blog__id__exact = obj.id,
> order_by=('-date_submitted',), limit=5)
> - - - - - - - - - - - - - - - - - - - - - - - -
>
> According to the docs, the RSS framework should be calling my
> "items(self, obj):" method. Unfortunately, it seems to be only looking
> for "items(self)", which isn't there.

Hi Daniel,

This is a subtle one. In Django 0.91, the code in
django.contrib.syndication.feeds traps TypeError, and I suspect one of
the methods in your RSS class is raising a TypeError by mistake that
is being caught (and silently ignored) by the RSS framework.

Try changing the items(self, obj) to return [1, 2, 3], like so:

    def items(self, obj):
        return [1, 2, 3]

That ensures the method doesn't raise TypeError. If you get the same
error, do the same with the other methods on the RSS class until you
pinpoint the one that's raising TypeError.

By the way, this silent trapping of TypeError was fixed in Django's
development version a while ago, so, if all else fails, just upgrade
to the development (Subversion) version, and you should get a clearer
error. Hope this makes sense!

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to