From 2cbba73102a2bb524934cbecbdccba91f41c2822 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Mon, 5 Nov 2001 23:12:53 +0000 Subject: password_input(): Daniel Buchmann rightly points out that the text explanation needs to be written to reflect the fact that password inputs are not on the general optinos page anymore. --- Mailman/Cgi/admin.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Mailman/Cgi/admin.py b/Mailman/Cgi/admin.py index 2e19f3220..f9ca3d167 100644 --- a/Mailman/Cgi/admin.py +++ b/Mailman/Cgi/admin.py @@ -501,7 +501,7 @@ def show_results(mlist, doc, category, subcat, cgidata): SubmitButton('allmodbit_btn', _('Set'))]) form.AddItem(table) elif category == 'passwords': - form.AddItem(Center(password_inputs())) + form.AddItem(Center(password_inputs(mlist))) form.AddItem(Center(submit_button())) else: form.AddItem(show_variables(mlist, category, subcat, cgidata, doc)) @@ -1042,7 +1042,8 @@ def mass_remove(mlist, container): -def password_inputs(): +def password_inputs(mlist): + adminurl = mlist.GetScriptURL('admin', absolute=1) table = Table(cellspacing=3, cellpadding=4) table.AddRow([Center(Header(2, _('Change list ownership passwords')))]) table.AddCellInfo(table.GetCurrentRowIndex(), 0, colspan=2, @@ -1060,8 +1061,8 @@ subscription requests, and disposing of held postings. Of course, the

In order to split the list ownership duties into administrators and moderators, you must set a separate moderator password in the fields below, -and also provide the email addresses of the list moderators in the section -above.""")]) +and also provide the email addresses of the list moderators in the +general options section.""")]) table.AddCellInfo(table.GetCurrentRowIndex(), 0, colspan=2) # Set up the admin password table on the left atable = Table(border=0, cellspacing=3, cellpadding=4, -- cgit v1.3.1