summaryrefslogtreecommitdiff
path: root/src/mailman/bin/qrunner.py
Commit message (Collapse)AuthorAgeFilesLines
* Factor out most of the i18n subsystem and convert to using the flufl.i18nBarry Warsaw2009-11-151-1/+1
| | | | package.
* A start on the 'mailman' subcommand layout, with the help of argparse. RightBarry Warsaw2009-08-091-0/+10
| | | | | | | | | | | | | now the only subcommand is 'lists' which displays all mailing lists like the old bin/list_lists command did (which is now removed). Remove bin/version since 'bin/mailman --version' does this for us. Simplify the calculation of the bin scripts; there will be many fewer of them. Extend i18n to use a class based structure. By default, all i18n strings are dedented after translation and substitution, which improves command line help. The class structure allows for overriding this behavior.
* Pick some lintBarry Warsaw2009-07-101-5/+0
|
* Refactor __import__'s into a separate utility module.Barry Warsaw2009-05-161-5/+4
|
* rsplit -> rpartitionBarry Warsaw2009-05-151-5/+5
|
* Linux signal management appears to work differently than OS X. Introduce aBarry Warsaw2009-05-111-2/+4
| | | | | runner flag to indicate whether the qrunner parent process should intercept signals or not. The REST server should not intercept signals.
* More tests for the REST server, this time, for the queue runner.Barry Warsaw2009-05-101-2/+2
| | | | | | | | | | | Add logging to the RESTRunner. Also, use pkg_resources.resource_stream() instead of .resource_string() where appropriate. Add a bunch of XXX comments for things I need to figure out about the Zope-ish parts of the lazr.restful implementation. Change __getitem__() api to _lookup().
* The very basics of a working REST server. Only works for localhost:8001/sysBarry Warsaw2009-05-031-6/+10
|
* Push the source directory into a 'src' subdirectory so that zc.buildout worksBarry Warsaw2009-01-251-0/+269
correctly regardless of how it's used.