diff options
| author | Barry Warsaw | 2008-06-15 00:01:55 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-06-15 00:01:55 -0400 |
| commit | ee349897c99a75da4da4698c64bee8cd0d743d97 (patch) | |
| tree | e2b00e3c9eb399d8dd77d6a60a30a996af57ed44 /mailman/interfaces/archiver.py | |
| parent | 67e437883d520bf7ea78ae55235892aa946ef0b4 (diff) | |
| parent | 3d192123461559445bd7e68ef163828bb51852e6 (diff) | |
| download | mailman-ee349897c99a75da4da4698c64bee8cd0d743d97.tar.gz mailman-ee349897c99a75da4da4698c64bee8cd0d743d97.tar.zst mailman-ee349897c99a75da4da4698c64bee8cd0d743d97.zip | |
Diffstat (limited to 'mailman/interfaces/archiver.py')
| -rw-r--r-- | mailman/interfaces/archiver.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/mailman/interfaces/archiver.py b/mailman/interfaces/archiver.py index 3b96c5c53..40b05b76c 100644 --- a/mailman/interfaces/archiver.py +++ b/mailman/interfaces/archiver.py @@ -24,14 +24,14 @@ from zope.interface import Interface, Attribute class IArchiver(Interface): """An interface to the archiver.""" - def get_list_url(mlist): + def list_url(mlist): """Return the url to the top of the list's archive. :param mlist: The IMailingList object. :returns: The url string. """ - def get_message_url(mlist, message): + def permalink(mlist, message): """Return the url to the message in the archive. This url points directly to the message in the archive. This method @@ -46,9 +46,6 @@ class IArchiver(Interface): def archive_message(mlist, message): """Send the message to the archiver. - This uses `get_message_url()` to calculate and return the url to the - message in the archives. - :param mlist: The IMailingList object. :param message: The message object. :returns: The url string or None if the message's archive url cannot |
