├── .hgignore ├── README.md └── myproject ├── __init__.py ├── chat ├── __init__.py ├── templates │ └── chat │ │ ├── client.js │ │ └── index.html ├── urls.py └── views.py ├── django_tornado ├── __init__.py ├── decorator.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── runtornado.py ├── models.py ├── tests.py └── views.py ├── manage.py ├── settings.py └── urls.py /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/.hgignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/README.md -------------------------------------------------------------------------------- /myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/chat/templates/chat/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/chat/templates/chat/client.js -------------------------------------------------------------------------------- /myproject/chat/templates/chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/chat/templates/chat/index.html -------------------------------------------------------------------------------- /myproject/chat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/chat/urls.py -------------------------------------------------------------------------------- /myproject/chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/chat/views.py -------------------------------------------------------------------------------- /myproject/django_tornado/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/django_tornado/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/django_tornado/decorator.py -------------------------------------------------------------------------------- /myproject/django_tornado/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/django_tornado/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/django_tornado/management/commands/runtornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/django_tornado/management/commands/runtornado.py -------------------------------------------------------------------------------- /myproject/django_tornado/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/django_tornado/models.py -------------------------------------------------------------------------------- /myproject/django_tornado/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/django_tornado/tests.py -------------------------------------------------------------------------------- /myproject/django_tornado/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /myproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/manage.py -------------------------------------------------------------------------------- /myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/settings.py -------------------------------------------------------------------------------- /myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koblas/django-on-tornado/HEAD/myproject/urls.py --------------------------------------------------------------------------------