├── .bumpversion.cfg ├── .coveragerc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ └── ---feature-request.md ├── pull_request_template.md └── workflows │ ├── codeql.yml │ ├── lint.yml │ ├── logger.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── changes ├── .directory ├── 35.bugfix └── 47.feature ├── cms_helper.py ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── knocker ├── __init__.py ├── consumers.py ├── mixins.py ├── models.py ├── routing.py ├── signals.py └── static │ └── js │ └── knocker.js ├── pyproject.toml ├── requirements-test.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tasks.py ├── tests ├── __init__.py ├── base.py ├── example_app │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180520_1744.py │ │ └── __init__.py │ ├── models.py │ ├── routing.py │ ├── templates │ │ └── example_app │ │ │ ├── post_detail.html │ │ │ └── post_list.html │ ├── urls.py │ └── views.py ├── test_consumers.py └── test_models.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/logger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/workflows/logger.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/README.rst -------------------------------------------------------------------------------- /changes/.directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /changes/35.bugfix: -------------------------------------------------------------------------------- 1 | Align tox.ini and github actions test environments 2 | -------------------------------------------------------------------------------- /changes/47.feature: -------------------------------------------------------------------------------- 1 | Switch to Coveralls Github action 2 | -------------------------------------------------------------------------------- /cms_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/cms_helper.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/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/nephila/django-knocker/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /knocker/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.1" 2 | -------------------------------------------------------------------------------- /knocker/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/knocker/consumers.py -------------------------------------------------------------------------------- /knocker/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/knocker/mixins.py -------------------------------------------------------------------------------- /knocker/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /knocker/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/knocker/routing.py -------------------------------------------------------------------------------- /knocker/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/knocker/signals.py -------------------------------------------------------------------------------- /knocker/static/js/knocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/knocker/static/js/knocker.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/example_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/example_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/admin.py -------------------------------------------------------------------------------- /tests/example_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/example_app/migrations/0002_auto_20180520_1744.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/migrations/0002_auto_20180520_1744.py -------------------------------------------------------------------------------- /tests/example_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/example_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/models.py -------------------------------------------------------------------------------- /tests/example_app/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/routing.py -------------------------------------------------------------------------------- /tests/example_app/templates/example_app/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/templates/example_app/post_detail.html -------------------------------------------------------------------------------- /tests/example_app/templates/example_app/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/templates/example_app/post_list.html -------------------------------------------------------------------------------- /tests/example_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/urls.py -------------------------------------------------------------------------------- /tests/example_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/example_app/views.py -------------------------------------------------------------------------------- /tests/test_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/test_consumers.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nephila/django-knocker/HEAD/tox.ini --------------------------------------------------------------------------------