[Checkins] SVN: Products.CMFCore/trunk/Products/CMFCore/ - ActionsTool: The "Action Providers" tab in the ZMI did not render

Jens Vagelpohl jens at dataflake.org
Thu May 14 13:59:21 EDT 2009


Log message for revision 99957:
  - ActionsTool: The "Action Providers" tab in the ZMI did not render
    actions from the WorkflowTool correctly since those are not
    "new-style" actions.
    (https://bugs.launchpad.net/zope-cmf/+bug/322300)
  

Changed:
  U   Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt
  U   Products.CMFCore/trunk/Products/CMFCore/dtml/manageActionProviders.dtml

-=-
Modified: Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt	2009-05-14 17:06:06 UTC (rev 99956)
+++ Products.CMFCore/trunk/Products/CMFCore/CHANGES.txt	2009-05-14 17:59:21 UTC (rev 99957)
@@ -4,6 +4,11 @@
 2.2.0 (unreleased)
 ------------------
 
+- ActionsTool: The "Action Providers" tab in the ZMI did not render
+  actions from the WorkflowTool correctly since those are not 
+  "new-style" actions.
+  (https://bugs.launchpad.net/zope-cmf/+bug/322300)
+
 - FSPageTemplate: Prevent reading the underlying file without doing 
   anything with the data in some cases.
 

Modified: Products.CMFCore/trunk/Products/CMFCore/dtml/manageActionProviders.dtml
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/dtml/manageActionProviders.dtml	2009-05-14 17:06:06 UTC (rev 99956)
+++ Products.CMFCore/trunk/Products/CMFCore/dtml/manageActionProviders.dtml	2009-05-14 17:59:21 UTC (rev 99957)
@@ -32,7 +32,11 @@
           <dtml-if sequence-start>
            <ul>
           </dtml-if>
+          <dtml-try>
+            <li><dtml-var "_['sequence-item']['id']"></li>
+          <dtml-except>
             <li><dtml-var id></li>
+          </dtml-try>
           <dtml-if sequence-end>
            </ul>
           </dtml-if>



More information about the Checkins mailing list