django-sendfile
django-sendfile copied to clipboard
xsendfile etc wrapper
This change makes `django-sendfile` work with Django 4.0, including tests.
This fixes issue #49. In Python 3 the result of `str.encode()` is `bytes` and so `"something %s" % (b'else') == `"something b'else'"`, which `2to3` does not catch because of the...
Closes #74
Please tell users that there is a maintained version: https://github.com/moggers87/django-sendfile2 Somehow google still shows your project first.
Hello, Many years ago I made some changes for the sole purpose of integrating this module into both personal and professional projects that are running on Amazon Web Services and...
Hey @johnsensible , are you still maintaining this package?
Django 2.1 and above has removed the permalink() decorator. examples/protected_downloads/download/models.py contains @permalink Just a note, in case you want to update your example application for modern versions of Django.
There is a small typo in README.rst. Should read `directory` rather than `directoy`.
This commit adds new argument that enables inline attachment in Content-Disposition. This enables user to have file displayed inline and force filename via attachment_filename.
Apache 2.4 is not supported officially by mod_xsendfile, but it seems the `EnableSendfile on` configuration option that ships with my Apache 2.4 installation accomplishes the same thing. Switching to `SENDFILE_BACKEND...