[Zope3-checkins]
SVN: Zope3/branches/srichter-blow-services/src/zope/component/interfaces.py
Add adapters and utilities registry attributes to
ISiteManager interface.
Stephan Richter
srichter at cosmos.phy.tufts.edu
Thu Dec 30 13:24:43 EST 2004
Log message for revision 28708:
Add adapters and utilities registry attributes to ISiteManager interface.
Changed:
U Zope3/branches/srichter-blow-services/src/zope/component/interfaces.py
-=-
Modified: Zope3/branches/srichter-blow-services/src/zope/component/interfaces.py
===================================================================
--- Zope3/branches/srichter-blow-services/src/zope/component/interfaces.py 2004-12-30 17:44:22 UTC (rev 28707)
+++ Zope3/branches/srichter-blow-services/src/zope/component/interfaces.py 2004-12-30 18:24:43 UTC (rev 28708)
@@ -262,8 +262,18 @@
class ISiteManager(Interface):
- """ """
+ """Component Manager for a Site
+ This object manages the components registered at a particular site. The
+ definition of a site is intentionally vague.
+ """
+
+ adapters = Attribute("Adapter Registry to manage all registered "
+ "adapters.")
+
+ utilities = Attribute("Adapter Registry to manage all registered "
+ "utilities.")
+
def queryAdapter(object, interface, name, default=None):
"""Look for a named adapter to an interface for an object
More information about the Zope3-Checkins
mailing list