(self, content, **params)
| 104 | self.wfile.flush() |
| 105 | |
| 106 | def _format(self, content, **params): |
| 107 | if content: |
| 108 | for key, value in params.items(): |
| 109 | content = content.replace("<!%s!>" % key, value) |
| 110 | |
| 111 | return content |
| 112 | |
| 113 | def version_string(self): |
| 114 | return VERSION_STRING |