Just to verify, to get something like the "complex example" of the docs
(http://www.djangoproject.com/documentation/syndication/) to work --
where feeds publish different data for different URL parameters -- is
there anything special you need to do to the URLConf regex? Is

(r'^rss/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
{'feed_dict': feeds}),

with a URL like:

http://www.foo.com/rss/the_slug/11344/bar/

and this from the URLConf:

feeds = {
    'rss': CustomRSS,
}

supposed to work?

It's my understanding that in the above URL "the_slug" is the slug and
anything after that should be shipped off in a list (i.e., ['11344',
'bar']) to get_objects(self, bits). Yes? Mebbe?

I keep getting a 404 with this message:
"Invalid feed parameters. Slug 'the_slug' is valid, but other
parameters, or lack thereof, are not."

John H.


--~--~---------~--~----~------------~-------~--~----~
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