*************** *** 609,620 **** from mm_cfg import MAILMAN_URL PYTHON_URL = 'http://www.python.org/' GNU_URL = 'http://www.gnu.org/' # The names of the image logo files. These are concatentated onto # mm_cfg.IMAGE_LOGOS (not urljoined). DELIVERED_BY = 'mailman.jpg' PYTHON_POWERED = 'PythonPowered.png' GNU_HEAD = 'gnu-head-tiny.jpg' def MailmanLogo(): --- 609,622 ---- from mm_cfg import MAILMAN_URL PYTHON_URL = 'http://www.python.org/' GNU_URL = 'http://www.gnu.org/' + FREEBSD_URL = 'http://www.freebsd.org/' # The names of the image logo files. These are concatentated onto # mm_cfg.IMAGE_LOGOS (not urljoined). DELIVERED_BY = 'mailman.jpg' PYTHON_POWERED = 'PythonPowered.png' GNU_HEAD = 'gnu-head-tiny.jpg' + FREEBSD_POWERED = 'powerlogo.gif' def MailmanLogo(): *************** *** 626,642 **** '
version %s' % (logo(DELIVERED_BY), mm_cfg.VERSION) pylink = 'Python Powered' % \ logo(PYTHON_POWERED) - gnulink = 'GNU\'s Not Unix' % \ - logo(GNU_HEAD) - t.AddRow([mmlink, pylink, gnulink]) else: # use only textual links version = mm_cfg.VERSION mmlink = Link(MAILMAN_URL, _('Delivered by Mailman
version %(version)s')) pylink = Link(PYTHON_URL, _('Python Powered')) - gnulink = Link(GNU_URL, _("Gnu's Not Unix")) - t.AddRow([mmlink, pylink, gnulink]) return t --- 628,644 ---- '
version %s' % (logo(DELIVERED_BY), mm_cfg.VERSION) pylink = 'Python Powered' % \ logo(PYTHON_POWERED) + freebsdlink = 'Powered by FreeBSD' % \ + logo(FREEBSD_POWERED) + t.AddRow([mmlink, pylink, freebsdlink]) else: # use only textual links version = mm_cfg.VERSION mmlink = Link(MAILMAN_URL, _('Delivered by Mailman
version %(version)s')) pylink = Link(PYTHON_URL, _('Python Powered')) + freebsdlink = Link(FREEBSD_URL, "Powered by FreeBSD") + t.AddRow([mmlink, pylink, freebsdlink]) return t