Return a month name as a table row.
(self, theyear, themonth, withyear=True)
| 505 | return '<tr>%s</tr>' % s |
| 506 | |
| 507 | def formatmonthname(self, theyear, themonth, withyear=True): |
| 508 | """ |
| 509 | Return a month name as a table row. |
| 510 | """ |
| 511 | _validate_month(themonth) |
| 512 | if withyear: |
| 513 | s = '%s %s' % (month_name[themonth], theyear) |
| 514 | else: |
| 515 | s = '%s' % month_name[themonth] |
| 516 | return '<tr><th colspan="7" class="%s">%s</th></tr>' % ( |
| 517 | self.cssclass_month_head, s) |
| 518 | |
| 519 | def formatmonth(self, theyear, themonth, withyear=True): |
| 520 | """ |
no test coverage detected