[Zope3-checkins] SVN: Zope3/branches/jim-adapter/src/zope/app/ Updated to use new names and locations.

Jim Fulton jim at zope.com
Tue Apr 18 19:56:00 EDT 2006


Log message for revision 67096:
  Updated to use new names and locations.
  

Changed:
  U   Zope3/branches/jim-adapter/src/zope/app/i18n/configure.zcml
  U   Zope3/branches/jim-adapter/src/zope/app/securitypolicy/configure.zcml

-=-
Modified: Zope3/branches/jim-adapter/src/zope/app/i18n/configure.zcml
===================================================================
--- Zope3/branches/jim-adapter/src/zope/app/i18n/configure.zcml	2006-04-18 23:55:46 UTC (rev 67095)
+++ Zope3/branches/jim-adapter/src/zope/app/i18n/configure.zcml	2006-04-18 23:55:50 UTC (rev 67096)
@@ -42,13 +42,13 @@
 
   <subscriber
        for=".interfaces.ILocalTranslationDomain
-            ..component.interfaces.registration.IRegistrationActivatedEvent"
+            zope.component.interfaces.IRegistered"
        handler=".translationdomain.setDomainOnActivation"
        />
 
   <subscriber
        for=".interfaces.ILocalTranslationDomain
-            ..component.interfaces.registration.IRegistrationDeactivatedEvent"
+            zope.component.interfaces.IUnregistered"
        handler=".translationdomain.unsetDomainOnDeactivation"
        />
 

Modified: Zope3/branches/jim-adapter/src/zope/app/securitypolicy/configure.zcml
===================================================================
--- Zope3/branches/jim-adapter/src/zope/app/securitypolicy/configure.zcml	2006-04-18 23:55:46 UTC (rev 67095)
+++ Zope3/branches/jim-adapter/src/zope/app/securitypolicy/configure.zcml	2006-04-18 23:55:50 UTC (rev 67096)
@@ -67,13 +67,13 @@
 
   <subscriber
      for=".interfaces.IRole
-         ..component.interfaces.registration.IRegistrationActivatedEvent"
+         zope.component.interfaces.IRegistered"
      handler=".role.setIdOnActivation"
      />
 
   <subscriber
      for=".interfaces.IRole
-          ..component.interfaces.registration.IRegistrationDeactivatedEvent"
+          zope.component.interfaces.IUnregistered"
      handler=".role.unsetIdOnDeactivation"
      />
 



More information about the Zope3-Checkins mailing list