├── .gitignore ├── small_tictactoe ├── __init__.py ├── apps │ └── core │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py ├── manage.py ├── requirements.pip ├── run.py ├── settings.py ├── static │ ├── django.js │ ├── game.js │ ├── jquery-1.5.1.min.js │ ├── socket.io.js │ └── style.css ├── templates │ └── core │ │ └── view_game.html └── urls.py └── tictactoe ├── __init__.py ├── apps └── core │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── models.py │ ├── templatetags │ ├── __init__.py │ └── custom_filters.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── lib └── __init__.py ├── manage.py ├── pip_requirements.txt ├── run.py ├── settings.py ├── static ├── core.js ├── jquery-1.5.1.min.js ├── json.js ├── less-1.0.41.min.js ├── messages.js ├── reset.css ├── socket.io.js └── styles.less ├── templates ├── 404.html ├── 500.html ├── base.html ├── core │ ├── game_list.html │ └── view_game.html ├── logging_console.js ├── logging_console_footer.html ├── logging_console_header.html ├── logging_console_middle.html └── registration │ ├── activate.html │ ├── activation_email.txt │ ├── activation_email_subject.txt │ ├── login.html │ ├── logout.html │ ├── registration_complete.html │ └── registration_form.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/.gitignore -------------------------------------------------------------------------------- /small_tictactoe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /small_tictactoe/apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /small_tictactoe/apps/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/apps/core/admin.py -------------------------------------------------------------------------------- /small_tictactoe/apps/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/apps/core/models.py -------------------------------------------------------------------------------- /small_tictactoe/apps/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/apps/core/tests.py -------------------------------------------------------------------------------- /small_tictactoe/apps/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/apps/core/views.py -------------------------------------------------------------------------------- /small_tictactoe/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/manage.py -------------------------------------------------------------------------------- /small_tictactoe/requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/requirements.pip -------------------------------------------------------------------------------- /small_tictactoe/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/run.py -------------------------------------------------------------------------------- /small_tictactoe/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/settings.py -------------------------------------------------------------------------------- /small_tictactoe/static/django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/static/django.js -------------------------------------------------------------------------------- /small_tictactoe/static/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/static/game.js -------------------------------------------------------------------------------- /small_tictactoe/static/jquery-1.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/static/jquery-1.5.1.min.js -------------------------------------------------------------------------------- /small_tictactoe/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/static/socket.io.js -------------------------------------------------------------------------------- /small_tictactoe/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/static/style.css -------------------------------------------------------------------------------- /small_tictactoe/templates/core/view_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/templates/core/view_game.html -------------------------------------------------------------------------------- /small_tictactoe/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/small_tictactoe/urls.py -------------------------------------------------------------------------------- /tictactoe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tictactoe/apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tictactoe/apps/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/apps/core/admin.py -------------------------------------------------------------------------------- /tictactoe/apps/core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/apps/core/forms.py -------------------------------------------------------------------------------- /tictactoe/apps/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/apps/core/models.py -------------------------------------------------------------------------------- /tictactoe/apps/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tictactoe/apps/core/templatetags/custom_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/apps/core/templatetags/custom_filters.py -------------------------------------------------------------------------------- /tictactoe/apps/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/apps/core/tests.py -------------------------------------------------------------------------------- /tictactoe/apps/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/apps/core/urls.py -------------------------------------------------------------------------------- /tictactoe/apps/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/apps/core/views.py -------------------------------------------------------------------------------- /tictactoe/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/lib/__init__.py -------------------------------------------------------------------------------- /tictactoe/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/manage.py -------------------------------------------------------------------------------- /tictactoe/pip_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/pip_requirements.txt -------------------------------------------------------------------------------- /tictactoe/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/run.py -------------------------------------------------------------------------------- /tictactoe/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/settings.py -------------------------------------------------------------------------------- /tictactoe/static/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/core.js -------------------------------------------------------------------------------- /tictactoe/static/jquery-1.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/jquery-1.5.1.min.js -------------------------------------------------------------------------------- /tictactoe/static/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/json.js -------------------------------------------------------------------------------- /tictactoe/static/less-1.0.41.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/less-1.0.41.min.js -------------------------------------------------------------------------------- /tictactoe/static/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/messages.js -------------------------------------------------------------------------------- /tictactoe/static/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/reset.css -------------------------------------------------------------------------------- /tictactoe/static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/socket.io.js -------------------------------------------------------------------------------- /tictactoe/static/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/static/styles.less -------------------------------------------------------------------------------- /tictactoe/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/404.html -------------------------------------------------------------------------------- /tictactoe/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/500.html -------------------------------------------------------------------------------- /tictactoe/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/base.html -------------------------------------------------------------------------------- /tictactoe/templates/core/game_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/core/game_list.html -------------------------------------------------------------------------------- /tictactoe/templates/core/view_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/core/view_game.html -------------------------------------------------------------------------------- /tictactoe/templates/logging_console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/logging_console.js -------------------------------------------------------------------------------- /tictactoe/templates/logging_console_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/logging_console_footer.html -------------------------------------------------------------------------------- /tictactoe/templates/logging_console_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/logging_console_header.html -------------------------------------------------------------------------------- /tictactoe/templates/logging_console_middle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/logging_console_middle.html -------------------------------------------------------------------------------- /tictactoe/templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/registration/activate.html -------------------------------------------------------------------------------- /tictactoe/templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /tictactoe/templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- 1 | Activate your tictactoe account 2 | -------------------------------------------------------------------------------- /tictactoe/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/registration/login.html -------------------------------------------------------------------------------- /tictactoe/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/registration/logout.html -------------------------------------------------------------------------------- /tictactoe/templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /tictactoe/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/templates/registration/registration_form.html -------------------------------------------------------------------------------- /tictactoe/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sontek-archive/django-tictactoe/HEAD/tictactoe/urls.py --------------------------------------------------------------------------------