[Zope3-checkins] CVS: Zope3/src/zope/app/container - configure.zcml:1.1.2.4
Guido van Rossum
guido@python.org
Tue, 24 Dec 2002 14:27:18 -0500
Update of /cvs-repository/Zope3/src/zope/app/container
In directory cvs.zope.org:/tmp/cvs-serv32672/src/zope/app/container
Modified Files:
Tag: NameGeddon-branch
configure.zcml
Log Message:
Fixed up a large number of zcml files.
Not enough to get z3.py to run though...
=== Zope3/src/zope/app/container/configure.zcml 1.1.2.3 => 1.1.2.4 ===
--- Zope3/src/zope/app/container/configure.zcml:1.1.2.3 Tue Dec 24 07:50:59 2002
+++ Zope3/src/zope/app/container/configure.zcml Tue Dec 24 14:26:47 2002
@@ -1,15 +1,3 @@
-<zopeConfigure xmlns='http://namespaces.zope.org/zope'>
-
- <adapter
- provides="zope.app.interfaces.container.find.IFind"
- for="zope.app.interfaces.container.IReadContainer"
- permission="zope.ManageContent"
- factory="zope.app.container.find.FindAdapter" />
-
- <include package=".Views" />
-
-</zopeConfigure>
-
<zopeConfigure
xmlns='http://namespaces.zope.org/zope'
xmlns:browser='http://namespaces.zope.org/browser'
@@ -17,7 +5,11 @@
xmlns:event="http://namespaces.zope.org/event"
>
- <include package=".Views" />
+ <adapter
+ provides="zope.app.interfaces.container.find.IFind"
+ for="zope.app.interfaces.container.IReadContainer"
+ permission="zope.ManageContent"
+ factory="zope.app.container.find.FindAdapter" />
<browser:view
name="_traverse"
@@ -48,11 +40,8 @@
for="zope.app.interfaces.container.IContainer" />
<event:subscribe
- subscriber = ".DependencyChecker.CheckDependency"
+ subscriber = ".dependency.CheckDependency"
event_types = "zope.app.interfaces.event.IObjectRemovedEvent"
/>
-
-
- <include package=".Find" />
</zopeConfigure>