[Mailman-Developers] Another patch
Scott
scott@chronis.pobox.com
Sat, 7 Nov 1998 23:26:18 -0500
At this rate, you'll have 1.0b7 out in a week. keep going!
scott
On Sat, Nov 07, 1998 at 08:31:35PM -0800, Greg Stein wrote:
| This patch modifies the text in the subscription page. For
| list-admin-hidden lists, the text erroneously stated that list members
| could see the member list.
|
| -g
|
| --
| Greg Stein, http://www.lyra.org/
| Date: Sat, 7 Nov 1998 20:29:20 -0800
| From: The Mailman <mailman@cartman.lyra.org>
|
| *** HTMLFormatter.py-dist Sat Nov 7 16:07:54 1998
| --- HTMLFormatter.py Sat Nov 7 20:28:49 1998
| ***************
| *** 180,189 ****
| "administrator. You will be notified of the "
| "administrator's decision by email. ")
| also = "also "
| ! if self.private_roster:
| msg = msg + ("This is %sa private list, which means that "
| "the members list is not available to non-"
| "members. " % also)
| else:
| msg = msg + ("This is %sa public list, which means that the "
| "members list is openly available" % also)
| --- 180,193 ----
| "administrator. You will be notified of the "
| "administrator's decision by email. ")
| also = "also "
| ! if self.private_roster == 1:
| msg = msg + ("This is %sa private list, which means that "
| "the members list is not available to non-"
| "members. " % also)
| + elif self.private_roster:
| + msg = msg + ("This is %sa hidden list, which means that "
| + "the members list is available only to the "
| + "list administrator. " % also)
| else:
| msg = msg + ("This is %sa public list, which means that the "
| "members list is openly available" % also)
|