This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mimetypes | |
import time | |
from os.path import splitext | |
from django.contrib.staticfiles.storage import staticfiles_storage | |
from django.http import HttpResponse, FileResponse, HttpResponseNotAllowed, Http404 | |
from django.core.exceptions import SuspiciousFileOperation | |
from django.conf import settings | |
from django.utils.six import text_type | |
from django.utils.http import http_date |
NewerOlder