[Mailman-Developers] Another patch

Greg Stein gstein@lyra.org
Sat, 07 Nov 1998 20:31:35 -0800


This is a multi-part message in MIME format.

--------------6A8F3BCA1FCCEE016CF700D9
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

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/

--------------6A8F3BCA1FCCEE016CF700D9
Content-Type: message/rfc822
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Received: from ns1.lyra.org (root@ns1.lyra.org [208.192.43.10])
	by svpal.svpal.org (8.9.0/8.9.0) with ESMTP id UAA06098
	for <gstein@svpal.org>; Sat, 7 Nov 1998 20:24:33 -0800 (PST)
Received: from cartman.lyra.org (cartman.lyra.org [208.192.43.15])
	by ns1.lyra.org (8.8.5/8.8.5) with ESMTP id UAA31146
	for <gstein@lyra.org>; Sat, 7 Nov 1998 20:29:40 -0800
Received: (from mailman@localhost)
	by cartman.lyra.org (8.8.7/8.8.7) id UAA05399
	for gstein@lyra.org; Sat, 7 Nov 1998 20:29:20 -0800
Date: Sat, 7 Nov 1998 20:29:20 -0800
From: The Mailman <mailman@cartman.lyra.org>
Message-Id: <199811080429.UAA05399@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)


--------------6A8F3BCA1FCCEE016CF700D9--