summaryrefslogtreecommitdiff
path: root/src/mailman/rest/testing/server.py
Commit message (Collapse)AuthorAgeFilesLines
* Clean a few more lints.Barry Warsaw2009-07-101-63/+0
| | | | | | | | | | | | | | Add get_mailing_lists() which is used just for the web interface. Because of a bug in lazr.restful, this cannot be a generator. Similar change in IDomainSet. Instrument IListManager to be vended through the api. The REST server must be run in a separate process since SQLite does not like objects created in one thread to be used in another thread. Note that this breaks the domain.txt test, but domains really need to be in the database anyway.
* Set testing threads as daemon so they won't hang.Barry Warsaw2009-06-291-0/+1
| | | | Fix system absolute url.
* A little bit of cleanup.Barry Warsaw2009-05-111-2/+1
|
* /sys -> /systemBarry Warsaw2009-05-041-1/+1
|
* A working test of the REST server. http://localhost:8001/3.0/sys returnsBarry Warsaw2009-05-041-0/+63
useful information. It's GET only atm.