diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-01-09 20:04:33 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-01-09 20:04:33 +0000 |
| commit | 8a109a7bc8e66548e9c47e3aa0cb5a6ea8c02e34 (patch) | |
| tree | df4a47cdffa26483c54f43c6b3983ae943b85c77 /django/views/static.py | |
| parent | 73d636f74091930af82d0fb44169f9e3fd6fa45a (diff) | |
Fixed #11757 - Set mimetype when responding with HttpResponseNotModified in django.server.static.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12141 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/views/static.py')
| -rw-r--r-- | django/views/static.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/views/static.py b/django/views/static.py index 8355950fe0..32feee8b6e 100644 --- a/django/views/static.py +++ b/django/views/static.py @@ -56,10 +56,10 @@ def serve(request, path, document_root=None, show_indexes=False): raise Http404, '"%s" does not exist' % fullpath # Respect the If-Modified-Since header. statobj = os.stat(fullpath) + mimetype = mimetypes.guess_type(fullpath)[0] or 'application/octet-stream' if not was_modified_since(request.META.get('HTTP_IF_MODIFIED_SINCE'), statobj[stat.ST_MTIME], statobj[stat.ST_SIZE]): - return HttpResponseNotModified() - mimetype = mimetypes.guess_type(fullpath)[0] or 'application/octet-stream' + return HttpResponseNotModified(mimetype=mimetype) contents = open(fullpath, 'rb').read() response = HttpResponse(contents, mimetype=mimetype) response["Last-Modified"] = http_date(statobj[stat.ST_MTIME]) |
