[Zope3-checkins] CVS: Zope3/src/zope/app/services - configure.zcml:1.77 servicenames.py:1.19 cache.py:NONE

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Mar 10 14:41:39 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv2886/src/zope/app/services

Modified Files:
	configure.zcml servicenames.py 
Removed Files:
	cache.py 
Log Message:


Removed the caching service. It was not providing much value anyways, so it was
easy.



Also, I updated the views in a way that SQL Script's chace support would work
again.



There is still much to do:



- zope.app.cache.caching does not have a formally defined API (interface)



- The CacheName field should be a vocabulary field.



- Views need to be updated to current form.


=== Zope3/src/zope/app/services/configure.zcml 1.76 => 1.77 ===
--- Zope3/src/zope/app/services/configure.zcml:1.76	Wed Mar 10 12:56:38 2004
+++ Zope3/src/zope/app/services/configure.zcml	Wed Mar 10 14:41:04 2004
@@ -1,8 +1,8 @@
 <configure
-    xmlns='http://namespaces.zope.org/zope'
-    xmlns:event='http://namespaces.zope.org/event'
-    xmlns:fssync='http://namespaces.zope.org/fssync'
-    i18n_domain='zope'
+    xmlns="http://namespaces.zope.org/zope"
+    xmlns:event="http://namespaces.zope.org/event"
+    xmlns:fssync="http://namespaces.zope.org/fssync"
+    i18n_domain="zope"
     >
 
 <!-- Registration registries -->
@@ -38,18 +38,6 @@
 
 <!-- Menu Service -->
 <include file="menu.zcml"/>
-
-<!-- Caching Service -->
-
-  <content class="zope.app.services.cache.CachingService">
-    <factory 
-          id="zope.services.CachingService" 
-          />
-      <require
-          permission="zope.View"
-          interface="zope.app.cache.interfaces.ICachingService"
-          />
-    </content>
 
 <!-- Service Manager -->
 


=== Zope3/src/zope/app/services/servicenames.py 1.18 => 1.19 ===
--- Zope3/src/zope/app/services/servicenames.py:1.18	Mon Mar  8 18:35:45 2004
+++ Zope3/src/zope/app/services/servicenames.py	Wed Mar 10 14:41:04 2004
@@ -19,11 +19,9 @@
 
 Authentication = 'Authentication'
 BrowserMenu = 'BrowserMenu'
-Caching = 'Caching'
 EventPublication = 'EventPublication'
 EventSubscription = 'Subscription'
 ErrorLogging = 'ErrorLogging'
 HubIds = 'HubIds'
 PrincipalAnnotation = 'PrincipalAnnotation'
 Workflows = 'Workflows'
-Utilities = 'Utilities'

=== Removed File Zope3/src/zope/app/services/cache.py ===




More information about the Zope3-Checkins mailing list