Return a formatted year as a complete HTML page.
(self, theyear, width=3, css='calendar.css', encoding=None)
| 603 | return ''.join(v).encode(encoding, "xmlcharrefreplace") |
| 604 | |
| 605 | def formatyearpage(self, theyear, width=3, css='calendar.css', encoding=None): |
| 606 | """ |
| 607 | Return a formatted year as a complete HTML page. |
| 608 | """ |
| 609 | content = self.formatyear(theyear, width) |
| 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 | """ |