summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2000-03-15 00:31:22 +0000
committerbwarsaw2000-03-15 00:31:22 +0000
commit286dcc8531463623614cd1be9f520f7edc4d1703 (patch)
treebf26423122ea1432165b6572d773273ad13a8b20
parent893d3dde6ce0e8a02978b259799494bd2142ee26 (diff)
downloadmailman-286dcc8531463623614cd1be9f520f7edc4d1703.tar.gz
mailman-286dcc8531463623614cd1be9f520f7edc4d1703.tar.zst
mailman-286dcc8531463623614cd1be9f520f7edc4d1703.zip
Changes to Mailman's default footer so that open source logos for
Mailman, Python, and GNU are displayed. I'm not 100% sure I like this... Specifically, MAILMAN_URL: point this to the gnu.org subpage, instead of the list.org mirror. IMAGE_LOGOS: flag to specify whether logos are displayed or not (if not, then slogan alone in linked text is displayed).
-rw-r--r--Mailman/Defaults.py.in16
1 files changed, 11 insertions, 5 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index e110a7bbb..e1ad477a4 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -26,12 +26,18 @@ this file, to override the distributed defaults with site-specific ones.
import os
-# This is the Mailman homepage; you should not change it
-MAILMAN_URL = 'http://www.list.org/'
+# Should image logos be used? Set this to false to disable image logos from
+# "our sponsors" and just use textual links instead. Otherwise, this should
+# contain the URL base path to the logo images (and must contain the trailing
+# slash).. If you want to disable Mailman's logo footer altogther, hack
+# Mailman/htmlformat.py:MailmanLogo(), which also contains the hardcoded links
+# and image names.
+IMAGE_LOGOS = '/icons/'
-# The URL to the `Delivered by Mailman' image. This will be inserted verbatim
-# in an href. Set to 0 to disable using an img tag.
-DELIVERED_BY_URL = '/images/mailman.jpg'
+# Don't change MAILMAN_URL, unless you want to point it at the list.org
+# mirror.
+MAILMAN_URL = 'http://www.gnu.org/software/mailman/mailman.html'
+#MAILMAN_URL = 'http://www.list.org/'
# Many site-specific settings #