├── .coveragerc ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .isort.cfg ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── lock_tokens ├── .DS_Store ├── __init__.py ├── admin.py ├── apps.py ├── decorators.py ├── exceptions.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── remove_expired_locks.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_locktoken_created.py │ └── __init__.py ├── models.py ├── sessions.py ├── settings.py ├── static │ └── lock_tokens │ │ └── js │ │ └── lock_tokens.js ├── templates │ ├── admin │ │ ├── handle_lock.html │ │ └── lock_tokens_change_form.html │ └── api │ │ └── load_client.html ├── templatetags │ ├── __init__.py │ └── lock_tokens_tags.py ├── urls.py ├── utils.py └── views.py ├── requirements_dev.txt ├── requirements_test.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── admin.py ├── models.py ├── settings.py ├── test_admin.py ├── test_api.py ├── test_models.py ├── test_sessions.py ├── tests.py ├── urls.py └── views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /lock_tokens/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/.DS_Store -------------------------------------------------------------------------------- /lock_tokens/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.5" 2 | -------------------------------------------------------------------------------- /lock_tokens/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/admin.py -------------------------------------------------------------------------------- /lock_tokens/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/apps.py -------------------------------------------------------------------------------- /lock_tokens/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/decorators.py -------------------------------------------------------------------------------- /lock_tokens/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/exceptions.py -------------------------------------------------------------------------------- /lock_tokens/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lock_tokens/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lock_tokens/management/commands/remove_expired_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/management/commands/remove_expired_locks.py -------------------------------------------------------------------------------- /lock_tokens/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/managers.py -------------------------------------------------------------------------------- /lock_tokens/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/migrations/0001_initial.py -------------------------------------------------------------------------------- /lock_tokens/migrations/0002_locktoken_created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/migrations/0002_locktoken_created.py -------------------------------------------------------------------------------- /lock_tokens/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lock_tokens/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/models.py -------------------------------------------------------------------------------- /lock_tokens/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/sessions.py -------------------------------------------------------------------------------- /lock_tokens/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/settings.py -------------------------------------------------------------------------------- /lock_tokens/static/lock_tokens/js/lock_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/static/lock_tokens/js/lock_tokens.js -------------------------------------------------------------------------------- /lock_tokens/templates/admin/handle_lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/templates/admin/handle_lock.html -------------------------------------------------------------------------------- /lock_tokens/templates/admin/lock_tokens_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/templates/admin/lock_tokens_change_form.html -------------------------------------------------------------------------------- /lock_tokens/templates/api/load_client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/templates/api/load_client.html -------------------------------------------------------------------------------- /lock_tokens/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lock_tokens/templatetags/lock_tokens_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/templatetags/lock_tokens_tags.py -------------------------------------------------------------------------------- /lock_tokens/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/urls.py -------------------------------------------------------------------------------- /lock_tokens/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/utils.py -------------------------------------------------------------------------------- /lock_tokens/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/lock_tokens/views.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/admin.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/test_sessions.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rparent/django-lock-tokens/HEAD/tox.ini --------------------------------------------------------------------------------