├── .gitignore ├── LICENSE ├── README.rst ├── protected_files ├── __init__.py ├── models.py ├── tests │ ├── __init__.py │ ├── tests.py │ └── urls.py └── views.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-protected-files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-protected-files/HEAD/README.rst -------------------------------------------------------------------------------- /protected_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected_files/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected_files/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from tests import * -------------------------------------------------------------------------------- /protected_files/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-protected-files/HEAD/protected_files/tests/tests.py -------------------------------------------------------------------------------- /protected_files/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-protected-files/HEAD/protected_files/tests/urls.py -------------------------------------------------------------------------------- /protected_files/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-protected-files/HEAD/protected_files/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lincolnloop/django-protected-files/HEAD/setup.py --------------------------------------------------------------------------------