summaryrefslogtreecommitdiff
path: root/src/mailman/rest/docs/lists.rst (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'hide-system-disabled-archivers' into 'master' Barry Warsaw2016-11-261-4/+0
|\ | | | | | | | | | | | | | | | | | | | | | | Don't show the disabled archivers in the REST API Previously, system-disabled archivers were shown in the REST API. As a result it was possible to enable them without a validation error, but they would stay disabled on the next API GET call (their actual activation status depends on the list-specific *and* the system-wide status). Because one can't add a configuration overlay to the running REST server in testing mode, the prototype archiver was disabled in the testing configuration. This is where most of the changes in this commit come from. See merge request !87
| * Don't show the disabled archivers in the REST APIAurélien Bompard2016-08-181-4/+0
| | | | | | | | | | | | | | Because one can't add a configuration overlay to the running REST server in testing mode, the prototype archiver was disabled in the testing configuration. This is where most of the changes in this commit come from.
* | Full coverage.Barry Warsaw2016-10-261-7/+8
| | | | | | | | NEWS.
* | Implement the review suggestionsAurélien Bompard2016-10-261-3/+3
| | | | | | | | See !161
* | REST: add a query string to only get advertised listsAurélien Bompard2016-10-261-3/+27
|/
* Complete the port to Falcon 1.0.Barry Warsaw2016-04-021-0/+4
|
* Expose the "bump digest" and "send digest" functionality though the REST APIBarry Warsaw2015-12-221-0/+109
| | | | | | | via the ``<api>/lists/<list-id>/digest`` end-point. GETting this resource returns the ``next_digest_number`` and ``volume`` as the same values accessible through the list's configuraiton resource. POSTing to the resource with either ``send=True``, ``bump=True``, or both invokes the given action.
* Rework pagination to fix the 'start' and 'total_size' valuesAurélien Bompard2015-11-041-3/+3
|
* Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-281-2/+2
| | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* Add lists/<list-id>/archivers as the resource end-point.Barry Warsaw2013-11-271-0/+58
| | | | | | We won't set archivers in the list's configuration. Add doctests and unittests for archivers.
* Tweaks and fixes by Barry.Barry Warsaw2013-03-211-3/+5
|
* REST API: Added pagination functionality to list, member and user collections.Florian Fuchs2013-03-201-0/+43
| | | | This is related to LP: #1156529.
* * List styles are supported through the REST API. Get the list of availableBarry Warsaw2012-12-301-70/+69
| | | | | | | | | | | styles (by name) via `.../lists/styles`. Create a list in a specific style by using POST data `style_name=<style>`. (LP: #975692) Also: * Rewrite list.rst and some of configuration.rst to be more readable as documentation. Bad-path tests are moved to unittests. * Some improvements to printing lists as part of REST responses. This eliminates the ugly u''-prefixes on strings.
* * Add list_id to JSON representation for a mailing list (given by JimmyBarry Warsaw2012-09-221-11/+44
|\ | | | | | | | | | | | | | | Bergman). * The canonical resource for a mailing list (and thus its self_link) is now the URL with the list-id. To reference a mailing list, the list-id url is preferred, but for backward compatibility, the posting address is still accepted.
| * Add list_id to the REST API list representationJimmy Bergman2012-09-201-0/+3
|/
* * Mailing list resources now have a `member_count` attribute which gives theBarry Warsaw2012-03-151-0/+6
|\ | | | | | | number of subscribed members. Given by Toshio Kuratomi.
| * Fix up doctests for the addition of volume and member_count to the rest api ↵toshio2012-03-151-0/+6
| | | | | | | | lists
* | Schema change. After discussion at Pycon, we decided to change "real_name" toBarry Warsaw2012-03-151-3/+3
|/ | | | | | | | | | | "display_name" across the board. * `IMailingList.real_name` -> `IMailingList.display_name` * `IUser.real_name` -> `IUser.display_name` * `IAddress.real_name` -> `IAddress.display_name` * Schema changes: - real_name -> display_name (mailinglist, user, address)
* * New REST resource http://.../<domain>/lists can be GETed in order to findBarry Warsaw2011-08-301-0/+20
|\ | | | | | | | | all the mailing lists in a specific domain (LP: #829765). Given by Stephen A. Goss.
| * some tweaks to fix for LP: 829765 based on feedbackStephen A. Goss2011-08-231-4/+5
| |
| * REST API: add listing of mailing lists per domainStephen A. Goss2011-08-191-0/+18
|/
* * The IMailingList attribute ``host_name`` has been renamed to ``mail_host``Barry Warsaw2011-06-161-0/+129
for consistency. This changes the REST API for mailing list resources. (LP: #787599)