------------------------------------------------------------
revno: 6591
committer: Barry Warsaw <[EMAIL PROTECTED]>
branch nick: 3.0
timestamp: Fri 2008-02-08 08:27:25 -0500
message:
  Mailman.handlers -> Mailman.pipeline
renamed:
  Mailman/handlers => Mailman/pipeline
modified:
  Mailman/pipeline/cleanse.py
  Mailman/pipeline/docs/ack-headers.txt
  Mailman/pipeline/docs/acknowledge.txt
  Mailman/pipeline/docs/after-delivery.txt
  Mailman/pipeline/docs/archives.txt
  Mailman/pipeline/docs/avoid-duplicates.txt
  Mailman/pipeline/docs/calc-recips.txt
  Mailman/pipeline/docs/cleanse.txt
  Mailman/pipeline/docs/cook-headers.txt
  Mailman/pipeline/docs/decorate.txt
  Mailman/pipeline/docs/digests.txt
  Mailman/pipeline/docs/file-recips.txt
  Mailman/pipeline/docs/filtering.txt
  Mailman/pipeline/docs/nntp.txt
  Mailman/pipeline/docs/reply-to.txt
  Mailman/pipeline/docs/replybot.txt
  Mailman/pipeline/docs/scrubber.txt
  Mailman/pipeline/docs/subject-munging.txt
  Mailman/pipeline/docs/tagger.txt
  Mailman/pipeline/to_digest.py
  Mailman/queue/docs/outgoing.txt

=== renamed directory 'Mailman/handlers' => 'Mailman/pipeline'
=== modified file 'Mailman/pipeline/cleanse.py'
--- a/Mailman/handlers/cleanse.py       2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/cleanse.py       2008-02-08 13:27:25 +0000
@@ -21,7 +21,7 @@
 
 from email.Utils import formataddr
 
-from Mailman.handlers.cook_headers import uheader
+from Mailman.pipeline.cook_headers import uheader
 
 log = logging.getLogger('mailman.post')
 

=== modified file 'Mailman/pipeline/docs/ack-headers.txt'
--- a/Mailman/handlers/docs/ack-headers.txt     2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/ack-headers.txt     2008-02-08 13:27:25 +0000
@@ -7,7 +7,7 @@
 changes depend on mailing list settings and others depend on how the message
 is getting sent through the system.  We'll take things one-by-one.
 
-    >>> from Mailman.handlers.cook_headers import process
+    >>> from Mailman.pipeline.cook_headers import process
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.subject_prefix = u''
 

=== modified file 'Mailman/pipeline/docs/acknowledge.txt'
--- a/Mailman/handlers/docs/acknowledge.txt     2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/acknowledge.txt     2008-02-08 13:27:25 +0000
@@ -5,7 +5,7 @@
 receive acknowledgments of their postings, Mailman will sent them such an
 acknowledgment.
 
-    >>> from Mailman.handlers.acknowledge import process
+    >>> from Mailman.pipeline.acknowledge import process
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.real_name = u'XTest'
     >>> mlist.preferred_language = u'en'

=== modified file 'Mailman/pipeline/docs/after-delivery.txt'
--- a/Mailman/handlers/docs/after-delivery.txt  2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/after-delivery.txt  2008-02-08 13:27:25 +0000
@@ -6,7 +6,7 @@
 bookkeeping pieces of information are updated.
 
     >>> import datetime
-    >>> from Mailman.handlers.after_delivery import process
+    >>> from Mailman.pipeline.after_delivery import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> post_time = datetime.datetime.now() - datetime.timedelta(minutes=10)

=== modified file 'Mailman/pipeline/docs/archives.txt'
--- a/Mailman/handlers/docs/archives.txt        2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/archives.txt        2008-02-08 13:27:25 +0000
@@ -7,7 +7,7 @@
 archivers to work in a separate process from the main Mailman delivery
 processes.
 
-    >>> from Mailman.handlers.to_archive import process
+    >>> from Mailman.pipeline.to_archive import process
     >>> from Mailman.queue import Switchboard
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')

=== modified file 'Mailman/pipeline/docs/avoid-duplicates.txt'
--- a/Mailman/handlers/docs/avoid-duplicates.txt        2008-01-24 10:18:02 
+0000
+++ b/Mailman/pipeline/docs/avoid-duplicates.txt        2008-02-08 13:27:25 
+0000
@@ -6,7 +6,7 @@
 recipients from the list of recipients that earlier handler modules
 (e.g. CalcRecips) calculates.
 
