summaryrefslogtreecommitdiff
path: root/src/mailman/commands/cli_inject.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-08-30fix testsAbhilash Raj1-3/+3
2015-08-30Add changes as per barry's commentsAbhilash Raj1-10/+16
2015-08-30Add tests for archive_url in message footerAbhilash Raj2-8/+95
2015-08-30Add some documentation for archiver links in footerAbhilash Raj1-0/+9
2015-08-30vars for templates are now per archiverAbhilash Raj1-1/+2
So you cannot pass a dictionary as variable in templates. Create a variable for each active archiver for the list. The variable is of the form of <archiver_name>_url i.e. 'hyperkitty_url'
2015-08-30don't add None values for archiver_urlAbhilash Raj1-2/+0
2015-08-30Choose which archiver to use in footerAbhilash Raj1-3/+4
2015-08-30Remove unused importAbhilash Raj1-1/+0
2015-08-30remove the archive_url from footer-generic.txtAbhilash Raj1-1/+0
2015-08-30Add link to archiver from ListArchiverSetAbhilash Raj1-5/+9
Not all enabled archivers in IArchivers are enabled for lists by default. The correct way is to search for enabled archivers in IListArchiver set and then get the permalink from the enabled ones
2015-08-30Add link to archives in the message footer.Abhilash Raj2-0/+8
Add a list of links to archives in the message footer defined in the footer-generic.txt
2015-08-24Refine REST server and request handler exception handling.Barry Warsaw1-3/+8
2015-08-23When the client hangs up, we can't actually catch the BrokenPipeError becauseBarry Warsaw1-1/+22
of the way Python stdlib's wsgiref.simple_server is structured. However, we can ensure that the error messages won't get printed to stderr, but to our http log file instead.
2015-08-18Turn off tying the -E test suite option to debugging the database logger.Barry Warsaw2-3/+6
SQLAlchemy is generally pretty chatty and usually not necessary to debug. Set use_poll=True in asyncore.loop() which improves Python 3.5 compatibility. We were getting OSErrors in stop() when using select under Python 3.5.
2015-08-17The MHonArc archiver must set stdin=PIPE when calling the subprocess. GivenBarry Warsaw5-4/+131
by Walter Doekes.
2015-08-13Style cleanup.Barry Warsaw1-7/+7