~barry/mailman/events-and-web

« back to all changes in this revision

Viewing changes to mailman/archiving/mhonarc.py

  • Committer: Barry Warsaw
  • Date: 2008-12-20 20:41:16 UTC
  • mto: This revision was merged to the branch mainline in revision 6649.
  • Revision ID: barry@list.org-20081220204116-s3n1gxqc75m439vq
Lots of changes to make bin/withlist work under a buildout environment.

mailman.configuration -> mailman.config.config
mailman.initialize -> mailma.core.initialize
mailman.loginit -> mailman.core.logging (yay future absolute imports!)

Convert all configurations to lazr.config, though some legacy still remains,
and I haven't been able to remove Defaults.py yet.  Added as_boolean() and
as_log_level() helpers for explicit type conversion.  Added a schema.cfg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
from urlparse import urljoin
33
33
from zope.interface import implements
34
34
 
35
 
from mailman.configuration import config
 
35
from mailman.config import config
36
36
from mailman.interfaces.archiver import IArchiver
37
37
 
38
38