Mercurial > hg > rlgallery-misc
view web/recent.cgi @ 55:e421ea2519ec
dgamelaunch: define user/group by name instead of UID/GID.
The user and group might not be created with the UID and GID expected,
so it is better to use names. They can be changed to numeric values
after installation.
author | John "Elwin" Edwards |
---|---|
date | Sun, 11 May 2014 08:32:31 -0700 |
parents | 25843238434a |
children | 44e8aaa20d02 |
line wrap: on
line source
#!/usr/bin/python3 # CGI script creating page of recent games import sys import time import 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()