Commit 8c4f9794 authored by Wolfgang Schnerring's avatar Wolfgang Schnerring

rename zope.app.container to zope.container

parent c37fe987
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
provides=".interfaces.IFind" provides=".interfaces.IFind"
for=".interfaces.IReadContainer" for=".interfaces.IReadContainer"
permission="zope.ManageContent" permission="zope.ManageContent"
factory="zope.app.container.find.FindAdapter" factory="zope.container.find.FindAdapter"
/> />
<adapter <adapter
...@@ -25,33 +25,33 @@ ...@@ -25,33 +25,33 @@
/> />
<adapter <adapter
factory="zope.app.container.traversal.ContainerTraversable" factory="zope.container.traversal.ContainerTraversable"
provides="zope.traversing.interfaces.ITraversable" provides="zope.traversing.interfaces.ITraversable"
for="zope.app.container.interfaces.IReadContainer" for="zope.container.interfaces.IReadContainer"
/> />
<adapter <adapter
factory="zope.app.container.size.ContainerSized" factory="zope.container.size.ContainerSized"
provides="zope.size.interfaces.ISized" provides="zope.size.interfaces.ISized"
for="zope.app.container.interfaces.IReadContainer" for="zope.container.interfaces.IReadContainer"
/> />
<adapter <adapter
provides=".interfaces.INameChooser" provides=".interfaces.INameChooser"
for="zope.app.container.interfaces.IWriteContainer" for="zope.container.interfaces.IWriteContainer"
factory=".contained.NameChooser" factory=".contained.NameChooser"
/> />
<subscriber <subscriber
handler=".dependency.CheckDependency" handler=".dependency.CheckDependency"
for="zope.app.container.interfaces.IObjectRemovedEvent" for="zope.container.interfaces.IObjectRemovedEvent"
trusted="y" trusted="y"
/> />
<subscriber <subscriber
for="zope.location.interfaces.ILocation for="zope.location.interfaces.ILocation
zope.app.container.interfaces.IObjectMovedEvent" zope.container.interfaces.IObjectMovedEvent"
handler=".contained.dispatchToSublocations" handler=".contained.dispatchToSublocations"
> >
Handler dispatches moved events to sublocations of the original object. Handler dispatches moved events to sublocations of the original object.
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
<adapter <adapter
provides="zope.location.interfaces.ISublocations" provides="zope.location.interfaces.ISublocations"
for="zope.app.container.interfaces.IReadContainer" for="zope.container.interfaces.IReadContainer"
factory=".contained.ContainerSublocations" factory=".contained.ContainerSublocations"
/> />
...@@ -68,19 +68,19 @@ ...@@ -68,19 +68,19 @@
</class> </class>
<view <view
for="zope.app.container.interfaces.IItemContainer" for="zope.container.interfaces.IItemContainer"
type="zope.publisher.interfaces.browser.IBrowserRequest" type="zope.publisher.interfaces.browser.IBrowserRequest"
provides="zope.publisher.interfaces.browser.IBrowserPublisher" provides="zope.publisher.interfaces.browser.IBrowserPublisher"
factory="zope.app.container.traversal.ItemTraverser" factory="zope.container.traversal.ItemTraverser"
permission="zope.Public" permission="zope.Public"
allowed_interface="zope.publisher.interfaces.browser.IBrowserPublisher" allowed_interface="zope.publisher.interfaces.browser.IBrowserPublisher"
/> />
<view <view
for="zope.app.container.interfaces.ISimpleReadContainer" for="zope.container.interfaces.ISimpleReadContainer"
type="zope.publisher.interfaces.browser.IBrowserRequest" type="zope.publisher.interfaces.browser.IBrowserRequest"
provides="zope.publisher.interfaces.browser.IBrowserPublisher" provides="zope.publisher.interfaces.browser.IBrowserPublisher"
factory="zope.app.container.traversal.ItemTraverser" factory="zope.container.traversal.ItemTraverser"
permission="zope.Public" permission="zope.Public"
allowed_interface="zope.publisher.interfaces.browser.IBrowserPublisher" allowed_interface="zope.publisher.interfaces.browser.IBrowserPublisher"
/> />
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment