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

Jens Vagelpohl jens at dataflake.org
Thu May 14 14:02:15 EDT 2009


Log message for revision 99958:
  - 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/branches/2.1/Products/CMFCore/CHANGES.txt
  U   Products.CMFCore/branches/2.1/Products/CMFCore/dtml/manageActionProviders.dtml

-=-
Modified: Products.CMFCore/branches/2.1/Products/CMFCore/CHANGES.txt
===================================================================
--- Products.CMFCore/branches/2.1/Products/CMFCore/CHANGES.txt	2009-05-14 17:59:21 UTC (rev 99957)
+++ Products.CMFCore/branches/2.1/Products/CMFCore/CHANGES.txt	2009-05-14 18:02:15 UTC (rev 99958)
@@ -4,7 +4,12 @@
 2.1.3-beta (unreleased)
 -----------------------
 
-- FSPageTemplate: Prevent reading the underlying file without doing
+- 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.
 
 - tool interfaces: Replace non-existing IMember interface with the

Modified: Products.CMFCore/branches/2.1/Products/CMFCore/dtml/manageActionProviders.dtml
===================================================================
--- Products.CMFCore/branches/2.1/Products/CMFCore/dtml/manageActionProviders.dtml	2009-05-14 17:59:21 UTC (rev 99957)
+++ Products.CMFCore/branches/2.1/Products/CMFCore/dtml/manageActionProviders.dtml	2009-05-14 18:02:15 UTC (rev 99958)
@@ -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