├── .gitignore ├── LICENSE ├── README.rst ├── django_referrer_policy ├── __init__.py ├── middleware.py ├── runtests.py └── tests │ ├── __init__.py │ ├── test_middleware.py │ └── urls.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── setup.cfg ├── setup.py ├── test_requirements.txt └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/README.rst -------------------------------------------------------------------------------- /django_referrer_policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_referrer_policy/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/django_referrer_policy/middleware.py -------------------------------------------------------------------------------- /django_referrer_policy/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/django_referrer_policy/runtests.py -------------------------------------------------------------------------------- /django_referrer_policy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_referrer_policy/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/django_referrer_policy/tests/test_middleware.py -------------------------------------------------------------------------------- /django_referrer_policy/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/django_referrer_policy/tests/urls.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | flake8 3 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-referrer-policy/HEAD/tox.ini --------------------------------------------------------------------------------