-    >>> from Mailman.handlers.avoid_duplicates import process
+    >>> from Mailman.pipeline.avoid_duplicates import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
 

=== modified file 'Mailman/pipeline/docs/calc-recips.txt'
--- a/Mailman/handlers/docs/calc-recips.txt     2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/calc-recips.txt     2008-02-08 13:27:25 +0000
@@ -5,7 +5,7 @@
 of recipient addresses.  These addresses are calculated by one of the handler
 modules and depends on a host of factors.
 
-    >>> from Mailman.handlers.calculate_recipients import process
+    >>> from Mailman.pipeline.calculate_recipients import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
 

=== modified file 'Mailman/pipeline/docs/cleanse.txt'
--- a/Mailman/handlers/docs/cleanse.txt 2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/cleanse.txt 2008-02-08 13:27:25 +0000
@@ -5,7 +5,7 @@
 related to additional permissions that can be granted to the message and other
 headers can be used to fish for membership.
 
-    >>> from Mailman.handlers.cleanse import process
+    >>> from Mailman.pipeline.cleanse import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
 

=== modified file 'Mailman/pipeline/docs/cook-headers.txt'
--- a/Mailman/handlers/docs/cook-headers.txt    2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/cook-headers.txt    2008-02-08 13:27:25 +0000
@@ -7,7 +7,7 @@
 changes depend on mailing list settings and others depend on how the message
 is getting sent through the system.  We'll take things one-by-one.
 
-    >>> from Mailman.handlers.cook_headers import process
+    >>> from Mailman.pipeline.cook_headers import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.subject_prefix = u''

=== modified file 'Mailman/pipeline/docs/decorate.txt'
--- a/Mailman/handlers/docs/decorate.txt        2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/decorate.txt        2008-02-08 13:27:25 +0000
@@ -5,7 +5,7 @@
 original message.  A handler module takes care of this based on the settings
 of the mailing list and the type of message being processed.
 
