(self, attrs=None)
| 378 | return '<%s: %s>' % (self.__class__.__name__, self.OutputString()) |
| 379 | |
| 380 | def js_output(self, attrs=None): |
| 381 | # Print javascript |
| 382 | return """ |
| 383 | <script type="text/javascript"> |
| 384 | <!-- begin hiding |
| 385 | document.cookie = \"%s\"; |
| 386 | // end hiding --> |
| 387 | </script> |
| 388 | """ % (self.OutputString(attrs).replace('"', r'\"')) |
| 389 | |
| 390 | def OutputString(self, attrs=None): |
| 391 | # Build up our result |