Re: Syndication with kwargs from url

2007-07-26 Thread Mackenzie
Thanks for the help!!! --~--~-~--~~~---~--~~ 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 P

Re: Syndication with kwargs from url

2007-07-25 Thread Nathan Ostgard
You shouldn't be capturing the args yourself -- the syndication framework will automatically split up anything after the feed name and pass it to get_object on your Feed class. So, if "/feeds/latest/foo/ bar/" was requested, it would call your feed class with the bits ['foo', 'bar']. You can then