[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - configuration.py:1.6
Guido van Rossum
guido@python.org
Mon, 10 Mar 2003 17:36:41 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces/services
In directory cvs.zope.org:/tmp/cvs-serv16550
Modified Files:
configuration.py
Log Message:
Add two new methods: usageSummary() and implementationSummary().
These are supposed to return two text lines summarizing the
configuration object. This will be used in the new configuration
manager default view shortly.
=== Zope3/src/zope/app/interfaces/services/configuration.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/interfaces/services/configuration.py:1.5 Fri Mar 7 11:44:48 2003
+++ Zope3/src/zope/app/interfaces/services/configuration.py Mon Mar 10 17:36:40 2003
@@ -59,6 +59,12 @@
"""Method called when a configuration is made inactive
"""
+ def usageSummary():
+ """Text for line 1 of configuration manager summary"""
+
+ def implementationSummary():
+ """Text for line 2 of configuration manager summary"""
+
class INamedConfigurationInfo(Interface):
"""Configuration object that is registered by name