mirror of https://github.com/dirtbags/moth.git
79 lines
2.3 KiB
Python
Executable File
79 lines
2.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import cgitb; cgitb.enable()
|
|
import os
|
|
import config
|
|
import teams
|
|
import points
|
|
|
|
flags_dir = config.get('global', 'flags_dir')
|
|
house_team = config.get('global', 'house_team')
|
|
|
|
def main():
|
|
s = points.Storage()
|
|
|
|
categories = [(cat, s.cat_points(cat)) for cat in s.categories()]
|
|
|
|
print('Content-type: text/html')
|
|
print()
|
|
print('''<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<title>Scoreboard</title>
|
|
<link rel="stylesheet" href="%sctf.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<h1>Scoreboard</h1>
|
|
''' % config.base_url)
|
|
print('<table class="scoreboard">')
|
|
print('<tr>')
|
|
print('<th>Overall</th>')
|
|
for cat, score in categories:
|
|
print('<th>')
|
|
print(' %s (%d)' % (cat, score))
|
|
try:
|
|
fn = os.path.join(flags_dir, cat)
|
|
team = open(fn).read() or house_team
|
|
print(' <br/>')
|
|
print(' <!-- flag: %s --> flag: <span style="color: #%s">%s</span>'
|
|
% (cat, teams.color(team), team))
|
|
except IOError:
|
|
pass
|
|
print('</th>')
|
|
print('</tr>')
|
|
|
|
print('<tr>')
|
|
print('<td><ol>')
|
|
totals = []
|
|
for team in s.teams:
|
|
total = s.team_points(team)
|
|
totals.append((total, team))
|
|
for total, team in sorted(totals, reverse=True):
|
|
print('<li><span style="color: #%s;">%s (%0.3f)</span></li>'
|
|
% (teams.color(team), team, total))
|
|
print('</ol></td>')
|
|
for cat, total in categories:
|
|
print('<td>')
|
|
scores = sorted([(s.team_points_in_cat(cat, team), team) for team in s.teams])
|
|
for score, team in scores:
|
|
color = teams.color(team)
|
|
print('<div style="height: %f%%; overflow: hidden; background: #%s; color: black;">' % (float(score * 100)/total, color))
|
|
print('<!-- category: %s --> %s: %d' % (cat, team, score))
|
|
print('</div>')
|
|
print('</td>')
|
|
print('</tr>')
|
|
print('''</table>
|
|
|
|
<img src="histogram.png" alt=""/>
|
|
</body>
|
|
</html>''')
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|
|
# Local Variables:
|
|
# mode: python
|
|
# End:
|