Changes between Initial Version and Version 1 of Ticket #25623


Ignore:
Timestamp:
Oct 28, 2015, 9:52:13 AM (8 years ago)
Author:
Christian Peters
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25623 – Description

    initial v1  
    1 Given a URL like /Raumh%F6he.htm served with gunicorn and waitress (maybe others as well), django raises a UnicodeDecodeError here:
     1Given a URL like /Raumh%F6he served with gunicorn and waitress (maybe others as well), django raises a UnicodeDecodeError here:
    22
    33https://github.com/django/django/blob/master/django/core/handlers/wsgi.py#L200
    44
    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)
    66
    77This does not happen with the built in runserver command, because it double encodes the query, as far as I understand:
Back to Top