summaryrefslogtreecommitdiff
path: root/src/mailman/app/docs/chains.rst (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move a doctest to the right directory.Barry Warsaw2015-04-161-344/+0
|
* Extended test helper subscribe() which takes an optional email address andBarry Warsaw2015-03-261-0/+1
| | | | returns the newly created member.
* Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-281-18/+18
| | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* * Mailing lists get multiple chains and pipelines. For example, normalBarry Warsaw2012-03-071-8/+8
| | | | | | | | | | | postings go through the `posting_chain` while messages to owners to through `owners_chain`. The default `built-in` chain is renamed to `default-posting-chain` while the `built-in` pipeline is renamed `default-posting-pipeline`. * Schema changes: - start_chain -> posting_chain - pipeline -> posting_pipeline
* * Held messages can now be moderated through the REST API. Mailing listBarry Warsaw2012-01-301-2/+2
| | | | | | | | | | | | | | | resources now accept a `held` path component. GETing this returns all held messages for the mailing list. POSTing to a specific request id under this url can dispose of the message using `Action` enums. * `IRequests` interface is removed. Now just use adaptation from `IListRequests` directly (which takes an `IMailingList` object). * `handle_message()` now allows for `Action.hold` which is synonymous with `Action.defer` (since the message is already being held). * `IListRequests.get_request()` now takes an optional `request_type` argument to narrow the search for the given request. - also, print_function is now a standard __future__ import. The template has been updated, but add this to modules as you edit them.
* Finally, all doctests are named .rstBarry Warsaw2011-09-231-0/+343