Mercurial > hg > rlgallery-misc
diff web/scoring/players/index.cgi @ 10:17f656035775
Import the web/scoring/ files.
author | John "Elwin" Edwards <elwin@sdf.org> |
---|---|
date | Wed, 05 Sep 2012 22:34:00 -0700 |
parents | |
children | e8f3b7994d88 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/scoring/players/index.cgi Wed Sep 05 22:34:00 2012 -0700 @@ -0,0 +1,32 @@ +#!/usr/bin/python + +import os +import sys +import rlgall + +playerdir = "/var/www/lighttpd/scoring/players/" +linkstr = '<li><a href="./{0}.html">{0}</a></li>\n' + +filelist = os.listdir(playerdir) +namelist = [] + +for filename in filelist: + if filename.endswith(".html"): + namelist.append(filename.rsplit(".html", 1)[0]) +namelist.sort() + +sys.stdout.write("Content-type: text/html\r\n\r\n") +sys.stdout.write(rlgall.phead.format("Players")) +sys.stdout.write(rlgall.ptop) +sys.stdout.write(rlgall.navscore.format("Players")) +sys.stdout.write(rlgall.pti.format("Players")) + +if not namelist: + sys.stdout.write("<p>No one is here.</p>\n") +else: + sys.stdout.write("<ul>\n") + for name in namelist: + sys.stdout.write(linkstr.format(name)) + sys.stdout.write("</ul>\n") + +sys.stdout.write(rlgall.pend)