[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/component/configure.zcml Bugfix

Roger Ineichen roger at projekt01.ch
Wed Feb 8 10:53:22 EST 2006


Log message for revision 41581:
  Bugfix
  
  Added missing IInterface registration because the 
  "Interfaces" vocabulary will need it.
  
  This bug happens only if you use the "devmode off" 
  flag in zope.conf. Because the registration of "IInterface"
  happens in the not used apidoc configuration directives 
  with "devmode off".

Changed:
  U   Zope3/trunk/src/zope/app/component/configure.zcml

-=-
Modified: Zope3/trunk/src/zope/app/component/configure.zcml
===================================================================
--- Zope3/trunk/src/zope/app/component/configure.zcml	2006-02-08 15:45:34 UTC (rev 41580)
+++ Zope3/trunk/src/zope/app/component/configure.zcml	2006-02-08 15:53:21 UTC (rev 41581)
@@ -153,8 +153,13 @@
       />
 
 
+  <!-- the 'Interfaces' vocabulary below requires a registred IInterface -->
+  <interface
+      interface="zope.interface.interfaces.IInterface"
+      />
+
   <!-- Vocabularies -->
- 
+
   <vocabulary
       name="Interfaces"
       factory=".vocabulary.UtilityVocabulary"



More information about the Zope3-Checkins mailing list