[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/cache - ram.py:1.5
Jim Fulton
jim@zope.com
Sat, 21 Jun 2003 17:22:40 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/cache
In directory cvs.zope.org:/tmp/cvs-serv2745/src/zope/app/interfaces/cache
Modified Files:
ram.py
Log Message:
Major refactoring to reflect change in terminology from
"configuration" to "registration" to refer to the configuration of how
objects are used (as opposed to their internal configuration).
=== Zope3/src/zope/app/interfaces/cache/ram.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/interfaces/cache/ram.py:1.4 Thu Apr 24 17:01:25 2003
+++ Zope3/src/zope/app/interfaces/cache/ram.py Sat Jun 21 17:22:10 2003
@@ -20,9 +20,9 @@
from zope.app.interfaces.cache.cache import ICache
from zope.app.interfaces.event import ISubscriber
-from zope.app.interfaces.services.configuration import IUseConfigurable
+from zope.app.interfaces.services.registration import IRegisterable
-class IRAMCache(ICache, ISubscriber, IUseConfigurable):
+class IRAMCache(ICache, ISubscriber, IRegisterable):
"""Interface for the RAM Cache."""
maxEntries = Attribute("""A maximum number of cached values.""")