[Zope3-checkins]
SVN: Zope3/branches/jim-adapter/src/zope/app/component/configure.zcml
Removed security declarations for no-longer-used components.
Jim Fulton
jim at zope.com
Tue Apr 18 19:56:13 EDT 2006
Log message for revision 67099:
Removed security declarations for no-longer-used components.
Also removed a registration of an unused adapter.
Changed:
U Zope3/branches/jim-adapter/src/zope/app/component/configure.zcml
-=-
Modified: Zope3/branches/jim-adapter/src/zope/app/component/configure.zcml
===================================================================
--- Zope3/branches/jim-adapter/src/zope/app/component/configure.zcml 2006-04-18 23:56:09 UTC (rev 67098)
+++ Zope3/branches/jim-adapter/src/zope/app/component/configure.zcml 2006-04-18 23:56:12 UTC (rev 67099)
@@ -3,12 +3,8 @@
<interface interface="zope.interface.Interface" />
- <!-- Registration Framework -->
-
- <class class=".registration.RegistrationManager">
- <factory
- id="zope.app.component.RegistrationManager"
- title="Registration Manager" />
+ <!-- Registration Framework Goes away in 3.5-->
+ <class class=".back35.RegistrationManager">
<implements
interface="zope.annotation.interfaces.IAttributeAnnotatable"
/>
@@ -24,29 +20,18 @@
<!-- ++registrations++ namespace registrations -->
<view
name="registrations" type="*"
- for=".interfaces.registration.IRegisterableContainer"
+ for=".back35.IRegisterableContainer"
provides="zope.traversing.interfaces.ITraversable"
- factory=".registration.RegistrationManagerNamespace"
+ factory=".back35.RegistrationManagerNamespace"
/>
<adapter
name="registrations"
- for=".interfaces.registration.IRegisterableContainer"
+ for=".back35.IRegisterableContainer"
provides="zope.traversing.interfaces.ITraversable"
- factory=".registration.RegistrationManagerNamespace"
+ factory=".back35.RegistrationManagerNamespace"
/>
- <class class=".registration.Registered">
- <allow attributes="registrations" />
- </class>
- <adapter
- for=".interfaces.registration.IRegisterable"
- provides=".interfaces.registration.IRegistered"
- factory=".registration.Registered"
- trusted="true"
- />
-
-
<!-- Site and Site Manager Framework -->
<module module=".interfaces">
@@ -65,11 +50,10 @@
zope.app.container.interfaces.IWriteContainer" />
</class>
- <class class=".site.UtilityRegistration">
+ <class class="zope.component.registry.UtilityRegistration">
<require
permission="zope.ManageSite"
- interface=".interfaces.IUtilityRegistration"
- set_schema=".interfaces.IUtilityRegistration"
+ interface="zope.component.interfaces.IUtilityRegistration"
/>
</class>
More information about the Zope3-Checkins
mailing list