Mercurial > hg > rlgallery-misc
diff web/recent.cgi @ 7:64272fc2350c
Begin importing the website.
Add the files from the website's top-level directory. Note that
recent.cgi still uses the old rlgall module.
author | John "Elwin" Edwards <elwin@sdf.org> |
---|---|
date | Sun, 19 Aug 2012 21:29:06 -0700 |
parents | |
children | 453278a81371 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/recent.cgi Sun Aug 19 21:29:06 2012 -0700 @@ -0,0 +1,20 @@ +#!/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()