[Testbot] Plone 5.0 - Python 2.7 - Build # 3889 - Still failing! - 0 failure(s)

jenkins at plone.org jenkins at plone.org
Tue Dec 30 13:28:21 UTC 2014


-------------------------------------------------------------------------------
Plone 5.0 - Python 2.7 - Build # 3889 - Still Failing!
-------------------------------------------------------------------------------

http://jenkins.plone.org/job/plone-5.0-python-2.7/3889/


-------------------------------------------------------------------------------
CHANGES
-------------------------------------------------------------------------------

Repository: plone.app.layout
Branch: refs/heads/master
Date: 2014-12-30T13:49:18+01:00
Author: Philip Bauer (pbauer) <bauer at starzel.de>
Commit: https://github.com/plone/plone.app.layout/commit/794f119eda3b057617ca1a712437cda08a425c85

Fix relateditems viewlet (tal:repeat is executed after tal:define).

Files changed:
M CHANGES.rst
M plone/app/layout/viewlets/document_relateditems.pt

diff --git a/CHANGES.rst b/CHANGES.rst
index 86a4941..842a1f1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -4,7 +4,8 @@ Changelog
 2.5.4 (unreleased)
 ------------------
 
-- Nothing changed yet.
+- Fix relateditems viewlet (tal:repeat is executed after tal:define).
+  [pbauer]
 
 
 2.5.3 (2014-11-01)
diff --git a/plone/app/layout/viewlets/document_relateditems.pt b/plone/app/layout/viewlets/document_relateditems.pt
index 917b711..c01dd27 100644
--- a/plone/app/layout/viewlets/document_relateditems.pt
+++ b/plone/app/layout/viewlets/document_relateditems.pt
@@ -4,36 +4,34 @@
      tal:condition="related">
     <div class="visualClear" id="clear-space-before-relatedItemBox"><!-- --></div>
     <div id="relatedItemBox"
-              tal:define="ploneview nocall:context/@@plone;
-                          normalizeString nocall:ploneview/normalizeString;
-                          tools nocall:context/@@plone_tools;
-                          wf_tool tools/workflow;
-                          getInfoFor python:wf_tool.getInfoFor;
+              tal:define="plone_view nocall:context/@@plone;
+                          plone_layout nocall:context/@@plone_layout;
+                          normalizeString nocall:plone_view/normalizeString;
+                          context_state nocall:context/@@plone_context_state;
                           site_properties context/portal_properties/site_properties;
                           use_view_action site_properties/typesUseViewActionInListings|python:();">
         <header i18n:translate="label_related_items">Related content</header>
         <ul>
-        <li repeat="item related"
-            tal:define="
-                    desc                item/Description;
-                    item_icon           python:ploneview.getIcon(item);
-                    item_type           item/portal_type;
-                    item_type_class     python:'contenttype-' + normalizeString(item_type);
-                    item_wf_state       item/review_state|python: getInfoFor(item, 'review_state', '');
-                    item_wf_state_class python: 'state-' + normalizeString(item_wf_state);
-                    item_url            item/getURL|item/absolute_url;
-                    item_url            python:(item_type in use_view_action) and item_url+'/view' or item_url">
-                <span tal:attributes="class item_type_class">
-                    <img tal:replace="structure item_icon/html_tag" />
-                    <a href="" class=""
-                       tal:attributes="href  item_url;
-                                       title desc;
-                                       class string:$item_wf_state_class"
-                       tal:content="item/pretty_title_or_id">
-                        Related Item
-                    </a>
-                </span>
-        </li>
+          <li tal:repeat="item related">
+            <span tal:define="desc                item/Description;
+                              item_icon           python:plone_layout.getIcon(item);
+                              item_type           item/portal_type;
+                              item_type_class     python:'contenttype-' + normalizeString(item_type);
+                              item_wf_state       item/review_state|python: context_state.workflow_state();
+                              item_wf_state_class python: 'state-' + normalizeString(item_wf_state);
+                              item_url            item/getURL|item/absolute_url;
+                              item_url            python:(item_type in use_view_action) and item_url+'/view' or item_url"
+                  tal:attributes="class item_type_class">
+              <img tal:replace="structure item_icon/html_tag" />
+              <a href="" class=""
+                 tal:attributes="href  item_url;
+                                 title desc;
+                                 class string:$item_wf_state_class"
+                 tal:content="item/pretty_title_or_id">
+                  Related Item
+              </a>
+            </span>
+          </li>
         </ul>
     </div>
 </div>




-------------------------------------------------------------------------------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: CHANGES.log
Type: application/octet-stream
Size: 4550 bytes
Desc: not available
URL: <http://lists.plone.org/pipermail/plone-testbot/attachments/20141230/5089ca12/attachment-0002.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: build.log
Type: application/octet-stream
Size: 96972 bytes
Desc: not available
URL: <http://lists.plone.org/pipermail/plone-testbot/attachments/20141230/5089ca12/attachment-0003.obj>


More information about the Testbot mailing list