Re: Why are my parameters gettings mangled?

2008-05-09 Thread John M
Randy, thanks for the follow-up, and you're on the right track, turns out it's an encoding 'problem' by default in django. I just have to change the encoding language and then ask it for a different code. I got it working for what I need. John On May 8, 9:16 pm, Peter Rowell <[EMAIL

Re: Why are my parameters gettings mangled?

2008-05-08 Thread Peter Rowell
Well, I'm not quite sure exactly what is being done to it, but it appears to happen at: = django/http/__init__.py: ... class QueryDict(MultiValueDict): ... def appendlist(self, key, value): self._assert_mutable() key =

Why are my parameters gettings mangled?

2008-05-07 Thread John M
I'm trying to write a custom bittorent tracker, and the one of the main parameters (info_hash) is getting mangled in django, at least from what I can see. here is the URL for testing