[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/ApplicationControl - IApplicationControl.py:1.2.20.1
Jim Fulton
jim@zope.com
Thu, 5 Dec 2002 05:02:45 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/ApplicationControl
In directory cvs.zope.org:/tmp/cvs-serv1902
Modified Files:
Tag: ctheune-fix_appcontrol-branch
IApplicationControl.py
Log Message:
Fixed doc strings to conform to style guide.
=== Zope3/lib/python/Zope/App/OFS/ApplicationControl/IApplicationControl.py 1.2 => 1.2.20.1 ===
--- Zope3/lib/python/Zope/App/OFS/ApplicationControl/IApplicationControl.py:1.2 Mon Jun 10 19:27:51 2002
+++ Zope3/lib/python/Zope/App/OFS/ApplicationControl/IApplicationControl.py Thu Dec 5 05:02:45 2002
@@ -21,13 +21,20 @@
""" """
def getStartTime():
- """Return the time when the ApplicationControl object has been instanciated
- in seconds since the epoch"""
+ """Get the process start time
+
+ Return the time when the ApplicationControl object has been
+ instanciated in seconds since the epoch"""
def registerView(name, title):
"""Register a view called <name> to be displayed in ApplicationControl
"""
def getListOfViews():
- """Return a sequence containing dictionaries with the registered views' names
- and titles mapped with the keys 'name' and 'title'"""
+ """Get the control view names
+
+ Return a sequence containing dictionaries with the registered
+ views' names and titles mapped with the keys 'name' and
+ 'title'
+
+ """