├── iPad └── FORTHCOMING ├── misc └── art │ ├── placeholder │ ├── ff.jpg │ ├── ff-large │ ├── rewind.jpg │ ├── rw-large │ ├── skip.jpg │ ├── ff-small.psd │ ├── ghost-black │ ├── new │ ├── last.png │ ├── first.png │ ├── forward.png │ ├── motion.psd │ ├── backward.png │ ├── hover-first.png │ ├── hover-last.png │ ├── hover-backward.png │ ├── hover-forward.png │ └── reverse-motion.psd │ ├── rw-small.psd │ ├── small │ ├── bl.png │ ├── br.png │ ├── tl.png │ ├── tr.png │ ├── black.png │ ├── left.png │ ├── right.png │ ├── star.png │ ├── top.png │ ├── white.png │ ├── Archive.zip │ ├── bottom.png │ └── center.png │ ├── big │ ├── bl-try.png │ ├── br-try.png │ ├── tl-try.png │ ├── top-try.png │ ├── tr-try.png │ ├── board-660.png │ ├── left-try.png │ ├── right-try.png │ ├── star-try.png │ ├── black-huge.png │ ├── board-huge.png │ ├── bottom-try.png │ ├── center-try.png │ └── white-huge.png │ ├── email-icon.jpg │ ├── first-large.psd │ ├── first-small.psd │ ├── ghost-white.psd │ ├── highlight.psd │ ├── last-large.psd │ ├── last-small.psd │ ├── normal │ ├── bl.png │ ├── br.png │ ├── last.png │ ├── left.png │ ├── star.png │ ├── tl.png │ ├── top.png │ ├── tr.png │ ├── black.png │ ├── bottom.png │ ├── center.png │ ├── first.png │ ├── motion.psd │ ├── right.png │ ├── white.png │ ├── backward.png │ ├── forward.png │ ├── hover-forward.psd │ ├── reverse motion.psd │ ├── simple-black.png │ └── simple-white.png │ ├── email in prog.psd │ ├── hover-good │ ├── first.png │ ├── last.png │ ├── forward.png │ ├── backward.png │ ├── hover-last.png │ ├── hover-first.png │ ├── hover-backward.png │ └── hover-forward.png │ └── email-small-progress.psd ├── .tool-versions ├── .gitignore ├── www ├── static │ ├── img │ │ ├── ff.png │ │ ├── rw.png │ │ ├── board.png │ │ ├── first.png │ │ ├── grid.png │ │ ├── last.png │ │ ├── favicon.ico │ │ ├── board-30.png │ │ ├── dead-black.png │ │ ├── dead-white.png │ │ ├── email-off.png │ │ ├── email-on.png │ │ ├── ff-hover.png │ │ ├── grid-hover.png │ │ ├── highlight.png │ │ ├── last-hover.png │ │ ├── rw-hover.png │ │ ├── first-hover.png │ │ ├── ghost-black.png │ │ ├── ghost-white.png │ │ ├── grid-enabled.png │ │ ├── simple-black.png │ │ ├── simple-white.png │ │ ├── email-off-hover.png │ │ ├── email-on-hover.png │ │ ├── grid-disabled.png │ │ ├── loading-spinner.gif │ │ ├── territory-black.png │ │ ├── territory-white.png │ │ ├── transparent-1x1.png │ │ └── apple-touch-icon.png │ ├── css │ │ ├── ie.css │ │ └── go.css │ └── js │ │ ├── sound.js │ │ ├── scriptaculous.js │ │ ├── builder.js │ │ ├── slider.js │ │ └── dragdrop.js ├── templates │ ├── head.html │ ├── game.sgf │ ├── fail.html │ ├── foot.html │ ├── update-database.html │ ├── index.html │ ├── options.html │ ├── get-going.html │ ├── history.html │ └── play.html ├── index.yaml ├── cron.yaml ├── secrets.py ├── simplejson │ ├── tool.py │ ├── jsonfilter.py │ ├── scanner.py │ ├── decoder.py │ ├── __init__.py │ └── encoder.py └── app.yaml ├── LICENSE ├── deadstones.md └── README.md /iPad/FORTHCOMING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/art/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | python 3.11.2 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | .emacs.* 4 | .#* 5 | .*.sw? 6 | -------------------------------------------------------------------------------- /misc/art/ff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/ff.jpg -------------------------------------------------------------------------------- /misc/art/ff-large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/ff-large -------------------------------------------------------------------------------- /misc/art/rewind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/rewind.jpg -------------------------------------------------------------------------------- /misc/art/rw-large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/rw-large -------------------------------------------------------------------------------- /misc/art/skip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/skip.jpg -------------------------------------------------------------------------------- /misc/art/ff-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/ff-small.psd -------------------------------------------------------------------------------- /misc/art/ghost-black: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/ghost-black -------------------------------------------------------------------------------- /misc/art/new/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/last.png -------------------------------------------------------------------------------- /misc/art/rw-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/rw-small.psd -------------------------------------------------------------------------------- /misc/art/small/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/bl.png -------------------------------------------------------------------------------- /misc/art/small/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/br.png -------------------------------------------------------------------------------- /misc/art/small/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/tl.png -------------------------------------------------------------------------------- /misc/art/small/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/tr.png -------------------------------------------------------------------------------- /www/static/img/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/ff.png -------------------------------------------------------------------------------- /www/static/img/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/rw.png -------------------------------------------------------------------------------- /misc/art/big/bl-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/bl-try.png -------------------------------------------------------------------------------- /misc/art/big/br-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/br-try.png -------------------------------------------------------------------------------- /misc/art/big/tl-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/tl-try.png -------------------------------------------------------------------------------- /misc/art/big/top-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/top-try.png -------------------------------------------------------------------------------- /misc/art/big/tr-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/tr-try.png -------------------------------------------------------------------------------- /misc/art/email-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/email-icon.jpg -------------------------------------------------------------------------------- /misc/art/first-large.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/first-large.psd -------------------------------------------------------------------------------- /misc/art/first-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/first-small.psd -------------------------------------------------------------------------------- /misc/art/ghost-white.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/ghost-white.psd -------------------------------------------------------------------------------- /misc/art/highlight.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/highlight.psd -------------------------------------------------------------------------------- /misc/art/last-large.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/last-large.psd -------------------------------------------------------------------------------- /misc/art/last-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/last-small.psd -------------------------------------------------------------------------------- /misc/art/new/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/first.png -------------------------------------------------------------------------------- /misc/art/new/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/forward.png -------------------------------------------------------------------------------- /misc/art/new/motion.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/motion.psd -------------------------------------------------------------------------------- /misc/art/normal/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/bl.png -------------------------------------------------------------------------------- /misc/art/normal/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/br.png -------------------------------------------------------------------------------- /misc/art/normal/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/last.png -------------------------------------------------------------------------------- /misc/art/normal/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/left.png -------------------------------------------------------------------------------- /misc/art/normal/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/star.png -------------------------------------------------------------------------------- /misc/art/normal/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/tl.png -------------------------------------------------------------------------------- /misc/art/normal/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/top.png -------------------------------------------------------------------------------- /misc/art/normal/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/tr.png -------------------------------------------------------------------------------- /misc/art/small/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/black.png -------------------------------------------------------------------------------- /misc/art/small/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/left.png -------------------------------------------------------------------------------- /misc/art/small/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/right.png -------------------------------------------------------------------------------- /misc/art/small/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/star.png -------------------------------------------------------------------------------- /misc/art/small/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/top.png -------------------------------------------------------------------------------- /misc/art/small/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/white.png -------------------------------------------------------------------------------- /www/static/img/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/board.png -------------------------------------------------------------------------------- /www/static/img/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/first.png -------------------------------------------------------------------------------- /www/static/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/grid.png -------------------------------------------------------------------------------- /www/static/img/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/last.png -------------------------------------------------------------------------------- /misc/art/big/board-660.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/board-660.png -------------------------------------------------------------------------------- /misc/art/big/left-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/left-try.png -------------------------------------------------------------------------------- /misc/art/big/right-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/right-try.png -------------------------------------------------------------------------------- /misc/art/big/star-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/star-try.png -------------------------------------------------------------------------------- /misc/art/email in prog.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/email in prog.psd -------------------------------------------------------------------------------- /misc/art/new/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/backward.png -------------------------------------------------------------------------------- /misc/art/normal/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/black.png -------------------------------------------------------------------------------- /misc/art/normal/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/bottom.png -------------------------------------------------------------------------------- /misc/art/normal/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/center.png -------------------------------------------------------------------------------- /misc/art/normal/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/first.png -------------------------------------------------------------------------------- /misc/art/normal/motion.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/motion.psd -------------------------------------------------------------------------------- /misc/art/normal/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/right.png -------------------------------------------------------------------------------- /misc/art/normal/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/white.png -------------------------------------------------------------------------------- /misc/art/small/Archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/Archive.zip -------------------------------------------------------------------------------- /misc/art/small/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/bottom.png -------------------------------------------------------------------------------- /misc/art/small/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/small/center.png -------------------------------------------------------------------------------- /www/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/favicon.ico -------------------------------------------------------------------------------- /misc/art/big/black-huge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/black-huge.png -------------------------------------------------------------------------------- /misc/art/big/board-huge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/board-huge.png -------------------------------------------------------------------------------- /misc/art/big/bottom-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/bottom-try.png -------------------------------------------------------------------------------- /misc/art/big/center-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/center-try.png -------------------------------------------------------------------------------- /misc/art/big/white-huge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/big/white-huge.png -------------------------------------------------------------------------------- /misc/art/hover-good/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/first.png -------------------------------------------------------------------------------- /misc/art/hover-good/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/last.png -------------------------------------------------------------------------------- /misc/art/new/hover-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/hover-first.png -------------------------------------------------------------------------------- /misc/art/new/hover-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/hover-last.png -------------------------------------------------------------------------------- /misc/art/normal/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/backward.png -------------------------------------------------------------------------------- /misc/art/normal/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/forward.png -------------------------------------------------------------------------------- /www/static/img/board-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/board-30.png -------------------------------------------------------------------------------- /www/static/img/dead-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/dead-black.png -------------------------------------------------------------------------------- /www/static/img/dead-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/dead-white.png -------------------------------------------------------------------------------- /www/static/img/email-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/email-off.png -------------------------------------------------------------------------------- /www/static/img/email-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/email-on.png -------------------------------------------------------------------------------- /www/static/img/ff-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/ff-hover.png -------------------------------------------------------------------------------- /www/static/img/grid-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/grid-hover.png -------------------------------------------------------------------------------- /www/static/img/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/highlight.png -------------------------------------------------------------------------------- /www/static/img/last-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/last-hover.png -------------------------------------------------------------------------------- /www/static/img/rw-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/rw-hover.png -------------------------------------------------------------------------------- /misc/art/hover-good/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/forward.png -------------------------------------------------------------------------------- /misc/art/new/hover-backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/hover-backward.png -------------------------------------------------------------------------------- /misc/art/new/hover-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/hover-forward.png -------------------------------------------------------------------------------- /misc/art/new/reverse-motion.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/new/reverse-motion.psd -------------------------------------------------------------------------------- /www/static/img/first-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/first-hover.png -------------------------------------------------------------------------------- /www/static/img/ghost-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/ghost-black.png -------------------------------------------------------------------------------- /www/static/img/ghost-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/ghost-white.png -------------------------------------------------------------------------------- /www/static/img/grid-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/grid-enabled.png -------------------------------------------------------------------------------- /www/static/img/simple-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/simple-black.png -------------------------------------------------------------------------------- /www/static/img/simple-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/simple-white.png -------------------------------------------------------------------------------- /misc/art/email-small-progress.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/email-small-progress.psd -------------------------------------------------------------------------------- /misc/art/hover-good/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/backward.png -------------------------------------------------------------------------------- /misc/art/hover-good/hover-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/hover-last.png -------------------------------------------------------------------------------- /misc/art/normal/hover-forward.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/hover-forward.psd -------------------------------------------------------------------------------- /misc/art/normal/reverse motion.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/reverse motion.psd -------------------------------------------------------------------------------- /misc/art/normal/simple-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/simple-black.png -------------------------------------------------------------------------------- /misc/art/normal/simple-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/normal/simple-white.png -------------------------------------------------------------------------------- /www/static/img/email-off-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/email-off-hover.png -------------------------------------------------------------------------------- /www/static/img/email-on-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/email-on-hover.png -------------------------------------------------------------------------------- /www/static/img/grid-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/grid-disabled.png -------------------------------------------------------------------------------- /www/static/img/loading-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/loading-spinner.gif -------------------------------------------------------------------------------- /www/static/img/territory-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/territory-black.png -------------------------------------------------------------------------------- /www/static/img/territory-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/territory-white.png -------------------------------------------------------------------------------- /www/static/img/transparent-1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/transparent-1x1.png -------------------------------------------------------------------------------- /misc/art/hover-good/hover-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/hover-first.png -------------------------------------------------------------------------------- /www/static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/www/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /misc/art/hover-good/hover-backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/hover-backward.png -------------------------------------------------------------------------------- /misc/art/hover-good/hover-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davepeck/game-of-go/HEAD/misc/art/hover-good/hover-forward.png -------------------------------------------------------------------------------- /www/templates/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /www/templates/game.sgf: -------------------------------------------------------------------------------- 1 | ( 2 | ;FF[4]GM[1]CA[UTF-8] 3 | PC[Dave Peck's Go: {{base_url}}] 4 | DT[{{start_date}},{{stop_date}}] 5 | GN[{{white_name}} vs {{black_name}}] 6 | PB[{{black_name}}] 7 | PW[{{white_name}}] 8 | RU[Japanese] 9 | SZ[{{board_size}}] 10 | KM[{{komi}}]{% ifnotequal handicap 0 %} 11 | HA[{{handicap}}] 12 | AB{% for h in handicap_stones %}[{{h}}]{% endfor %}PL[W]{% else %}PL[B]{% endifnotequal %} 13 | {% for m in moves %};{{m}} 14 | {% endfor %}) 15 | -------------------------------------------------------------------------------- /www/templates/fail.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Sorry, but an error occured:
10 |{{message}}
11 |20 |