From 4683bd064689820562fdd31d6522045c5be33c55 Mon Sep 17 00:00:00 2001 From: Tokio Kikuchi Date: Fri, 16 Nov 2007 13:10:47 +0900 Subject: comments modified --- Mailman/Archiver/HyperArch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Mailman') diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index 5a177309..99b82e88 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -460,8 +460,8 @@ class Article(pipermail.Article): d["email_html"] = self.quote(self.email) d["title"] = self.quote(self.subject) d["subject_html"] = self.quote(self.subject) - # TK: _url variables are used to compose a response from the - # archive web page. So, ... + # TK: These two _url variables are used to compose a response + # from the archive web page. So, ... d["subject_url"] = 'Re: ' + url_quote(self.subject) d["in_reply_to_url"] = url_quote(self._message_id) if mm_cfg.ARCHIVER_OBSCURES_EMAILADDRS: -- cgit v1.2.3 From 5900a18ca1b4616db24f7a12b71b5cb653763c50 Mon Sep 17 00:00:00 2001 From: Tokio Kikuchi Date: Wed, 21 Nov 2007 14:21:24 +0900 Subject: small fix in mailto link subject --- Mailman/Archiver/HyperArch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Mailman') diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index 99b82e88..8cd000e7 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -462,7 +462,7 @@ class Article(pipermail.Article): d["subject_html"] = self.quote(self.subject) # TK: These two _url variables are used to compose a response # from the archive web page. So, ... - d["subject_url"] = 'Re: ' + url_quote(self.subject) + d["subject_url"] = url_quote('Re: ' + self.subject) d["in_reply_to_url"] = url_quote(self._message_id) if mm_cfg.ARCHIVER_OBSCURES_EMAILADDRS: # Point the mailto url back to the list -- cgit v1.2.3