[CMF-checkins] CVS: CMF/CMFCore/interfaces - CachingPolicyManager.py:1.4
Yvo Schubbe
schubbe@web.de
Mon, 6 Jan 2003 15:37:26 -0500
Update of /cvs-repository/CMF/CMFCore/interfaces
In directory cvs.zope.org:/tmp/cvs-serv19975/CMFCore/interfaces
Modified Files:
CachingPolicyManager.py
Log Message:
Merged yuppie-collector096-branch:
- Cleaned up Interfaces and API Help. (Collector #96)
- Removed deprecated 'register' module and interface.
=== CMF/CMFCore/interfaces/CachingPolicyManager.py 1.3 => 1.4 ===
--- CMF/CMFCore/interfaces/CachingPolicyManager.py:1.3 Wed Jul 3 14:01:35 2002
+++ CMF/CMFCore/interfaces/CachingPolicyManager.py Mon Jan 6 15:37:21 2003
@@ -10,15 +10,20 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
-
-"""Caching tool interface description.
+""" Caching policies tool interface.
$Id$
"""
-from Interface import Attribute, Base
+from Interface import Attribute
+try:
+ from Interface import Interface
+except ImportError:
+ # for Zope versions before 2.6.0
+ from Interface import Base as Interface
+
-class CachingPolicyManager( Base ):
+class CachingPolicyManager(Interface):
"""
Manage HTTP cache policies for skin methods.
"""