[Checkins] SVN: z3c.pt/trunk/ Made the Zope security declaration for the repeat dictionary be conditional on the presence of zope.app.security instead of zope.app.component.

Hanno Schlichting hannosch at hannosch.eu
Wed May 27 13:08:48 EDT 2009


Log message for revision 100482:
  Made the Zope security declaration for the repeat dictionary be conditional on the presence of zope.app.security instead of zope.app.component.
  

Changed:
  U   z3c.pt/trunk/CHANGES.txt
  U   z3c.pt/trunk/src/z3c/pt/configure.zcml

-=-
Modified: z3c.pt/trunk/CHANGES.txt
===================================================================
--- z3c.pt/trunk/CHANGES.txt	2009-05-27 17:05:33 UTC (rev 100481)
+++ z3c.pt/trunk/CHANGES.txt	2009-05-27 17:08:47 UTC (rev 100482)
@@ -1,6 +1,12 @@
 Changelog
 ---------
 
+1.0b17 (unreleased)
+~~~~~~~~~~~~~~~~~~~
+
+- Made the Zope security declaration for the repeat dictionary be conditional
+  on the presence of zope.app.security instead of zope.app.component.
+
 1.0b16 (2009/05/20)
 ~~~~~~~~~~~~~~~~~~~
 
@@ -104,7 +110,7 @@
   support for global ``path()`` and ``exists()`` functions for use in
   ``python:`` expressions (LP #317967).
 
-- Added Zope security  declaration for  the repeat dictionary (tales
+- Added Zope security declaration for the repeat dictionary (tales
   iterator). [malthe]
 
 1.0b6 (2008/12/18)

Modified: z3c.pt/trunk/src/z3c/pt/configure.zcml
===================================================================
--- z3c.pt/trunk/src/z3c/pt/configure.zcml	2009-05-27 17:05:33 UTC (rev 100481)
+++ z3c.pt/trunk/src/z3c/pt/configure.zcml	2009-05-27 17:08:47 UTC (rev 100482)
@@ -23,11 +23,11 @@
      name="exists"
      component=".expressions.exists_translator" />
 
-  <configure zcml:condition="installed zope.app.component">
-    
+  <configure zcml:condition="installed zope.app.security">
+
     <include package="zope.app.component" file="meta.zcml" />
     <include package="zope.app.security" file="meta.zcml" />
-    
+
     <class class="chameleon.core.utils.repeatitem">
       <allow interface="chameleon.core.interfaces.ITALESIterator" />
     </class>



More information about the Checkins mailing list