summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2000-08-01 22:00:05 +0000
committerbwarsaw2000-08-01 22:00:05 +0000
commita760e0e5dec0501950c57ac53d171069924ca8e9 (patch)
tree98a289b17ba1b3b55d38305d8d204e7091f85958
parent3dd550db1f3dffb2550559e83d0967588d204762 (diff)
downloadmailman-a760e0e5dec0501950c57ac53d171069924ca8e9.tar.gz
mailman-a760e0e5dec0501950c57ac53d171069924ca8e9.tar.zst
mailman-a760e0e5dec0501950c57ac53d171069924ca8e9.zip
GetAbsoluteScriptURL() => GetScriptURL(..., absolute=1)
Also, remove the link to Pipermail on Starship. This is way out of date.
Diffstat (limited to '')
-rw-r--r--Mailman/Archiver/HyperArch.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py
index e678a6494..8c3da5198 100644
--- a/Mailman/Archiver/HyperArch.py
+++ b/Mailman/Archiver/HyperArch.py
@@ -367,8 +367,7 @@ index_footer_template='''\
<p>
<hr>
<i>This archive was generated by
- <a href="http://starship.skyport.net/crew/amk/maintained/pipermail.html">
- Pipermail %(version)s</a>.</i>
+ Pipermail %(version)s.</i>
</BODY>
</HTML>
'''
@@ -447,7 +446,7 @@ class HyperArchive(pipermail.T):
def html_foot(self):
d = {"lastdate": html_quote(self.lastdate),
"archivedate": html_quote(self.archivedate),
- "listinfo": self.maillist.GetAbsoluteScriptURL('listinfo'),
+ "listinfo": self.maillist.GetScriptURL('listinfo', absolute=1),
"version": self.version}
for t in ("thread", "subject", "author", "date"):
cap = string.upper(t[0]) + t[1:]
@@ -463,7 +462,7 @@ class HyperArchive(pipermail.T):
d = {"listname": html_quote(self.maillist.real_name),
"archtype": self.type,
"archive": self.archive,
- "listinfo": self.maillist.GetAbsoluteScriptURL('listinfo'),
+ "listinfo": self.maillist.GetScriptURL('listinfo', absolute=1),
"firstdate": html_quote(self.firstdate),
"lastdate": html_quote(self.lastdate),
"size": self.size,
@@ -481,7 +480,8 @@ class HyperArchive(pipermail.T):
def html_TOC(self):
d = {"listname": self.maillist.real_name,
- "listinfo": self.maillist.GetAbsoluteScriptURL('listinfo') }
+ "listinfo": self.maillist.GetScriptURL('listinfo', absolute=1)
+ }
listing = ""
if not self.archives:
d["noarchive_msg"] = '<P>Currently, there are no archives. </P>'