├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── UNLICENSE ├── assets └── guardian-sketch.png ├── docs ├── Makefile └── source │ ├── conf.py │ └── index.rst ├── manage.py ├── requirements.txt ├── setup.py ├── sslify ├── __init__.py ├── middleware.py ├── models.py ├── tests.py └── views.py ├── test_project ├── __init__.py ├── settings.py ├── templates.py ├── urls.py └── wsgi.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/README.rst -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/UNLICENSE -------------------------------------------------------------------------------- /assets/guardian-sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/assets/guardian-sketch.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=1.8 2 | Sphinx==3.0.4 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/setup.py -------------------------------------------------------------------------------- /sslify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/sslify/__init__.py -------------------------------------------------------------------------------- /sslify/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/sslify/middleware.py -------------------------------------------------------------------------------- /sslify/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sslify/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/sslify/tests.py -------------------------------------------------------------------------------- /sslify/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/test_project/templates.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/test_project/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-sslify/HEAD/tox.ini --------------------------------------------------------------------------------