├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── examples └── protected_downloads │ ├── __init__.py │ ├── download │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── sendfile │ ├── settings.py │ ├── templates │ └── download │ │ └── download_list.html │ └── urls.py ├── sendfile ├── __init__.py ├── backends │ ├── __init__.py │ ├── _internalredirect.py │ ├── development.py │ ├── mod_wsgi.py │ ├── nginx.py │ ├── simple.py │ └── xsendfile.py ├── models.py └── tests.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/README.rst -------------------------------------------------------------------------------- /examples/protected_downloads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/protected_downloads/download/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/protected_downloads/download/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/download/admin.py -------------------------------------------------------------------------------- /examples/protected_downloads/download/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/download/models.py -------------------------------------------------------------------------------- /examples/protected_downloads/download/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/download/tests.py -------------------------------------------------------------------------------- /examples/protected_downloads/download/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/download/urls.py -------------------------------------------------------------------------------- /examples/protected_downloads/download/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/download/views.py -------------------------------------------------------------------------------- /examples/protected_downloads/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/manage.py -------------------------------------------------------------------------------- /examples/protected_downloads/sendfile: -------------------------------------------------------------------------------- 1 | ../../sendfile -------------------------------------------------------------------------------- /examples/protected_downloads/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/settings.py -------------------------------------------------------------------------------- /examples/protected_downloads/templates/download/download_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/templates/download/download_list.html -------------------------------------------------------------------------------- /examples/protected_downloads/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/examples/protected_downloads/urls.py -------------------------------------------------------------------------------- /sendfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/__init__.py -------------------------------------------------------------------------------- /sendfile/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sendfile/backends/_internalredirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/backends/_internalredirect.py -------------------------------------------------------------------------------- /sendfile/backends/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/backends/development.py -------------------------------------------------------------------------------- /sendfile/backends/mod_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/backends/mod_wsgi.py -------------------------------------------------------------------------------- /sendfile/backends/nginx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/backends/nginx.py -------------------------------------------------------------------------------- /sendfile/backends/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/backends/simple.py -------------------------------------------------------------------------------- /sendfile/backends/xsendfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/backends/xsendfile.py -------------------------------------------------------------------------------- /sendfile/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sendfile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/sendfile/tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsensible/django-sendfile/HEAD/setup.py --------------------------------------------------------------------------------