[Zope3-checkins]
SVN: Zope3/branches/jim-adapter/src/zope/app/mail/maildir.py
Correct documentation.
Brian Sutherland
jinty at web.de
Wed Apr 12 17:42:49 EDT 2006
Log message for revision 66916:
Correct documentation.
Changed:
U Zope3/branches/jim-adapter/src/zope/app/mail/maildir.py
-=-
Modified: Zope3/branches/jim-adapter/src/zope/app/mail/maildir.py
===================================================================
--- Zope3/branches/jim-adapter/src/zope/app/mail/maildir.py 2006-04-12 21:19:57 UTC (rev 66915)
+++ Zope3/branches/jim-adapter/src/zope/app/mail/maildir.py 2006-04-12 21:42:48 UTC (rev 66916)
@@ -27,13 +27,13 @@
IMaildirFactory, IMaildir, IMaildirMessageWriter
class Maildir(object):
- """See `zope.mail.interfaces.IMaildir`"""
+ """See `zope.sendmail.interfaces.IMaildir`"""
classProvides(IMaildirFactory)
implements(IMaildir)
def __init__(self, path, create=False):
- "See `zope.mail.interfaces.IMaildirFactory`"
+ "See `zope.sendmail.interfaces.IMaildirFactory`"
self.path = path
def access(path):
@@ -56,7 +56,7 @@
raise ValueError('%s is not a Maildir folder' % path)
def __iter__(self):
- "See `zope.mail.interfaces.IMaildir`"
+ "See `zope.sendmail.interfaces.IMaildir`"
join = os.path.join
subdir_cur = join(self.path, 'cur')
subdir_new = join(self.path, 'new')
@@ -71,7 +71,7 @@
return iter(new_messages + cur_messages)
def newMessage(self):
- "See `zope.mail.interfaces.IMaildir`"
+ "See `zope.sendmail.interfaces.IMaildir`"
# NOTE: http://www.qmail.org/man/man5/maildir.html says, that the first
# step of the delivery process should be a chdir. Chdirs and
# threading do not mix. Is that chdir really necessary?
@@ -98,7 +98,7 @@
class MaildirMessageWriter(object):
- """See `zope.mail.interfaces.IMaildirMessageWriter`"""
+ """See `zope.sendmail.interfaces.IMaildirMessageWriter`"""
implements(IMaildirMessageWriter)
More information about the Zope3-Checkins
mailing list