from django.contrib.auth.forms import UserChangeForm
 from django.core.exceptions import ObjectDoesNotExist
 from django.contrib.syndication.views import Feed
-from django.core.servers.basehttp import FileWrapper
 from django.core.urlresolvers import reverse, reverse_lazy
 from django.contrib.contenttypes.models import ContentType
 from django.views.decorators.http import condition
     cache_tmp = TelemetaCache(getattr(settings, 'FILE_UPLOAD_TEMP_DIR', os.path.join(MEDIA_ROOT, 'tmp')))
 
 
-class FixedFileWrapper(FileWrapper):
-
-    def __iter__(self):
-        self.filelike.seek(0)
-        return self
-
-
-def send_file(request, filename, content_type='image/jpeg'):
-    """
-    Send a file through Django without loading the whole file into
-    memory at once. The FileWrapper will turn the file object into an
-    iterator for chunks of 8KB.
-    """
-    wrapper = FixedFileWrapper(file(filename, 'rb'))
-    response = StreamingHttpResponse(wrapper, content_type=content_type)
-    response['Content-Length'] = os.path.getsize(filename)
-    return response
-
-
 def serve_media(filename, content_type="", buffering=True):
     if True:
         return nginx_media_accel(filename, content_type=content_type,