summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-06-07 21:33:44 +0000
committerbwarsaw2001-06-07 21:33:44 +0000
commitc134bb936a011992a35343454d44ec26939bdb6e (patch)
tree96aa19f2fa8f3420bc54e0c8cc4c788115afd26a
parente3fa9ac21ace757364bf1352e5c3d184280bc75b (diff)
downloadmailman-c134bb936a011992a35343454d44ec26939bdb6e.tar.gz
mailman-c134bb936a011992a35343454d44ec26939bdb6e.tar.zst
mailman-c134bb936a011992a35343454d44ec26939bdb6e.zip
-rw-r--r--Mailman/Cgi/create.py4
-rw-r--r--Mailman/Cgi/listinfo.py2
-rw-r--r--Mailman/Cgi/rmlist.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py
index 3cae3c905..f344e3ab5 100644
--- a/Mailman/Cgi/create.py
+++ b/Mailman/Cgi/create.py
@@ -206,7 +206,7 @@ def process_request(doc, cgidata):
table = Table(border=0, width='100%')
table.AddRow([Center(Bold(FontAttr(title, size='+1')))])
table.AddCellInfo(table.GetCurrentRowIndex(), 0,
- bgcolor=mm_cfg.WEB_HEADERCOLOR)
+ bgcolor=mm_cfg.WEB_HEADER_COLOR)
table.AddRow([_('''You have successfully created the mailing list
<b>%(listname)s</b> and notification has been sent to the list owner
<b>%(owner)s</b>. You can now:''')])
@@ -243,7 +243,7 @@ def request_creation(doc, cgidata=dummy, errmsg=None):
table = Table(border=0, width='100%')
table.AddRow([Center(Bold(FontAttr(title, size='+1')))])
table.AddCellInfo(table.GetCurrentRowIndex(), 0,
- bgcolor=mm_cfg.WEB_HEADERCOLOR)
+ bgcolor=mm_cfg.WEB_HEADER_COLOR)
# Add any error message
if errmsg:
table.AddRow([Header(3, Bold(
diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py
index e6e6f0058..a9ed8d787 100644
--- a/Mailman/Cgi/listinfo.py
+++ b/Mailman/Cgi/listinfo.py
@@ -78,7 +78,7 @@ def listinfo_overview(msg=''):
table = Table(border=0, width="100%")
table.AddRow([Center(Header(2, legend))])
table.AddCellInfo(table.GetCurrentRowIndex(), 0, colspan=2,
- bgcolor=mm_cfg.WEB_HEADERCOLOR)
+ bgcolor=mm_cfg.WEB_HEADER_COLOR)
# Skip any mailing lists that isn't advertised.
advertised = []
diff --git a/Mailman/Cgi/rmlist.py b/Mailman/Cgi/rmlist.py
index 3499886a5..7dd9054a5 100644
--- a/Mailman/Cgi/rmlist.py
+++ b/Mailman/Cgi/rmlist.py
@@ -152,7 +152,7 @@ def process_request(doc, cgidata, mlist):
table = Table(border=0, width='100%')
table.AddRow([Center(Bold(FontAttr(title, size='+1')))])
table.AddCellInfo(table.GetCurrentRowIndex(), 0,
- bgcolor=mm_cfg.WEB_HEADERCOLOR)
+ bgcolor=mm_cfg.WEB_HEADER_COLOR)
table.AddRow([_('''You have successfully deleted the mailing list
<b>%(listname)s</b>.''')])
doc.AddItem(table)
@@ -175,7 +175,7 @@ def request_deletion(doc, mlist, errmsg=None):
table = Table(border=0, width='100%')
table.AddRow([Center(Bold(FontAttr(title, size='+1')))])
table.AddCellInfo(table.GetCurrentRowIndex(), 0,
- bgcolor=mm_cfg.WEB_HEADERCOLOR)
+ bgcolor=mm_cfg.WEB_HEADER_COLOR)
# Add any error message
if errmsg: