Return a complete week as a table row.
(self, theweek)
| 484 | return '<td class="%s">%d</td>' % (self.cssclasses[weekday], day) |
| 485 | |
| 486 | def formatweek(self, theweek): |
| 487 | """ |
| 488 | Return a complete week as a table row. |
| 489 | """ |
| 490 | s = ''.join(self.formatday(d, wd) for (d, wd) in theweek) |
| 491 | return '<tr>%s</tr>' % s |
| 492 | |
| 493 | def formatweekday(self, day): |
| 494 | """ |
no test coverage detected