Re: Feed URLs

2007-09-05 Thread Luke Plant
> But you can get the querystring easily enough by using the > dictionary : request.GET ? Yes, but I can't tell Django's Feed class to use this information, that's the problem. Luke -- Luke Plant - L.Plant.98 at cantab.net --~--~-~--~~~---~--~~ You received th

Re: Feed URLs

2007-09-04 Thread jorjun
Hi Luke But you can get the querystring easily enough by using the dictionary : request.GET ? Regards Peter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send

Feed URLs

2007-09-03 Thread Luke Plant
In r5654, Feed.__init__() changed to accept a request object instead of the feed URL. It then calculates the feed URL as 'request.path'. The problem is that my URLs for feeds include a querystring part (e.g. ?format=atom), and this used to be possible with the previous API. The following fix