├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bootstrap.py ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── rules └── source │ └── format ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── handler.rst │ ├── index.rst │ ├── main.rst │ ├── mixins.rst │ ├── namespace.rst │ ├── packet.rst │ ├── server.rst │ ├── server_integration.rst │ ├── sgunicorn.rst │ ├── transports.rst │ └── virtsocket.rst ├── examples ├── cross_origin │ ├── README.rst │ ├── requirements.txt │ ├── sock.py │ ├── static │ │ ├── 0.8 │ │ │ └── socket.io.js │ │ ├── 0.9 │ │ │ └── socket.io.js │ │ ├── app.js │ │ └── index.html │ └── web.py ├── django_chat │ ├── .gitignore │ ├── README.rst │ ├── bootstrap.py │ ├── buildout.cfg │ ├── chat │ │ ├── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── runserver_socketio.py │ │ ├── models.py │ │ ├── sockets.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── chat.css │ │ │ ├── flashsocket │ │ │ │ └── WebSocketMain.swf │ │ │ └── js │ │ │ │ ├── chat.js │ │ │ │ └── socket.io.js │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── room.html │ │ │ └── rooms.html │ │ ├── urls.py │ │ └── views.py │ └── chatproject │ │ ├── __init__.py │ │ ├── development.py │ │ ├── settings.py │ │ └── urls.py ├── flask_chat │ ├── README.rst │ ├── chat.py │ ├── init_db.py │ ├── requirements.txt │ ├── run.py │ ├── static │ │ ├── css │ │ │ └── chat.css │ │ └── js │ │ │ ├── chat.js │ │ │ ├── jquery.min.js │ │ │ └── socketio │ │ │ ├── WebSocketMain.swf │ │ │ └── socket.io.min.js │ └── templates │ │ ├── base.html │ │ ├── room.html │ │ └── rooms.html ├── json.js ├── live_cpu_graph │ ├── README │ ├── live_cpu_graph │ │ ├── index.html │ │ ├── serve.py │ │ └── static │ │ │ ├── WebSocketMain.swf │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── excanvas.js │ │ │ ├── jquery-1.6.1.min.js │ │ │ ├── jquery.flot.js │ │ │ └── socket.io.js │ └── setup.py ├── pyramid_backbone_redis_chat │ ├── README │ ├── chatter3 │ │ ├── __init__.py │ │ ├── models.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── populate.py │ │ ├── static │ │ │ ├── WebSocketMain.swf │ │ │ ├── backbone.js │ │ │ ├── chatter.js │ │ │ ├── handlebars.js │ │ │ ├── jquery.js │ │ │ ├── socket.io.js │ │ │ ├── styles.css │ │ │ └── underscore.js │ │ ├── templates │ │ │ └── index.mako │ │ └── views.py │ ├── development.ini │ ├── serve.py │ └── setup.py ├── pyramid_backbone_redis_chat_persistence │ ├── README │ ├── chatter4 │ │ ├── __init__.py │ │ ├── models.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── populate.py │ │ ├── static │ │ │ ├── backbone.js │ │ │ ├── chatter.js │ │ │ ├── handlebars.js │ │ │ ├── jquery.js │ │ │ ├── socket.io.js │ │ │ ├── styles.css │ │ │ └── underscore.js │ │ ├── templates │ │ │ └── index.mako │ │ └── views.py │ ├── development.ini │ ├── requirements.txt │ ├── serve.py │ └── setup.py ├── simple_chat │ ├── chat.html │ ├── chat.py │ └── static │ │ ├── WebSocketMain.swf │ │ ├── css │ │ └── style.css │ │ ├── jquery-1.6.1.min.js │ │ └── socket.io.js ├── simple_pyramid_chat │ ├── README │ ├── chatter2 │ │ ├── __init__.py │ │ ├── models.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── populate.py │ │ ├── static │ │ │ ├── WebSocketMain.swf │ │ │ ├── backbone.js │ │ │ ├── chatter.js │ │ │ ├── handlebars.js │ │ │ ├── jquery.js │ │ │ ├── socket.io.js │ │ │ ├── styles.css │ │ │ └── underscore.js │ │ ├── templates │ │ │ └── index.mako │ │ └── views.py │ ├── development.ini │ ├── serve.py │ ├── setup.py │ └── wsgi.py ├── testapp │ ├── development.ini │ ├── serve.py │ ├── setup.py │ └── testapp │ │ ├── __init__.py │ │ ├── models.py │ │ ├── scripts │ │ ├── __init__.py │ │ └── populate.py │ │ ├── static │ │ ├── backbone.js │ │ ├── chatter.js │ │ ├── favicon.ico │ │ ├── handlebars.js │ │ ├── jquery.js │ │ ├── socket.io.js │ │ ├── styles.css │ │ └── underscore.js │ │ ├── templates │ │ └── index.mako │ │ └── views.py └── twitterstream │ ├── README │ ├── setup.py │ └── twitterstream │ ├── index.html │ ├── serve.py │ └── static │ ├── WebSocketMain.swf │ ├── css │ └── style.css │ ├── jquery-1.6.1.min.js │ └── socket.io.js ├── pip-requirements-test.txt ├── pip-requirements.txt ├── setup.py ├── socketio ├── __init__.py ├── defaultjson.py ├── handler.py ├── mixins.py ├── namespace.py ├── packet.py ├── policyserver.py ├── sdjango.py ├── server.py ├── sgunicorn.py ├── transports.py └── virtsocket.py ├── tests ├── __init__.py ├── jstests │ ├── jstests.py │ ├── static │ │ ├── WebSocketMain.swf │ │ ├── qunit.css │ │ ├── qunit.js │ │ └── socket.io.js │ └── tests │ │ └── suite.js ├── test_namespace.py ├── test_packet.py └── test_socket.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/README.rst -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/bootstrap.py -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | README.rst 3 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/handler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/handler.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/main.rst -------------------------------------------------------------------------------- /docs/source/mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/mixins.rst -------------------------------------------------------------------------------- /docs/source/namespace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/namespace.rst -------------------------------------------------------------------------------- /docs/source/packet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/packet.rst -------------------------------------------------------------------------------- /docs/source/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/server.rst -------------------------------------------------------------------------------- /docs/source/server_integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/server_integration.rst -------------------------------------------------------------------------------- /docs/source/sgunicorn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/sgunicorn.rst -------------------------------------------------------------------------------- /docs/source/transports.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/transports.rst -------------------------------------------------------------------------------- /docs/source/virtsocket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/docs/source/virtsocket.rst -------------------------------------------------------------------------------- /examples/cross_origin/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/cross_origin/README.rst -------------------------------------------------------------------------------- /examples/cross_origin/requirements.txt: -------------------------------------------------------------------------------- 1 | bottle>=0.10.6 2 | -------------------------------------------------------------------------------- /examples/cross_origin/sock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/cross_origin/sock.py -------------------------------------------------------------------------------- /examples/cross_origin/static/0.8/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/cross_origin/static/0.8/socket.io.js -------------------------------------------------------------------------------- /examples/cross_origin/static/0.9/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/cross_origin/static/0.9/socket.io.js -------------------------------------------------------------------------------- /examples/cross_origin/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/cross_origin/static/app.js -------------------------------------------------------------------------------- /examples/cross_origin/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/cross_origin/static/index.html -------------------------------------------------------------------------------- /examples/cross_origin/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/cross_origin/web.py -------------------------------------------------------------------------------- /examples/django_chat/.gitignore: -------------------------------------------------------------------------------- 1 | external 2 | -------------------------------------------------------------------------------- /examples/django_chat/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/README.rst -------------------------------------------------------------------------------- /examples/django_chat/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/bootstrap.py -------------------------------------------------------------------------------- /examples/django_chat/buildout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/buildout.cfg -------------------------------------------------------------------------------- /examples/django_chat/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django_chat/chat/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django_chat/chat/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django_chat/chat/management/commands/runserver_socketio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/management/commands/runserver_socketio.py -------------------------------------------------------------------------------- /examples/django_chat/chat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/models.py -------------------------------------------------------------------------------- /examples/django_chat/chat/sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/sockets.py -------------------------------------------------------------------------------- /examples/django_chat/chat/static/css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/static/css/chat.css -------------------------------------------------------------------------------- /examples/django_chat/chat/static/flashsocket/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/static/flashsocket/WebSocketMain.swf -------------------------------------------------------------------------------- /examples/django_chat/chat/static/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/static/js/chat.js -------------------------------------------------------------------------------- /examples/django_chat/chat/static/js/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/static/js/socket.io.js -------------------------------------------------------------------------------- /examples/django_chat/chat/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/templates/base.html -------------------------------------------------------------------------------- /examples/django_chat/chat/templates/room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/templates/room.html -------------------------------------------------------------------------------- /examples/django_chat/chat/templates/rooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/templates/rooms.html -------------------------------------------------------------------------------- /examples/django_chat/chat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/urls.py -------------------------------------------------------------------------------- /examples/django_chat/chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chat/views.py -------------------------------------------------------------------------------- /examples/django_chat/chatproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django_chat/chatproject/development.py: -------------------------------------------------------------------------------- 1 | from chatproject.settings import * 2 | -------------------------------------------------------------------------------- /examples/django_chat/chatproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chatproject/settings.py -------------------------------------------------------------------------------- /examples/django_chat/chatproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/django_chat/chatproject/urls.py -------------------------------------------------------------------------------- /examples/flask_chat/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/README.rst -------------------------------------------------------------------------------- /examples/flask_chat/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/chat.py -------------------------------------------------------------------------------- /examples/flask_chat/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/init_db.py -------------------------------------------------------------------------------- /examples/flask_chat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/requirements.txt -------------------------------------------------------------------------------- /examples/flask_chat/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/run.py -------------------------------------------------------------------------------- /examples/flask_chat/static/css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/static/css/chat.css -------------------------------------------------------------------------------- /examples/flask_chat/static/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/static/js/chat.js -------------------------------------------------------------------------------- /examples/flask_chat/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/static/js/jquery.min.js -------------------------------------------------------------------------------- /examples/flask_chat/static/js/socketio/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/static/js/socketio/WebSocketMain.swf -------------------------------------------------------------------------------- /examples/flask_chat/static/js/socketio/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/static/js/socketio/socket.io.min.js -------------------------------------------------------------------------------- /examples/flask_chat/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/templates/base.html -------------------------------------------------------------------------------- /examples/flask_chat/templates/room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/templates/room.html -------------------------------------------------------------------------------- /examples/flask_chat/templates/rooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/flask_chat/templates/rooms.html -------------------------------------------------------------------------------- /examples/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/json.js -------------------------------------------------------------------------------- /examples/live_cpu_graph/README: -------------------------------------------------------------------------------- 1 | A simple live CPU graph. 2 | 3 | To run: 4 | 5 | python serve.py 6 | -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/index.html -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/serve.py -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/static/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/static/WebSocketMain.swf -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/static/css/style.css -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/static/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/static/excanvas.js -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/static/jquery-1.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/static/jquery-1.6.1.min.js -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/static/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/static/jquery.flot.js -------------------------------------------------------------------------------- /examples/live_cpu_graph/live_cpu_graph/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/live_cpu_graph/static/socket.io.js -------------------------------------------------------------------------------- /examples/live_cpu_graph/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/live_cpu_graph/setup.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/README -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/__init__.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/models.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # package 2 | -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/scripts/populate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/scripts/populate.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/WebSocketMain.swf -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/backbone.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/chatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/chatter.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/handlebars.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/jquery.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/socket.io.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/styles.css -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/static/underscore.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/templates/index.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/templates/index.mako -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/chatter3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/chatter3/views.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/development.ini -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/serve.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat/setup.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/README -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/__init__.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/models.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # package 2 | -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/scripts/populate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/scripts/populate.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/static/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/static/backbone.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/static/chatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/static/chatter.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/static/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/static/handlebars.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/static/jquery.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/static/socket.io.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/static/styles.css -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/static/underscore.js -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/templates/index.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/templates/index.mako -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/chatter4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/chatter4/views.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/development.ini -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/requirements.txt -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/serve.py -------------------------------------------------------------------------------- /examples/pyramid_backbone_redis_chat_persistence/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/pyramid_backbone_redis_chat_persistence/setup.py -------------------------------------------------------------------------------- /examples/simple_chat/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_chat/chat.html -------------------------------------------------------------------------------- /examples/simple_chat/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_chat/chat.py -------------------------------------------------------------------------------- /examples/simple_chat/static/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_chat/static/WebSocketMain.swf -------------------------------------------------------------------------------- /examples/simple_chat/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_chat/static/css/style.css -------------------------------------------------------------------------------- /examples/simple_chat/static/jquery-1.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_chat/static/jquery-1.6.1.min.js -------------------------------------------------------------------------------- /examples/simple_chat/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_chat/static/socket.io.js -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/README -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/__init__.py -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/models.py -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # package 2 | -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/scripts/populate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/scripts/populate.py -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/WebSocketMain.swf -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/backbone.js -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/chatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/chatter.js -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/handlebars.js -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/jquery.js -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/socket.io.js -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/styles.css -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/static/underscore.js -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/templates/index.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/templates/index.mako -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/chatter2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/chatter2/views.py -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/development.ini -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/serve.py -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/setup.py -------------------------------------------------------------------------------- /examples/simple_pyramid_chat/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/simple_pyramid_chat/wsgi.py -------------------------------------------------------------------------------- /examples/testapp/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/development.ini -------------------------------------------------------------------------------- /examples/testapp/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/serve.py -------------------------------------------------------------------------------- /examples/testapp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/setup.py -------------------------------------------------------------------------------- /examples/testapp/testapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/__init__.py -------------------------------------------------------------------------------- /examples/testapp/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/models.py -------------------------------------------------------------------------------- /examples/testapp/testapp/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # package 2 | -------------------------------------------------------------------------------- /examples/testapp/testapp/scripts/populate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/scripts/populate.py -------------------------------------------------------------------------------- /examples/testapp/testapp/static/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/static/backbone.js -------------------------------------------------------------------------------- /examples/testapp/testapp/static/chatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/static/chatter.js -------------------------------------------------------------------------------- /examples/testapp/testapp/static/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/testapp/testapp/static/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/static/handlebars.js -------------------------------------------------------------------------------- /examples/testapp/testapp/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/static/jquery.js -------------------------------------------------------------------------------- /examples/testapp/testapp/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/static/socket.io.js -------------------------------------------------------------------------------- /examples/testapp/testapp/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/static/styles.css -------------------------------------------------------------------------------- /examples/testapp/testapp/static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/static/underscore.js -------------------------------------------------------------------------------- /examples/testapp/testapp/templates/index.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/templates/index.mako -------------------------------------------------------------------------------- /examples/testapp/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/testapp/testapp/views.py -------------------------------------------------------------------------------- /examples/twitterstream/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/README -------------------------------------------------------------------------------- /examples/twitterstream/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/setup.py -------------------------------------------------------------------------------- /examples/twitterstream/twitterstream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/twitterstream/index.html -------------------------------------------------------------------------------- /examples/twitterstream/twitterstream/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/twitterstream/serve.py -------------------------------------------------------------------------------- /examples/twitterstream/twitterstream/static/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/twitterstream/static/WebSocketMain.swf -------------------------------------------------------------------------------- /examples/twitterstream/twitterstream/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/twitterstream/static/css/style.css -------------------------------------------------------------------------------- /examples/twitterstream/twitterstream/static/jquery-1.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/twitterstream/static/jquery-1.6.1.min.js -------------------------------------------------------------------------------- /examples/twitterstream/twitterstream/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/examples/twitterstream/twitterstream/static/socket.io.js -------------------------------------------------------------------------------- /pip-requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | mock -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/pip-requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/setup.py -------------------------------------------------------------------------------- /socketio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/__init__.py -------------------------------------------------------------------------------- /socketio/defaultjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/defaultjson.py -------------------------------------------------------------------------------- /socketio/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/handler.py -------------------------------------------------------------------------------- /socketio/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/mixins.py -------------------------------------------------------------------------------- /socketio/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/namespace.py -------------------------------------------------------------------------------- /socketio/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/packet.py -------------------------------------------------------------------------------- /socketio/policyserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/policyserver.py -------------------------------------------------------------------------------- /socketio/sdjango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/sdjango.py -------------------------------------------------------------------------------- /socketio/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/server.py -------------------------------------------------------------------------------- /socketio/sgunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/sgunicorn.py -------------------------------------------------------------------------------- /socketio/transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/transports.py -------------------------------------------------------------------------------- /socketio/virtsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/socketio/virtsocket.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/jstests/jstests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/jstests/jstests.py -------------------------------------------------------------------------------- /tests/jstests/static/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/jstests/static/WebSocketMain.swf -------------------------------------------------------------------------------- /tests/jstests/static/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/jstests/static/qunit.css -------------------------------------------------------------------------------- /tests/jstests/static/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/jstests/static/qunit.js -------------------------------------------------------------------------------- /tests/jstests/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/jstests/static/socket.io.js -------------------------------------------------------------------------------- /tests/jstests/tests/suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/jstests/tests/suite.js -------------------------------------------------------------------------------- /tests/test_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/test_namespace.py -------------------------------------------------------------------------------- /tests/test_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/test_packet.py -------------------------------------------------------------------------------- /tests/test_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tests/test_socket.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abourget/gevent-socketio/HEAD/tox.ini --------------------------------------------------------------------------------