(self, note)
| 89 | return "".join(out) |
| 90 | |
| 91 | def rendernote(self, note): |
| 92 | if note: |
| 93 | return '<strong class="wrong">%s</strong>' % net.websafe(note) |
| 94 | else: |
| 95 | return "" |
| 96 | |
| 97 | def validates(self, source=None, _validate=True, **kw): |
| 98 | source = source or kw or web.input() |
no outgoing calls
no test coverage detected