├── .github └── workflows │ └── test.yml ├── .gitignore ├── .hgignore ├── LICENCE ├── MANIFEST.in ├── README.rst ├── django_push ├── __init__.py ├── publisher │ ├── __init__.py │ └── feeds.py └── subscriber │ ├── __init__.py │ ├── admin.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── publisher.rst └── subscriber.rst ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── publisher │ ├── __init__.py │ ├── feeds.py │ ├── models.py │ ├── tests.py │ └── urls.py ├── settings.py └── subscribe │ ├── __init__.py │ ├── models.py │ └── tests.py └── tox.ini /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | dist 4 | .coverage 5 | htmlcov 6 | .tox 7 | build 8 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/.hgignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/README.rst -------------------------------------------------------------------------------- /django_push/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/__init__.py -------------------------------------------------------------------------------- /django_push/publisher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/publisher/__init__.py -------------------------------------------------------------------------------- /django_push/publisher/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/publisher/feeds.py -------------------------------------------------------------------------------- /django_push/subscriber/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_push/subscriber/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/subscriber/admin.py -------------------------------------------------------------------------------- /django_push/subscriber/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/subscriber/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_push/subscriber/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_push/subscriber/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/subscriber/models.py -------------------------------------------------------------------------------- /django_push/subscriber/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/subscriber/signals.py -------------------------------------------------------------------------------- /django_push/subscriber/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/subscriber/urls.py -------------------------------------------------------------------------------- /django_push/subscriber/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/subscriber/utils.py -------------------------------------------------------------------------------- /django_push/subscriber/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/django_push/subscriber/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/publisher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/docs/publisher.rst -------------------------------------------------------------------------------- /docs/subscriber.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/docs/subscriber.rst -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/publisher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/publisher/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/tests/publisher/feeds.py -------------------------------------------------------------------------------- /tests/publisher/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/publisher/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/tests/publisher/tests.py -------------------------------------------------------------------------------- /tests/publisher/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/tests/publisher/urls.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/subscribe/__init__.py: -------------------------------------------------------------------------------- 1 | def credentials(hub_url): 2 | return ('username', 'password') 3 | -------------------------------------------------------------------------------- /tests/subscribe/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/subscribe/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/tests/subscribe/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/django-push/HEAD/tox.ini --------------------------------------------------------------------------------