[Checkins] SVN: z3c.macro/trunk/ - Presence of ``z3c.pt`` is not sufficient to register macro-utility, ``chameleon.zpt`` is required otherwise the factory for the utility is not defined.

Michael Howitz mh at gocept.com
Sat Mar 7 08:45:15 EST 2009


Log message for revision 97623:
  - Presence of ``z3c.pt`` is not sufficient to register macro-utility, ``chameleon.zpt`` is required otherwise the factory for the utility is not defined.
  

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

-=-
Modified: z3c.macro/trunk/CHANGES.txt
===================================================================
--- z3c.macro/trunk/CHANGES.txt	2009-03-07 13:29:29 UTC (rev 97622)
+++ z3c.macro/trunk/CHANGES.txt	2009-03-07 13:45:14 UTC (rev 97623)
@@ -5,7 +5,9 @@
 1.2.1 (unreleased)
 ------------------
 
-- ...
+- Presence of ``z3c.pt`` is not sufficient to register macro-utility,
+  ``chameleon.zpt`` is required otherwise the factory for the utility
+  is not defined.
 
 
 1.2.0 (2009-03-07)

Modified: z3c.macro/trunk/src/z3c/macro/configure.zcml
===================================================================
--- z3c.macro/trunk/src/z3c/macro/configure.zcml	2009-03-07 13:29:29 UTC (rev 97622)
+++ z3c.macro/trunk/src/z3c/macro/configure.zcml	2009-03-07 13:45:14 UTC (rev 97623)
@@ -11,11 +11,11 @@
       handler=".tales.MacroExpression"
       />
 
-  <configure zcml:condition="installed z3c.pt">
+  <configure zcml:condition="installed chameleon.zpt">
     <utility
        name="macro"
        component=".tales.z3cpt_macro_expression"
        />
   </configure>
-    
+
 </configure>



More information about the Checkins mailing list