-    >>> from Mailman.handlers.decorate import process
+    >>> from Mailman.pipeline.decorate import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> msg_text = """\

=== modified file 'Mailman/pipeline/docs/digests.txt'
--- a/Mailman/handlers/docs/digests.txt 2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/digests.txt 2008-02-08 13:27:25 +0000
@@ -6,7 +6,7 @@
 digests, although only two are currently supported: MIME digests and RFC 1153
 (a.k.a. plain text) digests.
 
-    >>> from Mailman.handlers.to_digest import process
+    >>> from Mailman.pipeline.to_digest import process
     >>> from Mailman.queue import Switchboard
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')

=== modified file 'Mailman/pipeline/docs/file-recips.txt'
--- a/Mailman/handlers/docs/file-recips.txt     2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/file-recips.txt     2008-02-08 13:27:25 +0000
@@ -5,7 +5,7 @@
 include file.  This file must be called members.txt and it must live in the
 list's data directory.
 
-    >>> from Mailman.handlers.file_recipients import process
+    >>> from Mailman.pipeline.file_recipients import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
 

=== modified file 'Mailman/pipeline/docs/filtering.txt'
--- a/Mailman/handlers/docs/filtering.txt       2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/filtering.txt       2008-02-08 13:27:25 +0000
@@ -6,7 +6,7 @@
 message.  It does this with the MimeDel handler module, although other
 handlers can potentially do other kinds of finer level content filtering.
 
-    >>> from Mailman.handlers.mime_delete import process
+    >>> from Mailman.pipeline.mime_delete import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.preferred_language = u'en'

=== modified file 'Mailman/pipeline/docs/nntp.txt'
--- a/Mailman/handlers/docs/nntp.txt    2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/nntp.txt    2008-02-08 13:27:25 +0000
@@ -5,7 +5,7 @@
 be forwarded onto an NNTP newsgroup.  Typically this means Usenet, but since
 NNTP is to Usenet as IP is to the web, it's more general than that.
 
-    >>> from Mailman.handlers.to_usenet import process
+    >>> from Mailman.pipeline.to_usenet import process
     >>> from Mailman.queue import Switchboard
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')

=== modified file 'Mailman/pipeline/docs/reply-to.txt'
--- a/Mailman/handlers/docs/reply-to.txt        2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/reply-to.txt        2008-02-08 13:27:25 +0000
@@ -7,7 +7,7 @@
 changes depend on mailing list settings and others depend on how the message
 is getting sent through the system.  We'll take things one-by-one.
 
-    >>> from Mailman.handlers.cook_headers import process
+    >>> from Mailman.pipeline.cook_headers import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.subject_prefix = u''

=== modified file 'Mailman/pipeline/docs/replybot.txt'
--- a/Mailman/handlers/docs/replybot.txt        2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/replybot.txt        2008-02-08 13:27:25 +0000
@@ -6,7 +6,7 @@
 responses are subject to various conditions, such as headers in the original
 message or the amount of time since the last auto-response.
 
-    >>> from Mailman.handlers.replybot import process
+    >>> from Mailman.pipeline.replybot import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.real_name = u'XTest'

=== modified file 'Mailman/pipeline/docs/scrubber.txt'
--- a/Mailman/handlers/docs/scrubber.txt        2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/scrubber.txt        2008-02-08 13:27:25 +0000
@@ -6,7 +6,7 @@
 scrub attachments from messages so that binary goop doesn't end up in an
 archive message.
 
-    >>> from Mailman.handlers.scrubber import process, save_attachment
+    >>> from Mailman.pipeline.scrubber import process, save_attachment
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.preferred_language = u'en'

=== modified file 'Mailman/pipeline/docs/subject-munging.txt'
--- a/Mailman/handlers/docs/subject-munging.txt 2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/subject-munging.txt 2008-02-08 13:27:25 +0000
@@ -7,7 +7,7 @@
 changes depend on mailing list settings and others depend on how the message
 is getting sent through the system.  We'll take things one-by-one.
 
-    >>> from Mailman.handlers.cook_headers import process
+    >>> from Mailman.pipeline.cook_headers import process
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')
     >>> mlist.subject_prefix = u''

=== modified file 'Mailman/pipeline/docs/tagger.txt'
--- a/Mailman/handlers/docs/tagger.txt  2008-01-24 10:18:02 +0000
+++ b/Mailman/pipeline/docs/tagger.txt  2008-02-08 13:27:25 +0000
@@ -8,7 +8,7 @@
 its Subject: and Keywords: headers compared against these regular
 expressions.  The message then gets tagged with the topic names of each hit.
 
-    >>> from Mailman.handlers.tagger import process
+    >>> from Mailman.pipeline.tagger import process
     >>> from Mailman.queue import Switchboard
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')

=== modified file 'Mailman/pipeline/to_digest.py'
--- a/Mailman/handlers/to_digest.py     2008-02-08 04:01:48 +0000
+++ b/Mailman/pipeline/to_digest.py     2008-02-08 13:27:25 +0000
@@ -50,8 +50,8 @@
 from Mailman.Mailbox import Mailbox
 from Mailman.Mailbox import Mailbox
 from Mailman.configuration import config
-from Mailman.handlers.decorate import decorate
-from Mailman.handlers.scrubber import process as scrubber
+from Mailman.pipeline.decorate import decorate
+from Mailman.pipeline.scrubber import process as scrubber
 from Mailman.interfaces import DeliveryMode, DeliveryStatus
 from Mailman.queue import Switchboard
 
@@ -313,7 +313,7 @@
         else:
             print >> plainmsg, separator30
             print >> plainmsg
-        # Use Mailman.Handlers.Scrubber.process() to get plain text
+        # Use Mailman.pipeline.scrubber.process() to get plain text
         try:
             msg = scrubber(mlist, msg)
         except Errors.DiscardMessage:

=== modified file 'Mailman/queue/docs/outgoing.txt'
--- a/Mailman/queue/docs/outgoing.txt   2008-01-24 10:18:02 +0000
+++ b/Mailman/queue/docs/outgoing.txt   2008-02-08 13:27:25 +0000
@@ -9,7 +9,7 @@
 basically describes how to encode the recipient's address in the originator
 headers for unambigous bounce processing.
 
-    >>> from Mailman.handlers.to_outgoing import process
+    >>> from Mailman.pipeline.to_outgoing import process
     >>> from Mailman.queue import Switchboard
     >>> from Mailman.configuration import config
     >>> mlist = config.db.list_manager.create(u'[EMAIL PROTECTED]')



--
Primary development focus
https://code.launchpad.net/~mailman-coders/mailman/3.0

You are receiving this branch notification because you are subscribed to it.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to