#!/usr/bin/python import cgitb; cgitb.enable() import os import Config print """Content-Type: text/html\n\n""" print """\n\n""" head = open('head.html').read() % "Pflanzarr Results" print head print "

Results

" print open('links.html').read() try: winner = open(os.path.join(Config.DATA_PATH, 'winner')).read() except: winner = "No winner yet." print "

Last Winner: ", winner, '

' print "

Results so far:

" try: games = os.listdir(os.path.join('results')) except: print '

The results directory does not exist.' games = [] if not games: print "

No games have occurred yet." gameNums = [] for game in games: try: gameNums.append( int(game) ) except: continue gameNums.sort(reverse=True) # Don't include games that haven't completed i = 0 num = str(gameNums[i]) for i in range(len(gameNums)): path = os.path.join( 'results', str(gameNums[i]), 'results.html') if os.path.exists( path ): break gameNums = gameNums[i:] for num in gameNums: print '

%d - ' % num, print 'v' % num, print 'r' % num print ''