├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── contribute.json ├── requirements.txt ├── runtests.sh ├── session_csrf ├── __init__.py ├── models.py └── tests.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/README.rst -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/contribute.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/runtests.sh -------------------------------------------------------------------------------- /session_csrf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/session_csrf/__init__.py -------------------------------------------------------------------------------- /session_csrf/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /session_csrf/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/session_csrf/tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/django-session-csrf/HEAD/setup.py --------------------------------------------------------------------------------