├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── __init__.py ├── distributors ├── __init__.py ├── cache.py ├── clean.py ├── coffeescript.py ├── dist.py ├── downloads.py ├── settings.py ├── urlobject │ ├── __init__.py │ ├── netloc.py │ ├── path.py │ ├── ports.py │ ├── query_string.py │ └── urlobject.py └── xwhich.py ├── requirements.txt ├── setup.py └── signalqueue ├── __init__.py ├── admin.py ├── dispatcher.py ├── fixtures ├── TESTMODEL-DUMP.json └── TESTMODEL-ENQUEUED-SIGNALS.json ├── management ├── __init__.py └── commands │ ├── __init__.py │ ├── dequeue.py │ ├── dumpqueue.py │ ├── purgequeue.py │ └── runqueueserver.py ├── mappings.py ├── models.py ├── settings ├── __init__.py ├── redis-compatible.conf ├── redis.conf ├── test_async.py ├── test_sync.py └── urlconf.py ├── signals.py ├── static ├── signalqueue │ ├── coffee │ │ └── jquery.signalqueue.coffee │ └── js │ │ ├── jquery.queuestatus.js │ │ └── jquery.signalqueue.js └── socket.io-client │ ├── WebSocketMain.swf │ ├── WebSocketMainInsecure.swf │ ├── flashpolicy.xml │ ├── socket.io.js │ └── socket.io.min.js ├── templates ├── admin │ ├── app_index.html │ ├── index_with_queues.html │ └── sidebar_queue_module.html └── status.html ├── templatetags ├── __init__.py └── signalqueue_status.py ├── testrunner.py ├── tests.py ├── utils.py └── worker ├── __init__.py ├── backends.py ├── base.py ├── celeryqueue.py ├── poolqueue.py ├── supercell.py └── vortex.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/__init__.py -------------------------------------------------------------------------------- /distributors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/__init__.py -------------------------------------------------------------------------------- /distributors/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/cache.py -------------------------------------------------------------------------------- /distributors/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/clean.py -------------------------------------------------------------------------------- /distributors/coffeescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/coffeescript.py -------------------------------------------------------------------------------- /distributors/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/dist.py -------------------------------------------------------------------------------- /distributors/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/downloads.py -------------------------------------------------------------------------------- /distributors/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/settings.py -------------------------------------------------------------------------------- /distributors/urlobject/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/urlobject/__init__.py -------------------------------------------------------------------------------- /distributors/urlobject/netloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/urlobject/netloc.py -------------------------------------------------------------------------------- /distributors/urlobject/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/urlobject/path.py -------------------------------------------------------------------------------- /distributors/urlobject/ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/urlobject/ports.py -------------------------------------------------------------------------------- /distributors/urlobject/query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/urlobject/query_string.py -------------------------------------------------------------------------------- /distributors/urlobject/urlobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/urlobject/urlobject.py -------------------------------------------------------------------------------- /distributors/xwhich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/distributors/xwhich.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/setup.py -------------------------------------------------------------------------------- /signalqueue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/__init__.py -------------------------------------------------------------------------------- /signalqueue/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/admin.py -------------------------------------------------------------------------------- /signalqueue/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/dispatcher.py -------------------------------------------------------------------------------- /signalqueue/fixtures/TESTMODEL-DUMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/fixtures/TESTMODEL-DUMP.json -------------------------------------------------------------------------------- /signalqueue/fixtures/TESTMODEL-ENQUEUED-SIGNALS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/fixtures/TESTMODEL-ENQUEUED-SIGNALS.json -------------------------------------------------------------------------------- /signalqueue/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/management/__init__.py -------------------------------------------------------------------------------- /signalqueue/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/management/commands/__init__.py -------------------------------------------------------------------------------- /signalqueue/management/commands/dequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/management/commands/dequeue.py -------------------------------------------------------------------------------- /signalqueue/management/commands/dumpqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/management/commands/dumpqueue.py -------------------------------------------------------------------------------- /signalqueue/management/commands/purgequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/management/commands/purgequeue.py -------------------------------------------------------------------------------- /signalqueue/management/commands/runqueueserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/management/commands/runqueueserver.py -------------------------------------------------------------------------------- /signalqueue/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/mappings.py -------------------------------------------------------------------------------- /signalqueue/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/models.py -------------------------------------------------------------------------------- /signalqueue/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/settings/__init__.py -------------------------------------------------------------------------------- /signalqueue/settings/redis-compatible.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/settings/redis-compatible.conf -------------------------------------------------------------------------------- /signalqueue/settings/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/settings/redis.conf -------------------------------------------------------------------------------- /signalqueue/settings/test_async.py: -------------------------------------------------------------------------------- 1 | from ..settings import * 2 | 3 | SQ_RUNMODE = 'SQ_ASYNC_REQUEST' 4 | -------------------------------------------------------------------------------- /signalqueue/settings/test_sync.py: -------------------------------------------------------------------------------- 1 | from ..settings import * 2 | 3 | SQ_RUNMODE = 'SQ_SYNC' 4 | -------------------------------------------------------------------------------- /signalqueue/settings/urlconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/settings/urlconf.py -------------------------------------------------------------------------------- /signalqueue/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/signals.py -------------------------------------------------------------------------------- /signalqueue/static/signalqueue/coffee/jquery.signalqueue.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/signalqueue/coffee/jquery.signalqueue.coffee -------------------------------------------------------------------------------- /signalqueue/static/signalqueue/js/jquery.queuestatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/signalqueue/js/jquery.queuestatus.js -------------------------------------------------------------------------------- /signalqueue/static/signalqueue/js/jquery.signalqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/signalqueue/js/jquery.signalqueue.js -------------------------------------------------------------------------------- /signalqueue/static/socket.io-client/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/socket.io-client/WebSocketMain.swf -------------------------------------------------------------------------------- /signalqueue/static/socket.io-client/WebSocketMainInsecure.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/socket.io-client/WebSocketMainInsecure.swf -------------------------------------------------------------------------------- /signalqueue/static/socket.io-client/flashpolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/socket.io-client/flashpolicy.xml -------------------------------------------------------------------------------- /signalqueue/static/socket.io-client/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/socket.io-client/socket.io.js -------------------------------------------------------------------------------- /signalqueue/static/socket.io-client/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/static/socket.io-client/socket.io.min.js -------------------------------------------------------------------------------- /signalqueue/templates/admin/app_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/templates/admin/app_index.html -------------------------------------------------------------------------------- /signalqueue/templates/admin/index_with_queues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/templates/admin/index_with_queues.html -------------------------------------------------------------------------------- /signalqueue/templates/admin/sidebar_queue_module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/templates/admin/sidebar_queue_module.html -------------------------------------------------------------------------------- /signalqueue/templates/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/templates/status.html -------------------------------------------------------------------------------- /signalqueue/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/templatetags/__init__.py -------------------------------------------------------------------------------- /signalqueue/templatetags/signalqueue_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/templatetags/signalqueue_status.py -------------------------------------------------------------------------------- /signalqueue/testrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/testrunner.py -------------------------------------------------------------------------------- /signalqueue/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/tests.py -------------------------------------------------------------------------------- /signalqueue/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/utils.py -------------------------------------------------------------------------------- /signalqueue/worker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/worker/__init__.py -------------------------------------------------------------------------------- /signalqueue/worker/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/worker/backends.py -------------------------------------------------------------------------------- /signalqueue/worker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/worker/base.py -------------------------------------------------------------------------------- /signalqueue/worker/celeryqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/worker/celeryqueue.py -------------------------------------------------------------------------------- /signalqueue/worker/poolqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/worker/poolqueue.py -------------------------------------------------------------------------------- /signalqueue/worker/supercell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/worker/supercell.py -------------------------------------------------------------------------------- /signalqueue/worker/vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fish2000/django-signalqueue/HEAD/signalqueue/worker/vortex.py --------------------------------------------------------------------------------