Re: django and fastcgi losing some info in request data

2011-04-26 Thread xiao_haozi
FOUND: http://groups.google.com/group/django-users/msg/76718270ffed9696?pli=1 link for future reference. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this

Re: django and fastcgi losing some info in request data

2011-04-26 Thread xiao_haozi
sorry... was doing some more digging. Seems the problem is exclusive to // scenarios. doing somethign like this: http://mydomain/url/http%3A%21%21wikipedia.com/ gives me the proper : http:!!wikipedia.com etc etc so any clue why it would be exclusively stripping out one / from // ? -- You receiv

Re: django and fastcgi losing some info in request data

2011-04-25 Thread xiao_haozi
I could just manually check and add it before working with the model like: stump_split = list(this_stump.partition(":")) if stump_split[1] and not stump_split[2].startswith("//"): stump_split[2] = "/"+stump_split[2] this_stump = ''.join(stump_split)

django and fastcgi losing some info in request data

2011-04-25 Thread xiao_haozi
Hi all- I have a problem that is driving me to the brink of insanity. I'll preface this with the fact that running the built-in server everything works fine. I encounter this issue running it via fastcgi and lighttpd. I will paste in all relevant info at the bottom. In short, the workflow scheme