├── .gitignore ├── MANIFEST.in ├── README.rst ├── bootstrap.py ├── dev.cfg ├── docs ├── HISTORY.rst ├── Makefile ├── _static │ └── pyramid_logo.png ├── api.rst ├── conf.py ├── examples.rst ├── index.rst ├── pyramid │ ├── layout.html │ ├── static │ │ ├── dialog-note.png │ │ ├── dialog-seealso.png │ │ ├── dialog-topic.png │ │ ├── dialog-warning.png │ │ ├── epub.css │ │ ├── footerbg.png │ │ ├── headerbg.png │ │ ├── ie6.css │ │ ├── middlebg.png │ │ ├── pyramid.css_t │ │ └── transparent.gif │ └── theme.conf └── websockets.rst ├── setup.py ├── stargate ├── __init__.py ├── factory.py ├── handshake.py ├── resource.py ├── test_utils.py └── view.py └── tests ├── test.ini ├── test_factory.py ├── test_fixture.py ├── test_handshake.py ├── test_resource.py └── test_websocket.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/README.rst -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/bootstrap.py -------------------------------------------------------------------------------- /dev.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/dev.cfg -------------------------------------------------------------------------------- /docs/HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/HISTORY.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/pyramid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/_static/pyramid_logo.png -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/pyramid/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/layout.html -------------------------------------------------------------------------------- /docs/pyramid/static/dialog-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/dialog-note.png -------------------------------------------------------------------------------- /docs/pyramid/static/dialog-seealso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/dialog-seealso.png -------------------------------------------------------------------------------- /docs/pyramid/static/dialog-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/dialog-topic.png -------------------------------------------------------------------------------- /docs/pyramid/static/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/dialog-warning.png -------------------------------------------------------------------------------- /docs/pyramid/static/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/epub.css -------------------------------------------------------------------------------- /docs/pyramid/static/footerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/footerbg.png -------------------------------------------------------------------------------- /docs/pyramid/static/headerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/headerbg.png -------------------------------------------------------------------------------- /docs/pyramid/static/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/ie6.css -------------------------------------------------------------------------------- /docs/pyramid/static/middlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/middlebg.png -------------------------------------------------------------------------------- /docs/pyramid/static/pyramid.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/pyramid.css_t -------------------------------------------------------------------------------- /docs/pyramid/static/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/static/transparent.gif -------------------------------------------------------------------------------- /docs/pyramid/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/pyramid/theme.conf -------------------------------------------------------------------------------- /docs/websockets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/docs/websockets.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/setup.py -------------------------------------------------------------------------------- /stargate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/stargate/__init__.py -------------------------------------------------------------------------------- /stargate/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/stargate/factory.py -------------------------------------------------------------------------------- /stargate/handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/stargate/handshake.py -------------------------------------------------------------------------------- /stargate/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/stargate/resource.py -------------------------------------------------------------------------------- /stargate/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/stargate/test_utils.py -------------------------------------------------------------------------------- /stargate/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/stargate/view.py -------------------------------------------------------------------------------- /tests/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/tests/test.ini -------------------------------------------------------------------------------- /tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/tests/test_factory.py -------------------------------------------------------------------------------- /tests/test_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/tests/test_fixture.py -------------------------------------------------------------------------------- /tests/test_handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/tests/test_handshake.py -------------------------------------------------------------------------------- /tests/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/tests/test_resource.py -------------------------------------------------------------------------------- /tests/test_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandodev/stargate/HEAD/tests/test_websocket.py --------------------------------------------------------------------------------