Commit e26aef1f4748ab2ce71466a569c4a2d42534389c

Timecard: flip the days and put the weekend together (at the bottom).

Which are weekday projects and which are weekend projects?  Easier to
see now.

Also, it feels better to look down the week than up it.
  
4242 d.extend([i] * 24)
4343 chart.add_data(d)
4444
45 days = (0, 6, 5, 4, 3, 2, 1)
46
4547 sizes=[]
46 for d in range(7):
48 for d in days:
4749 sizes.extend([self.h["%d %02d" % (d, h)] for h in range(24)])
4850 sizes.extend([0] * 24)
4951 chart.add_data(sizes)
5052
5153 chart.set_axis_labels('x', [''] + [str(h) for h in range(24)] + [''])
5254 chart.set_axis_labels('y',
53 ['', 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', ''])
55 ['', 'Sun', 'Sat', 'Fri', 'Thu', 'Wed', 'Tue', 'Mon', ''])
5456
5557 chart.add_marker(1, 1.0, 'o', '333333', 25)
5658 return chart.get_url() + '&chds=-1,24,-1,7,0,20'