summaryrefslogtreecommitdiff
path: root/src/mailman/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Convert to click for CLI optionsBarry Warsaw2017-07-221-2/+2
|
* Bump copyright years.Barry Warsaw2017-01-041-1/+1
|
* Use `atpublic` for @public instead of internal copy.Barry Warsaw2016-11-291-14/+0
|
* public() takes keyword arguments.Barry Warsaw2016-04-041-8/+9
|
* Clean up the interfaces directory.Barry Warsaw2016-03-251-13/+13
|
* First massive round of cleanups.Barry Warsaw2016-03-231-0/+13
| | | | | | | | * Get rid of explicit __all__ settings and use the @public decorator. * Get rid of ^L's * Use expected_count argument for get_queue_messages() * Various code modernizations. * Other minor changes to make flake8 happy.
* Happy New Year.Barry Warsaw2016-01-021-1/+1
|
* Bump copyright years.Barry Warsaw2015-01-041-1/+1
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-221-7/+0
|
* * Improve test coverage a bit.Barry Warsaw2014-11-111-2/+2
| | | | | * Shore up the coverage.ini file. * Fix up Link.__repr__()
* Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-281-2/+1
| | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* Bump copyright years.Barry Warsaw2014-01-011-1/+1
|
* Switch to virtualenv and nose2 instead of zc.buildout and zope.testing.Barry Warsaw2013-08-251-1/+1
|
* Bump copyright years.Barry Warsaw2013-01-011-1/+1
|
* copybumpBarry Warsaw2012-01-011-1/+1
|
* This is the way to build the documentation now:Barry Warsaw2011-09-231-5/+8
| | | | $ python setup.py build_sphinx
* Remove all pylint vestiges.Barry Warsaw2011-08-031-1/+0
|
* Happy New Year.Barry Warsaw2011-01-011-1/+1
|
* Complete the conversion to restish. All the tests pass and we're now actuallyBarry Warsaw2010-02-241-7/+0
| | | | | | RESTful. We have to use httplib2 to get DELETE and PUT. This is a prototype and could still use much cleanup.
* Happy New Year.Barry Warsaw2010-01-011-1/+1
|
* Pick lint. Down to 4137 lines of warnings.Barry Warsaw2009-12-141-0/+1
|
* Do not create the .mo files during setup. This makes things go much faster.Barry Warsaw2009-11-241-2/+12
| | | | | The tests do require a partial French translation for digester.txt, so just include the bare minimum, already msgfmt'd in the mailman.testing package.
* Factor out most of the i18n subsystem and convert to using the flufl.i18nBarry Warsaw2009-11-151-0/+5
| | | | package.
* Play much more nicely with buildout, and use a better mechanism for declaringBarry Warsaw2009-09-251-0/+9
| | | | | the namespace package. This gets things working on a fresh Ubuntu Karmic installation.
* Add initialization pre- and post- hooks, configurable in the config file.Barry Warsaw2009-05-151-0/+31
| | | | | | | | | | | This lets you run a bit of Python at various stages of the initialization process. Move the warnings filters to the top mailman package __init__.py so you always get it. lazr.restful is too chatty. The environment variable $MAILMAN_CONFIG_FILE now overrides -C. Hmm, I think we really want it the original way.
* Oops!Barry Warsaw2009-03-291-31/+0
|
* Add argparse 'cause I think this might end up being cool.Barry Warsaw2009-03-291-0/+31
| | | | | | | | Refactor the finding of components so that it's much easier to find and register the ones that come with Mailman by default. Move all the old cmd_*.py commands into the attic. These will eventually be ported to the new framework.
* Push the source directory into a 'src' subdirectory so that zc.buildout worksBarry Warsaw2009-01-251-0/+0
correctly regardless of how it's used.