[svn r6901] Modified the expo members list, and added three new photos. Yes, they're mostly pretty poor photos, but if you want to select better ones yourselves, hey, just send them to me.

This commit is contained in:
dave
2005-06-11 15:54:31 +02:00
parent 11d7f170de
commit ff0a35d410
5 changed files with 11 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ recordholders = []
output = ""
lines = sys.stdin.readlines()
headcounts_byyear = [0]*(len(lines[0].split(","))-5)
headcounts_byyear = [0]*(len(lines[0].split(","))-4)
for r in lines[1:]:
r = r.replace("\n","")
@@ -40,7 +40,11 @@ for r in lines[1:]:
if(years[y]=='-1'):
m = '<span class="didntcave">'+ m + '</span>'
else:
headcounts_byyear[y] += 1
try:
headcounts_byyear[y] += 1
except IndexError:
sys.stderr.write(repr(r) +":::"+ str(y) + "\n")
raise
output += '<td class="nonempty">' + m + '</td>'
else:
output += '<td></td>'