├── .gitignore ├── LICENSE ├── README.rst ├── demo ├── __init__.py ├── admin.py ├── forms.py ├── media │ └── js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-ui-1.8.7.custom.min.js │ │ ├── jquery.form.js │ │ ├── jquery.linkify.js │ │ └── jquery.tmpl.js ├── models.py ├── templates │ └── demo │ │ └── status_list.html ├── tests.py ├── urls.py └── views.py ├── requirements.txt └── src ├── __init__.py ├── media └── js │ ├── jquery-1.4.2.min.js │ ├── pubsub.client.js │ ├── pubsub.settings.js │ ├── strophe.js │ └── strophe.pubsub.js ├── models.py ├── tests.py ├── utils.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/README.rst -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/admin.py -------------------------------------------------------------------------------- /demo/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/forms.py -------------------------------------------------------------------------------- /demo/media/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/media/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /demo/media/js/jquery-ui-1.8.7.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/media/js/jquery-ui-1.8.7.custom.min.js -------------------------------------------------------------------------------- /demo/media/js/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/media/js/jquery.form.js -------------------------------------------------------------------------------- /demo/media/js/jquery.linkify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/media/js/jquery.linkify.js -------------------------------------------------------------------------------- /demo/media/js/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/media/js/jquery.tmpl.js -------------------------------------------------------------------------------- /demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/models.py -------------------------------------------------------------------------------- /demo/templates/demo/status_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/templates/demo/status_list.html -------------------------------------------------------------------------------- /demo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/tests.py -------------------------------------------------------------------------------- /demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/demo/urls.py -------------------------------------------------------------------------------- /demo/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | xmpppy 2 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/media/js/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/media/js/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /src/media/js/pubsub.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/media/js/pubsub.client.js -------------------------------------------------------------------------------- /src/media/js/pubsub.settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/media/js/pubsub.settings.js -------------------------------------------------------------------------------- /src/media/js/strophe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/media/js/strophe.js -------------------------------------------------------------------------------- /src/media/js/strophe.pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/media/js/strophe.pubsub.js -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | -------------------------------------------------------------------------------- /src/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/tests.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-pubsub/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | --------------------------------------------------------------------------------