summaryrefslogtreecommitdiff
path: root/src/mailman/queue/http.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-24Better titleBarry Warsaw1-5/+5
2009-08-24Updates to documentation.Barry Warsaw3-21/+38
2009-08-24Documentation reorganization and update.Barry Warsaw21-670/+479
2009-08-21Post-release bump of version number.Barry Warsaw2-3/+8
2009-08-21NewsBarry Warsaw1-0/+1
2009-08-21Test updates and repair.xoBarry Warsaw42-85/+139
2009-08-21* Updated NEWS.txt for 3.0a3.Barry Warsaw11-225/+247
* Use the IListManager() adapter instead of hanging the list manager off of config.db. This makes the code somewhat cleaner.
2009-08-17mailmanctl must use absolute importsBarry Warsaw3-1/+5
Turn debug log level up to info so we're not spammed. Apparently we now have to add a \n to the stream output in emit().
2009-08-17Clean ups.Barry Warsaw1-5/+1
2009-08-17Use an adapter instead of custom handleException() code to return a 404Barry Warsaw2-10/+10
instead of a 500 for NotFound errors.
2009-08-17We don't need the AadminWebServiceRequest any more.Barry Warsaw2-11/+5
2009-08-17Use the new lazr.restful.simple.Publication as a base class.Barry Warsaw1-50/+7
2009-08-16The basics of 'mailman members --add'.Barry Warsaw3-1/+105
2009-08-16Refactor the subcommands so that the infrastructure does more of the menialBarry Warsaw6-44/+104
tasks. This also let's the bin/mailman command sort its subcommands for help printing. Add the outline of a 'members' subcommand.
2009-08-14Add the 'mailman remove' command.Barry Warsaw4-85/+137
2009-08-13Remove old fileBarry Warsaw1-130/+0
2009-08-13The language manager is not test-isolated. For now, just use a fake languageBarry Warsaw1-3/+3
code.
2009-08-12Tests for setting an owner and the language. A test for notifications, andBarry Warsaw3-28/+100
errors. Update newlist.txt.
2009-08-12Add more tests for the 'mailman create' command.Barry Warsaw1-0/+55
2009-08-12Add command line creation of mailing lists.Barry Warsaw2-3/+164
2009-08-12Refactor.Barry Warsaw1-3/+3
2009-08-12'mailman info' command.Barry Warsaw4-1/+109
2009-08-09bin/mailman help as an alias for bin/mailman --helpBarry Warsaw4-3/+53
2009-08-09Rename files inside src/mailman/commands to indicate whether it's an emailBarry Warsaw6-7/+4
command (eml_ prefix) or a command line interface (cli_ prefix). Fix a test breakage.
2009-08-09A start on the 'mailman' subcommand layout, with the help of argparse. RightBarry Warsaw11-261/+404
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.
2009-08-08Use Storm 0.15's new GenerationalCache.Barry Warsaw1-1/+2
2009-08-07Fix some urls returned by the api. Instead of 'mailing_lists' use 'lists'.Barry Warsaw4-10/+29
Also, extend the ListManager so that it implements IResolvePathNames, so that it can get() sub-mailing lists.
2009-08-06Pick some lint.Barry Warsaw3-4/+2
2009-08-06Minor fixes.Barry Warsaw2-2/+1
2009-08-06Get rid of the Traverse class by checking for None returned from ob.get().Barry Warsaw3-54/+5
2009-08-06Fix the turning of application level exceptions into HTTP 400 errors, throughBarry Warsaw4-7/+22
the improvement of the publication's handleException() method. Pick some lint in traverse.py.
2009-08-05Whitespace cleanupBarry Warsaw1-1/+0
2009-07-26Move BadDomainSpecificationError to domain.txt interface. Try to set this toBarry Warsaw9-14/+87
return an HTTP 400 error, though it does not seem to work. Expose list creation through the API.
2009-07-25* Expose IMailingLists in the API.Barry Warsaw4-14/+59
* Better titles in the IMailingList interface. * Expose the real_name attribute. * Refactor URL mappers.
2009-07-21Expose 'transaction' as an alias for config.db in the doctest globs. ThisBarry Warsaw6-9/+50
means commit() is now transaction.commit() in doctests. Add tests of extended domain creation, which exposes the need to unlock the database (via transaction.abort()) so that the foreground test process doesn't lock the background REST server process.
2009-07-20Our first writable REST API! You can now create new domains through theBarry Warsaw9-24/+112
webserver. Fix the https/http urls. Add the adapter for HTTPCharsets so POSTs work properly. Nice little cargo cult from lazr.restful.
2009-07-18De-u-literal-ify our doctests.Barry Warsaw52-415/+461
2009-07-17De-u-literal-ify our doctests.Barry Warsaw17-163/+164
2009-07-16Wow. Put domains into the database.Barry Warsaw29-263/+515
Add an IDomainManager and a global domain manager which can be gotten by adapting the global config object. Add an IDomainCollection interface for exposing the domain manager onto the API.
2009-07-10Clean a few more lints.Barry Warsaw14-90/+106
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.
2009-07-10Pick some lintBarry Warsaw3-10/+3
2009-07-04More lint picking.Barry Warsaw6-13/+17
Fix a documentation link.
2009-07-01Remove some unused stuff and pick some lint.Barry Warsaw2-74/+2
2009-06-30Basic Sphinx documentation generation.Barry Warsaw2-2/+17
2009-06-30Many pylint cleanups.Barry Warsaw15-41/+206
2009-06-30Integrate pylint and Sphinx documentation buildout targets.Barry Warsaw6-0/+441
* bin/lint.sh runs the linter (be very afraid) * bin/docs runs Sphinx over the documentation (needs refining) src/sphinxconf.py is an ugly hack to hook the buildout recipe so that we can ignore text files in our tree that are not documentation.
2009-06-29Implement returning multiple domains, a single specific domain, and raising aBarry Warsaw2-1/+87
404 if the named domain is missing.
2009-06-29Add an adapter for IDomain to IAbsoluteURL and add some zope.security onionsBarry Warsaw5-11/+56
to the varnish.
2009-06-29Set testing threads as daemon so they won't hang.Barry Warsaw3-4/+6
Fix system absolute url.
2009-06-29More REST server updates.Barry Warsaw15-103/+157
* Get rid of in-Python adapter registration in favor of ZCML. Eventually, I'd like to get rid of the ZCML. * Set the view_permission to None, but it's still not right. * Add IDomainSet and an adapter from Configuration to IDomainSet.