diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-05-07 09:53:30 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-05-07 09:53:30 +0900 |
commit | a4d68f6e3632c2dc2883ed3cd230e74bf04f5013 (patch) | |
tree | f34dcd7a44be1b53e966f34ce06a38c81a17c659 | |
parent | 0473ee6cb1997fb1a9f480dd9c929120b36d4e33 (diff) | |
parent | 86c1771a9cc63404ed1e258bbed6920021140eae (diff) | |
download | mailman2-a4d68f6e3632c2dc2883ed3cd230e74bf04f5013.tar.gz mailman2-a4d68f6e3632c2dc2883ed3cd230e74bf04f5013.tar.xz mailman2-a4d68f6e3632c2dc2883ed3cd230e74bf04f5013.zip |
merge lp:mailman/2.1 up to 1753
-rw-r--r-- | Mailman/Archiver/HyperArch.py | 9 | ||||
-rw-r--r-- | Mailman/Archiver/pipermail.py | 14 | ||||
-rw-r--r-- | Mailman/Cgi/listinfo.py | 1 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | scripts/driver | 7 |
5 files changed, 29 insertions, 14 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index 0c0e3356..1b0cdce5 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -56,6 +56,7 @@ from Mailman.Mailbox import ArchiverMailbox # Set up i18n. Assume the current language has already been set in the caller. _ = i18n._ +C_ = i18n.C_ gzip = None if mm_cfg.GZIP_ARCHIVE_TXT_FILES: @@ -912,7 +913,7 @@ class HyperArchive(pipermail.T): A string can be returned if the list only contains one entry, and the empty list is legal.""" res = self.dateToVolName(float(article.date)) - self.message(_("figuring article archives\n")) + self.message(C_("figuring article archives\n")) self.message(res + "\n") return res @@ -1050,7 +1051,7 @@ class HyperArchive(pipermail.T): self.depth=0 print self.html_head() if not self.THREADLAZY and self.type=='Thread': - self.message(_("Computing threaded index\n")) + self.message(C_("Computing threaded index\n")) self.updateThreadedIndex() def write_index_footer(self): @@ -1315,14 +1316,14 @@ class HyperArchive(pipermail.T): def update_article(self, arcdir, article, prev, next): seq = article.sequence filename = os.path.join(arcdir, article.filename) - self.message(_('Updating HTML for article %(seq)s')) + self.message(C_('Updating HTML for article %(seq)s')) try: f = open(filename) article.loadbody_fromHTML(f) f.close() except IOError, e: if e.errno <> errno.ENOENT: raise - self.message(_('article file %(filename)s is missing!')) + self.message(C_('article file %(filename)s is missing!')) article.prev = prev article.next = next omask = os.umask(002) diff --git a/Mailman/Archiver/pipermail.py b/Mailman/Archiver/pipermail.py index 9b0813b0..62fb92e8 100644 --- a/Mailman/Archiver/pipermail.py +++ b/Mailman/Archiver/pipermail.py @@ -20,7 +20,7 @@ from Mailman import mm_cfg from Mailman import Errors from Mailman.Mailbox import ArchiverMailbox from Mailman.Logging.Syslog import syslog -from Mailman.i18n import _ +from Mailman.i18n import _, C_ # True/False try: @@ -295,7 +295,7 @@ class T: if errno != 2: raise os.error, errdata else: - self.message(_('Creating archive directory ') + self.basedir) + self.message(C_('Creating archive directory ') + self.basedir) omask = os.umask(0) try: os.mkdir(self.basedir, self.DIRMODE) @@ -307,7 +307,7 @@ class T: if not reload: raise IOError f = open(os.path.join(self.basedir, 'pipermail.pck'), 'r') - self.message(_('Reloading pickled archive state')) + self.message(C_('Reloading pickled archive state')) d = pickle.load(f) f.close() for key, value in d.items(): @@ -334,7 +334,7 @@ class T: self.update_TOC = 0 self.write_TOC() # Save the collective state - self.message(_('Pickling archive state into ') + self.message(C_('Pickling archive state into ') + os.path.join(self.basedir, 'pipermail.pck')) self.database.close() del self.database @@ -446,7 +446,7 @@ class T: # dirtied or not. def update_archive(self, archive): self.archive = archive - self.message(_("Updating index files for archive [%(archive)s]")) + self.message(C_("Updating index files for archive [%(archive)s]")) arcdir = os.path.join(self.basedir, archive) self.__set_parameters(archive) @@ -479,7 +479,7 @@ class T: self._restore_stdout() def _update_thread_index(self, archive, arcdir): - self.message(_(" Thread")) + self.message(C_(" Thread")) self._open_index_file_as_stdout(arcdir, "thread") self.type = 'Thread' self.write_index_header() @@ -590,7 +590,7 @@ class T: # It was an unparseable message continue msgid = m.get('message-id', 'n/a') - self.message(_('#%(counter)05d %(msgid)s')) + self.message(C_('#%(counter)05d %(msgid)s')) a = self._makeArticle(m, self.sequence) self.sequence += 1 self.add_article(a) diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py index 428834ba..4f30108c 100644 --- a/Mailman/Cgi/listinfo.py +++ b/Mailman/Cgi/listinfo.py @@ -247,6 +247,7 @@ def list_listinfo(mlist, lang): if mm_cfg.RECAPTCHA_SITE_KEY: replacements['<mm-recaptcha-ui>'] = ( """<tr><td> </td><td> + <noscript>This form requires JavaScript.</noscript> <script src="https://www.google.com/recaptcha/api.js?hl=%s"> </script> <div class="g-recaptcha" data-sitekey="%s"></div> @@ -18,6 +18,14 @@ Here is a history of user visible changes to Mailman. Bug fixes and other patches + - Some messages from bin/arch were not issued in the charset of the system + locale when DISABLE_COMMAND_LOCALE_CSET is No. Thanks to Yasuhito + FUTATSUKI this is now fixed. (LP: #1768892) + + - The message displayed in the browser when accessing a Mailman CGI when + mm_cfg.py can't be imported due to some exception other than ImportError + has been improved. (LP: #1760506) + - The reimplementation of DELIVERY_RETRY_WAIT in 2.1.26 could cause extra dequeueing and requeueing in the out queue by OutgoingRunner. This is fixed. (LP: #1762871) @@ -31,6 +39,10 @@ Here is a history of user visible changes to Mailman. - A Python 2.7 dependency introduced with the reCAPTCHA feature in 2.1.26 has been removed. (LP: #1752658) + - The reCAPTCHA feature requires JavaScript. If JavaScript is not enabled, + a message will be displayed on the subscribe form that JavaScript is + required. (LP: #1769374) + 2.1.26 (04-Feb-2018) Security diff --git a/scripts/driver b/scripts/driver index 67ff0fdf..3c8f831b 100644 --- a/scripts/driver +++ b/scripts/driver @@ -1,6 +1,6 @@ # -*- python -*- -# Copyright (C) 1998-2013 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2018 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -143,7 +143,8 @@ def print_traceback(logfp=None): traceback = None try: from Mailman.mm_cfg import VERSION - except ImportError: + except: + # There could be any exception if mm_cfg.py is not valid python. VERSION = '<undetermined>' # Write to the log file first. @@ -182,7 +183,7 @@ a description of what happened. Thanks! print '''<p>Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibited, but the webmaster can find this information in the -Mailman error logs.''' +Mailman error logs or the web server logs.''' |