Mercurial > hg > rlgallery-misc
view web/recent.cgi @ 17:7f7b3da664d6
Begin adding arogue5 support to the recorder script.
rlgalldb.py's arogue5 object is a nonfunctional stub, but at least it
doesn't crash and the other games still work.
author | John "Elwin" Edwards <elwin@sdf.org> |
---|---|
date | Sun, 16 Sep 2012 20:44:22 -0700 |
parents | 64272fc2350c |
children | 453278a81371 |
line wrap: on
line source
#!/usr/bin/python # CGI script creating page of recent games import sys import time import rlgall # The required header sys.stdout.write("Content-type: text/html\r\n\r\n") # The top of the page sys.stdout.write(rlgall.phead.format("Recent Games")) sys.stdout.write(rlgall.ptop); sys.stdout.write(rlgall.navtop.format("Recent")); sys.stdout.write(rlgall.pti.format("Recent Expeditions")) for game in rlgall.gamelist: game.tablerecent(sys.stdout) sys.stdout.write(rlgall.pend) exit()