Changes between Initial Version and Version 1 of Ticket #25623
- Timestamp:
- Oct 28, 2015, 9:52:13 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25623 – Description
initial v1 1 Given a URL like /Raumh%F6he .htmserved with gunicorn and waitress (maybe others as well), django raises a UnicodeDecodeError here:1 Given a URL like /Raumh%F6he served with gunicorn and waitress (maybe others as well), django raises a UnicodeDecodeError here: 2 2 3 3 https://github.com/django/django/blob/master/django/core/handlers/wsgi.py#L200 4 4 5 ... which ends up in serving a white page with a 400 (sample: https://www.djangoproject.com/Raumh%F6he .htm)5 ... which ends up in serving a white page with a 400 (sample: https://www.djangoproject.com/Raumh%F6he) 6 6 7 7 This does not happen with the built in runserver command, because it double encodes the query, as far as I understand: