------------------------------------------------------------
revno: 1112
committer: Mark Sapiro <[email protected]>
branch nick: 2.2
timestamp: Wed 2010-06-23 21:13:31 -0700
message:
Fixed a bug which would fail to show a list on the admin and listinfo
overview pages if its web_page_url contained a :port. Bug # 597741.
modified:
Mailman/Cgi/admin.py
Mailman/Cgi/listinfo.py
NEWS
--
lp:mailman/2.2
https://code.launchpad.net/~mailman-coders/mailman/2.2
Your team Mailman Checkins is subscribed to branch lp:mailman/2.2.
To unsubscribe from this branch go to
https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription
=== modified file 'Mailman/Cgi/admin.py'
--- Mailman/Cgi/admin.py 2010-03-29 20:47:23 +0000
+++ Mailman/Cgi/admin.py 2010-06-24 04:13:31 +0000
@@ -233,8 +233,9 @@
for name in listnames:
mlist = MailList.MailList(name, lock=0)
if mlist.advertised:
- if mm_cfg.VIRTUAL_HOST_OVERVIEW and \
- mlist.web_page_url.find('/%s/' % hostname) == -1:
+ if mm_cfg.VIRTUAL_HOST_OVERVIEW and (
+ mlist.web_page_url.find('/%s/' % hostname) == -1 and
+ mlist.web_page_url.find('/%s:' % hostname) == -1):
# List is for different identity of this host - skip it.
continue
else:
=== modified file 'Mailman/Cgi/listinfo.py'
--- Mailman/Cgi/listinfo.py 2010-03-29 20:47:23 +0000
+++ Mailman/Cgi/listinfo.py 2010-06-24 04:13:31 +0000
@@ -89,8 +89,9 @@
for name in listnames:
mlist = MailList.MailList(name, lock=0)
if mlist.advertised:
- if mm_cfg.VIRTUAL_HOST_OVERVIEW and \
- mlist.web_page_url.find('/%s/' % hostname) == -1:
+ if mm_cfg.VIRTUAL_HOST_OVERVIEW and (
+ mlist.web_page_url.find('/%s/' % hostname) == -1 and
+ mlist.web_page_url.find('/%s:' % hostname) == -1):
# List is for different identity of this host - skip it.
continue
else:
=== modified file 'NEWS'
--- NEWS 2010-05-30 21:19:22 +0000
+++ NEWS 2010-06-24 04:13:31 +0000
@@ -87,6 +87,9 @@
Bug Fixes and other patches
+ - Fixed a bug which would fail to show a list on the admin and listinfo
+ overview pages if its web_page_url contained a :port. Bug # 597741.
+
- Fixed bin/genaliases to not throw TypeError when MTA = None.
Bug #587657.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org