You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
could manually look for this and adjust but that's kinda meh and doesn't solve the issue:
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)
The text was updated successfully, but these errors were encountered:
urls that are encoded get passed to /ur/encoded_url
the encoded_url always yeilds:
http://google.com -> http:/google.com
// -> / for some reason.
admin interface submission is fine (right to model) something is just off with lighttpd+request parsing !?
djang-user google group link: http://groups.google.com/group/django-users/browse_thread/thread/76919b39159b66db
could manually look for this and adjust but that's kinda meh and doesn't solve the issue:
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)
The text was updated successfully, but these errors were encountered: