diff options
| author | Fabian Büchler | 2012-11-27 10:13:15 +0100 |
|---|---|---|
| committer | Fabian Büchler | 2012-11-27 10:13:15 +0100 |
| commit | 731443b71eaa94a624952bb4ea5b142ac884cccb (patch) | |
| tree | 108f1d69b1cf698abbc0d979ba6719f6a5e6d989 /rest_framework/pagination.py | |
| parent | fd89bca35f065cd3917fffc79b59927460a88a3a (diff) | |
| download | django-rest-framework-731443b71eaa94a624952bb4ea5b142ac884cccb.tar.bz2 | |
Renderer negotiation: media_type specificty evaluation weak
The `DefaultContentNegotiation` handler uses
For example: Google Chrome sends an Accept-header of `Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8`, when I request a *.png URL.
After matching the media-types with the available renderers (in my case only a custom `PNGRenderer` with a `media_type='image/png'`), only `*/*;q=0.8` is left, which happens to have the same length as the "image/png" media-type defined by the renderer (9 characters).
The specificity of the renderer's media-type over the Accept-header's one is only determined by length.
Using your `_MediaType.precedence` would be preferable in my eyes.
Regards, Fabian
Diffstat (limited to 'rest_framework/pagination.py')
0 files changed, 0 insertions, 0 deletions
