summaryrefslogtreecommitdiff
path: root/src/mailman/pipeline/acknowledge.py
Commit message (Collapse)AuthorAgeFilesLines
* Rename the src/mailman/pipeline directory to src/mailman/handlers since that'sBarry Warsaw2012-03-231-89/+0
| | | | how I think about them anyway.
* Schema change. After discussion at Pycon, we decided to change "real_name" toBarry Warsaw2012-03-151-3/+4
| | | | | | | | | | | "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)
* copybumpBarry Warsaw2012-01-011-1/+1
|
* Remove all pylint vestiges.Barry Warsaw2011-08-031-1/+0
|
* Utils.maketext() and Utils.findtext() are gone.Barry Warsaw2011-03-161-8/+10
|
* Move oneline() out of Utils.py.Barry Warsaw2011-02-251-1/+2
|
* Happy New Year.Barry Warsaw2011-01-011-1/+1
|
* Happy New Year.Barry Warsaw2010-01-011-1/+1
|
* Pick lint. Down to 4137 lines of warnings.Barry Warsaw2009-12-141-2/+2
|
* * Refactor the language manager off of the config object and into a utility.Barry Warsaw2009-12-101-2/+5
| | | | | | | | * Fix a few small typos in exception handlers. * Move the initialization of the Zope Component Architecture into the first initialization step. The only reason we couldn't do that previously was because the domain object referenced the config, causing a circularity problem. Refactor the Domain implementation to avoid that.
* Factor out most of the i18n subsystem and convert to using the flufl.i18nBarry Warsaw2009-11-151-1/+1
| | | | package.
* Much clean up of the language code, though more can be done. Factor out theBarry Warsaw2009-02-121-5/+8
| | | | | | | language manager stuff into a separate Language class, and be clearer in the APIs about whether we want a language code or a Language instance. The impetus to this was to get rid of Utils.GetCharSet(), which is done.
* Move mailman.Message to mailman.email.Message. Rename Message.get_sender() toBarry Warsaw2009-02-091-4/+4
| | | | | | | | | Message.sender (property) and Message.get_senders() to Message.senders (another property). The semantics of .sender is slightly different too; it no longer consults config.mailman.use_envelope_sender. Add absolute_import and unicode_literals to Utils.py, and clean up a few imports.
* Push the source directory into a 'src' subdirectory so that zc.buildout worksBarry Warsaw2009-01-251-0/+80
correctly regardless of how it's used.