summaryrefslogtreecommitdiff
path: root/Mailman/Archiver/HyperArch.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Archiver/HyperArch.py')
-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>'