Re: rss feed question

2011-06-24 Thread Kevin Anthony
http://www.feedparser.org/ On Sat, Jun 25, 2011 at 12:21 AM, raj wrote: > I was trying to follow the following guide: > https://docs.djangoproject.com/en/dev/ref/contrib/syndication/?from=olddocs > and I had some questions. > > I'm not quite sure, but it seems like this

rss feed question

2011-06-24 Thread raj
I was trying to follow the following guide: https://docs.djangoproject.com/en/dev/ref/contrib/syndication/?from=olddocs and I had some questions. I'm not quite sure, but it seems like this guide is showing how to create your own feed. How would I go about retrieving the feed instead of creating

Re: Feed question

2007-08-13 Thread [EMAIL PROTECTED]
That looks like it... thanks! On Aug 12, 8:10 pm, Collin Grady <[EMAIL PROTECTED]> wrote: > http://www.djangoproject.com/documentation/syndication_feeds/#a-compl... > > The example here is pretty much what you want, you just need to change > how you lookup the objects for the feed.

Re: Feed question

2007-08-12 Thread Collin Grady
http://www.djangoproject.com/documentation/syndication_feeds/#a-complex-example The example here is pretty much what you want, you just need to change how you lookup the objects for the feed. --~--~-~--~~~---~--~~ You received this message because you are

Feed question

2007-08-10 Thread [EMAIL PROTECTED]
I have an events model, and a feed for it - shows all events Events has a foreign key relationship with Club. What I'd like to do is have a feed for each club, but I'm not sure how to get that into a feed without explicitly defining it for each club. Say I have two clubs, Foo and Bar, I want