[Zope3-checkins] CVS: Zope3/src/zope/app/index/text - configure.zcml:1.13

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Mar 9 07:39:17 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/index/text
In directory cvs.zope.org:/tmp/cvs-serv9698/src/zope/app/index/text

Modified Files:
	configure.zcml 
Log Message:


Removed permission attribute from factory directives, since all factories are
public now.




=== Zope3/src/zope/app/index/text/configure.zcml 1.12 => 1.13 ===
--- Zope3/src/zope/app/index/text/configure.zcml:1.12	Tue Mar  2 09:40:13 2004
+++ Zope3/src/zope/app/index/text/configure.zcml	Tue Mar  9 07:38:46 2004
@@ -1,25 +1,24 @@
 <configure xmlns="http://namespaces.zope.org/zope">
 
 <content class="zope.app.index.text.index.TextIndex">
-
+  <factory
+      id="zope.app.index.text.TextIndex"
+      />
   <require
       permission="zope.ManageServices"
       interface="zope.app.index.interfaces.text.IUITextIndex"
       attributes="query"
       />
-
-  <factory
-      id="zope.app.index.text.TextIndex"
-      permission="zope.ManageServices"
-      />
   <implements
       interface="zope.app.interfaces.services.query.IQueryProcessable"
       />
-
 </content>
 
-<content class="zope.app.index.text.index.TextCatalogIndex">
 
+<content class="zope.app.index.text.index.TextCatalogIndex">
+  <factory
+      id="zope.app.index.text.TextCatalogIndex"
+      />
   <require
       permission="zope.ManageServices"
       interface="zope.app.index.interfaces.text.IUITextCatalogIndex"
@@ -29,18 +28,10 @@
       permission="zope.ManageContent"
       set_schema="zope.app.index.interfaces.text.IUITextCatalogIndex"
       />
-
-  <factory
-      id="zope.app.index.text.TextCatalogIndex"
-      permission="zope.ManageServices"
-      />
   <implements
       interface="zope.app.interfaces.services.query.IQueryProcessable"
       />
-
 </content>
-
-
 
 
 <adapter




More information about the Zope3-Checkins mailing list