summaryrefslogtreecommitdiff
path: root/src/mailman/app/tests/test_templates.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* New template system. Closes #249Barry Warsaw2016-07-161-125/+0
| | | | | The new template system is introduced for API 3.1. See ``src/mailman/rest/docs/templates.rst`` for details.
* First massive round of cleanups.Barry Warsaw2016-03-231-10/+2
| | | | | | | | * Get rid of explicit __all__ settings and use the @public decorator. * Get rid of ^L's * Use expected_count argument for get_queue_messages() * Various code modernizations. * Other minor changes to make flake8 happy.
* Happy New Year.Barry Warsaw2016-01-021-1/+1
|
* * The default languages from Mailman 2.1 have been ported over. Given byBarry Warsaw2015-05-071-2/+0
| | | | Aurélien Bompard.
* We don't need the 'six' package any more.Barry Warsaw2015-01-041-3/+2
|
* Bump copyright years.Barry Warsaw2015-01-041-1/+1
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-221-3/+0
|
* One more test fixed.Barry Warsaw2014-12-181-2/+2
|
* Checkpointing.Barry Warsaw2014-11-301-10/+10
| | | | | | | | | | By using `six` I think I have most of the imports squared away. There's probably still uses of `unicode` built-ins that need fixing. The idea is to first get the test suite running (which it doesn't yet), and then to fix tests. There's a bug in lazr.config which requires us to patch it for now.
* Trunk mergeBarry Warsaw2014-04-141-1/+1
|\
| * Bump copyright years.Barry Warsaw2014-01-011-1/+1
| |
* | Aurélien Bompard's import-from-2.1 branch, with cleanup and fixes.Barry Warsaw2014-04-141-0/+11
|\ \ | |/ |/|
| * Text templates should be in UTF-8Aurélien Bompard2013-10-211-0/+11
|/
* Bump copyright years.Barry Warsaw2013-01-011-1/+1
|
* * Python 2.7 is not required. Python 2.6 is no longer officially supported.Barry Warsaw2012-10-311-30/+12
| | | | | The code base is now also `python2.7 -3` clean, although there are still some warnings in 3rd party dependencies. LP: #1073506
* * Support downloading templates by URI, including mailman:// URIs. This isBarry Warsaw2012-03-031-0/+146
used in welcome and goodbye messages, and supports both language and mailing list specifications. E.g. mailman:///test@example.com/it/welc.txt * Schema changes: - welcome_msg -> welcome_message_uri - goodbye_msg -> goodbye_message_uri - send_welcome_msg -> send_welcome_message - send_goodbye_msg -> send_goodbye_message * New `ITemplateLoader` utility.