small changes here and there. a debug function (SPOT), css, start of a navigation bar.

This commit is contained in:
phear 2005-09-20 07:05:05 +00:00
parent 8f5568bcd0
commit a901d5f237
35 changed files with 511 additions and 71 deletions

View file

@ -0,0 +1,16 @@
this file describes the database of the game.
there are currently 2 types of tables in the game.
One is the user table. this table is unique.
do the following to get the details:
cd webgo
python
import psql
print psql.create_user_table.__doc__
the other one is a goban table. for each game there exists one goban
table. do the following to get the details:
cd webgo
python
import psql
print psql.create_goban_table.__doc__