From 08a006d08a4c35d2c3ecc9a3d10cf7fd14661a84 Mon Sep 17 00:00:00 2001 From: Adam Weinberger Date: Tue, 29 Jul 2014 17:12:47 +0000 Subject: Rename all patches that contain '::' as a path separator, and use '__' instead. --- mail/mailman/files/patch-Mailman__htmlformat.py | 40 +++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 mail/mailman/files/patch-Mailman__htmlformat.py (limited to 'mail/mailman/files/patch-Mailman__htmlformat.py') diff --git a/mail/mailman/files/patch-Mailman__htmlformat.py b/mail/mailman/files/patch-Mailman__htmlformat.py new file mode 100644 index 000000000000..b4e2b0409bfc --- /dev/null +++ b/mail/mailman/files/patch-Mailman__htmlformat.py @@ -0,0 +1,40 @@ +--- Mailman/htmlformat.py.orig Sun Apr 21 17:27:02 2002 ++++ Mailman/htmlformat.py Fri Sep 27 16:17:48 2002 +@@ -600,12 +600,14 @@ + 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(): +@@ -617,17 +619,17 @@ + '
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]) ++ 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')) +- gnulink = Link(GNU_URL, _("Gnu's Not Unix")) +- t.AddRow([mmlink, pylink, gnulink]) ++ freebsdlink = Link(FREEBSD_URL, "Powered by FreeBSD") ++ t.AddRow([mmlink, pylink, freebsdlink]) + return t + + -- cgit v1.2.3