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