Re: Syndication and authentication question

2006-07-22 Thread Ian Holsman
I did it like this on economy-chat.comfirst.. every link to the feed itself is unique, based on User-ID or session key.i have the following in my urls.py  (r'^feed/atom/(?P\d+)/(?P\d+)/(?P.+)/$', 'atomfeed'),  (r'^feed/atom/(?P\w+)/$', 'atomfeed'),  and the atomfeed view itself isdef atomfeed(reque

Re: Syndication and authentication question

2006-07-21 Thread Malcolm Tredinnick
On Fri, 2006-07-21 at 23:25 -0700, afarnham wrote: > I am messing with feeds for the first time with Django and was > wondering if there is anyway to do authentication (i.e. grab the > session) from inside the my Feed class? I followed the high level > framework example from the documentation page

Syndication and authentication question

2006-07-21 Thread afarnham
I am messing with feeds for the first time with Django and was wondering if there is anyway to do authentication (i.e. grab the session) from inside the my Feed class? I followed the high level framework example from the documentation page if that helps in understanding how I implemented this feed