Mercurial > hg > rlgallery-misc
view web/recent.cgi @ 31:7303535b5a5d
Right-align the numeric columns.
The Game.printTable() method now right-aligns the name, rank, and score
columns, by giving their cells a different CSS class.
author | John "Elwin" Edwards |
---|---|
date | Thu, 02 Jan 2014 11:39:57 -0500 |
parents | e8f3b7994d88 |
children | 25843238434a |
line wrap: on
line source
#!/usr/bin/python3 # CGI script creating page of recent games import sys import time import rlgalldb as rlgall # It is assumed that sys.stdout uses UTF-8 encoding. If this is not the case, # configure the Web server to set the LC_CTYPE environment variable to a UTF-8 # locale. # The required header sys.stdout.write("Content-Type: text/html; charset=utf-8\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()