From a8827206c38626528117a92cdfab63121023c5c1 Mon Sep 17 00:00:00 2001 From: Jean-Paul Smets <jp@nexedi.com> Date: Mon, 31 Dec 2007 10:30:48 +0000 Subject: [PATCH] Quick implementation of (missing) report_list. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18566 20353a03-c40f-0410-a6d1-a30d3c3de9de --- .../erp5_xhtml_style/list_main.xml | 4 +- .../erp5_xhtml_style/report_list.xml | 104 ++++++++++++++++++ 2 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/report_list.xml diff --git a/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/list_main.xml b/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/list_main.xml index fefdac11bc..9cbbe05110 100644 --- a/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/list_main.xml +++ b/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/list_main.xml @@ -58,8 +58,8 @@ <tal:block tal:define="form_action string:Base_doSelect;\n form_id form/id;\n list_mode python: True;\n - listmode_default_listbox python:form.listbox;\n - selection_name listmode_default_listbox/selection_name;\n + listmode_default_listbox python:getattr(form, \'listbox\', None);\n + selection_name listmode_default_listbox/selection_name | nothing;\n selection_index request/selection_index | python:0;\n dummy python: selection_name and request.set(\'selection_name\', selection_name);\n local_parameter_list local_parameter_list | python: {};\n diff --git a/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/report_list.xml b/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/report_list.xml new file mode 100644 index 0000000000..61748a789d --- /dev/null +++ b/product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/report_list.xml @@ -0,0 +1,104 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <tuple> + <global name="ZopePageTemplate" module="Products.PageTemplates.ZopePageTemplate"/> + <tuple/> + </tuple> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>__ac_local_roles__</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_owner</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>_text</string> </key> + <value> <string encoding="cdata"><![CDATA[ + +<tal:block xmlns:tal="http://xml.zope.org/namespaces/tal"\n + xmlns:metal="http://xml.zope.org/namespaces/metal"\n + xmlns:i18n="http://xml.zope.org/namespaces/i18n">\n + <tal:block tal:define="title string:${template/title_or_id} - ${here/Title}">\n + <tal:block metal:use-macro="here/list_main/macros/master">\n + <tal:block metal:fill-slot="main">\n + <tal:block metal:use-macro="here/form_render/macros/master" />\n + <tal:block tal:define="portal_object here/getPortalObject">\n + <tal:block tal:repeat="report_item report_method">\n + <tal:block tal:define="here python: report_item.getObject(portal_object);\n + dummy python: report_item.pushReport(portal_object)">\n + <span tal:condition="report_item/getTitle"\n + tal:content="report_item/getTitle"\n + tal:attributes="class string:report_title_level_${report_item/getLevel}" />\n + <tal:block tal:condition="report_item/getFormId">\n + <tal:block tal:define="form python:getattr(here,report_item.getFormId())" >\n + <tal:block metal:use-macro="here/form_render/macros/master" />\n + </tal:block>\n + </tal:block>\n + <tal:block tal:define="dummy python:report_item.popReport(portal_object)" />\n + </tal:block>\n + </tal:block>\n + </tal:block>\n + </tal:block>\n + </tal:block>\n + </tal:block>\n +</tal:block>\n + + +]]></string> </value> + </item> + <item> + <key> <string>content_type</string> </key> + <value> <string>text/html</string> </value> + </item> + <item> + <key> <string>expand</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>report_list</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> -- 2.30.9