[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/cache - cache.py:1.3.24.1 ram.py:1.4.12.1
Grégoire Weber
zope@i-con.ch
Sun, 22 Jun 2003 10:24:13 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/cache
In directory cvs.zope.org:/tmp/cvs-serv24874/src/zope/app/interfaces/cache
Modified Files:
Tag: cw-mail-branch
cache.py ram.py
Log Message:
Synced up with HEAD
=== Zope3/src/zope/app/interfaces/cache/cache.py 1.3 => 1.3.24.1 ===
--- Zope3/src/zope/app/interfaces/cache/cache.py:1.3 Mon Feb 3 10:59:13 2003
+++ Zope3/src/zope/app/interfaces/cache/cache.py Sun Jun 22 10:23:12 2003
@@ -18,7 +18,7 @@
from zope.interface import Interface
from zope.component import getService
from zope.component.exceptions import ComponentLookupError
-from zope.proxy.context import ContextProperty
+from zope.context import ContextProperty
from zope.schema import TextLine
from zope.app.interfaces.event import ISubscriber
=== Zope3/src/zope/app/interfaces/cache/ram.py 1.4 => 1.4.12.1 ===
--- 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 Sun Jun 22 10:23:12 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.""")