diff options
| author | bwarsaw | 1999-05-02 22:57:03 +0000 |
|---|---|---|
| committer | bwarsaw | 1999-05-02 22:57:03 +0000 |
| commit | 88ba70fa11b3c8b6e62d2abddf8cbb65b299a34b (patch) | |
| tree | a451bb501bc0e2b64b613a6610b5ad58c54ff40e | |
| parent | b5ae2cb96027fc712e25d568e66386b40510f042 (diff) | |
| download | mailman-88ba70fa11b3c8b6e62d2abddf8cbb65b299a34b.tar.gz mailman-88ba70fa11b3c8b6e62d2abddf8cbb65b299a34b.tar.zst mailman-88ba70fa11b3c8b6e62d2abddf8cbb65b299a34b.zip | |
| -rw-r--r-- | Mailman/HTMLFormatter.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py index 7c4e13c5c..e1bded148 100644 --- a/Mailman/HTMLFormatter.py +++ b/Mailman/HTMLFormatter.py @@ -27,6 +27,7 @@ import Utils from htmlformat import * + class HTMLFormatter: def InitVars(self): if self._internal_name: @@ -44,13 +45,6 @@ class HTMLFormatter: owners_html.AddItem(', ') # Remove the .Format() when htmlformat conversion is done. - if mm_cfg.DELIVERED_BY_URL: - img = Link(mm_cfg.MAILMAN_URL, - '<img src="%s" alt="Delivered by Mailman" border=0>' - ' v %s' % - (mm_cfg.DELIVERED_BY_URL, mm_cfg.VERSION)) - else: - img = 'Delivered by Mailman v %s' % mm_cfg.VERSION return Container( '<hr>', Address( @@ -59,7 +53,7 @@ class HTMLFormatter: self.real_name), ' list run by ', owners_html, - '<p>', img))).Format() + '<p>', MailmanLogo()))).Format() def SnarfHTMLTemplate(self, file): # XXX: hack, blech, yuk |
