Return a formatted month as a complete HTML page.
(self, theyear, themonth, width=3, css='calendar.css', encoding=None)
| 610 | return self._format_html_page(theyear, content, css, encoding) |
| 611 | |
| 612 | def formatmonthpage(self, theyear, themonth, width=3, css='calendar.css', encoding=None): |
| 613 | """ |
| 614 | Return a formatted month as a complete HTML page. |
| 615 | """ |
| 616 | content = self.formatmonth(theyear, themonth, width) |
| 617 | return self._format_html_page(theyear, content, css, encoding) |
| 618 | |
| 619 | |
| 620 | class different_locale: |