Commit ee947f0c authored by 's avatar

Removed Principia refs in docstrings.

parent b9c9afb2
......@@ -88,7 +88,7 @@
This product provides support for external methods, which allow
domain-specific customization of web environments.
"""
__version__='$Revision: 1.34 $'[11:-2]
__version__='$Revision: 1.35 $'[11:-2]
from Globals import Persistent, HTMLFile, MessageDialog, HTML
import OFS.SimpleItem, Acquisition
from string import split, join, find, lower
......@@ -102,7 +102,7 @@ manage_addExternalMethodForm=HTMLFile('methodAdd', globals())
def manage_addExternalMethod(self, id, title, module, function, REQUEST=None):
"""Add an external method to a folder
Un addition to the standard Principia object-creation arguments,
Un addition to the standard object-creation arguments,
'id' and title, the following arguments are defined:
function -- The name of the python function. This can be a
......@@ -133,13 +133,13 @@ class ExternalMethod(OFS.SimpleItem.Item, Persistent, Acquisition.Explicit,
The function is defined in an external file. This file is treated
like a module, but is not a module. It is not imported directly,
but is rather read and evaluated. The file must reside in the
'Extensions' subdirectory of the Principia installation, or in an
'Extensions' subdirectory of the Zope installation, or in an
'Extensions' subdirectory of a product directory.
Due to the way ExternalMethods are loaded, it is not *currently*
possible to use Python modules that reside in the 'Extensions'
directory. It is possible to load modules found in the
'lib/python' directory of the Principia installation, or in
'lib/python' directory of the Zope installation, or in
packages that are in the 'lib/python' directory.
"""
......
......@@ -82,7 +82,7 @@
# attributions are listed in the accompanying credits file.
#
##############################################################################
"""MailHost, a Principia SMTP object"""
"""SMTP mail objects"""
from Globals import Persistent, HTMLFile, HTML, MessageDialog
from socket import *; from select import select
......@@ -93,8 +93,8 @@ import OFS.SimpleItem, re, quopri, rfc822
import Globals
from cStringIO import StringIO
#$Id: MailHost.py,v 1.44 1999/07/21 14:26:00 jeffrey Exp $
__version__ = "$Revision: 1.44 $"[11:-2]
#$Id: MailHost.py,v 1.45 1999/11/03 14:42:15 brian Exp $
__version__ = "$Revision: 1.45 $"[11:-2]
smtpError = "SMTP Error"
MailHostError = "MailHost Error"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment