diff --git a/bt5/erp5_administration/ActionTemplateItem/portal_types/Template%20Tool/delete_obsolete_template_list.xml b/bt5/erp5_administration/ActionTemplateItem/portal_types/Template%20Tool/delete_obsolete_template_list.xml deleted file mode 100644 index f6f606259a74c2d29cf7eecdc66d0d9ed6bb66a3..0000000000000000000000000000000000000000 --- a/bt5/erp5_administration/ActionTemplateItem/portal_types/Template%20Tool/delete_obsolete_template_list.xml +++ /dev/null @@ -1,91 +0,0 @@ -<?xml version="1.0"?> -<ZopeData> - <record id="1" aka="AAAAAAAAAAE="> - <pickle> - <tuple> - <global name="ActionInformation" module="Products.CMFCore.ActionInformation"/> - <tuple/> - </tuple> - </pickle> - <pickle> - <dictionary> - <item> - <key> <string>action</string> </key> - <value> - <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> - </value> - </item> - <item> - <key> <string>categories</string> </key> - <value> - <tuple> - <string>action_type/object_action</string> - </tuple> - </value> - </item> - <item> - <key> <string>category</string> </key> - <value> <string>object_action</string> </value> - </item> - <item> - <key> <string>condition</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>description</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>icon</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>id</string> </key> - <value> <string>delete_obsolete_template_list</string> </value> - </item> - <item> - <key> <string>permissions</string> </key> - <value> - <tuple> - <string>Manage portal</string> - </tuple> - </value> - </item> - <item> - <key> <string>portal_type</string> </key> - <value> <string>Action Information</string> </value> - </item> - <item> - <key> <string>priority</string> </key> - <value> <float>50.0</float> </value> - </item> - <item> - <key> <string>title</string> </key> - <value> <string>Delete Obsolete Template List</string> </value> - </item> - <item> - <key> <string>visible</string> </key> - <value> <int>1</int> </value> - </item> - </dictionary> - </pickle> - </record> - <record id="2" aka="AAAAAAAAAAI="> - <pickle> - <tuple> - <global name="Expression" module="Products.CMFCore.Expression"/> - <tuple/> - </tuple> - </pickle> - <pickle> - <dictionary> - <item> - <key> <string>text</string> </key> - <value> <string>string:${object_url}/TemplateTool_viewDeleteObsoleteTemplateListDialog</string> </value> - </item> - </dictionary> - </pickle> - </record> -</ZopeData> diff --git a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/SimulationMovement_view.xml b/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/SimulationMovement_view.xml index 4d991b0b3ac100d31b2aba01c6cd1790351f8edd..9662c3c28801727b1bdff9fa20425b9413bbdcc1 100644 --- a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/SimulationMovement_view.xml +++ b/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/SimulationMovement_view.xml @@ -86,6 +86,7 @@ <value> <list> <string>my_categories_list</string> + <string>my_recorded_property_list</string> </list> </value> </item> diff --git a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_deleteObsoleteTemplateList.xml b/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_deleteObsoleteTemplateList.xml index aa27a65bc991f25455e277513d6a0c2e74e33af6..1fdf6684b36d055b314456b9d1a38f0a4d21813e 100644 --- a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_deleteObsoleteTemplateList.xml +++ b/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_deleteObsoleteTemplateList.xml @@ -53,21 +53,29 @@ </item> <item> <key> <string>_body</string> </key> - <value> <string>portal = context.getPortalObject()\n -uid_list = portal.portal_selections.getSelectionCheckedUidsFor(\'delete_template_list_selection\')\n + <value> <string encoding="cdata"><![CDATA[ + +portal_templates = context.getPortalObject().portal_templates\n +delete_list = []\n +bt_list = portal_templates.objectValues()\n +for bt in bt_list:\n + bt_id = bt.getId()\n + installation_state = bt.getInstallationState()\n + if installation_state in (\'deleted\', \'replaced\'):\n + delete_list.append(bt_id)\n + elif installation_state == \'not_installed\':\n + if len([x for x in bt_list \\\n + if x.getTitle() == bt.getTitle() and \\\n + x.getInstallationState() == \'installed\' and \\\n + int(x.getRevision() or \'0\') > int(bt.getRevision() or \'0\')]):\n + delete_list.append(bt_id)\n \n -if uid_list:\n - # if parameter is empty, catalog query will discard it and return all objects.\n - id_list = [content.getId() for content in portal.portal_catalog(uid=uid_list)]\n - message = \'Templates deleted: ${len_template_list}.\'\n - mapping = {\'len_template_list\': len(id_list)}\n - context.manage_delObjects(id_list)\n - translated_message = context.Base_translateString(message, mapping=mapping)\n -else:\n - translated_message = context.Base_translateString(\'No Business Template deleted.\')\n -\n -portal.ERP5Site_redirect(context.getAbsoluteUrl(), keep_items={\'portal_status_message\': translated_message})\n -</string> </value> +print \'Deleted id list:%r\' % delete_list\n +portal_templates.manage_delObjects(delete_list)\n +return printed\n + + +]]></string> </value> </item> <item> <key> <string>_code</string> </key> @@ -77,7 +85,7 @@ portal.ERP5Site_redirect(context.getAbsoluteUrl(), keep_items={\'portal_status_m </item> <item> <key> <string>_params</string> </key> - <value> <string>*args, **kw</string> </value> + <value> <string></string> </value> </item> <item> <key> <string>errors</string> </key> @@ -103,21 +111,22 @@ portal.ERP5Site_redirect(context.getAbsoluteUrl(), keep_items={\'portal_status_m <key> <string>co_varnames</string> </key> <value> <tuple> - <string>args</string> - <string>kw</string> + <string>_print_</string> + <string>_print</string> <string>_getattr_</string> <string>context</string> - <string>portal</string> - <string>uid_list</string> - <string>append</string> - <string>$append0</string> + <string>portal_templates</string> + <string>delete_list</string> + <string>bt_list</string> <string>_getiter_</string> - <string>content</string> - <string>id_list</string> - <string>message</string> + <string>bt</string> + <string>bt_id</string> + <string>installation_state</string> <string>len</string> - <string>mapping</string> - <string>translated_message</string> + <string>append</string> + <string>$append0</string> + <string>x</string> + <string>int</string> </tuple> </value> </item> diff --git a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_getObsoleteTemplateList.xml b/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_getObsoleteTemplateList.xml deleted file mode 100644 index 7c1bc7c636be467547614611ba542fe22ead7d50..0000000000000000000000000000000000000000 --- a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_getObsoleteTemplateList.xml +++ /dev/null @@ -1,161 +0,0 @@ -<?xml version="1.0"?> -<ZopeData> - <record id="1" aka="AAAAAAAAAAE="> - <pickle> - <tuple> - <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> - <tuple/> - </tuple> - </pickle> - <pickle> - <dictionary> - <item> - <key> <string>Script_magic</string> </key> - <value> <int>3</int> </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_container</string> </key> - <value> <string>container</string> </value> - </item> - <item> - <key> <string>name_context</string> </key> - <value> <string>context</string> </value> - </item> - <item> - <key> <string>name_m_self</string> </key> - <value> <string>script</string> </value> - </item> - <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>_body</string> </key> - <value> <string encoding="cdata"><![CDATA[ - -portal = context.getPortalObject()\n -obsolete_list = []\n -\n -business_template_list = context.objectValues(**kw)\n -for business_template in business_template_list:\n - business_template_id = business_template.getId()\n - installation_state = business_template.getInstallationState()\n - if installation_state in (\'deleted\', \'replaced\'):\n - obsolete_list.append(business_template)\n - elif installation_state == \'not_installed\':\n - if len([x for x in business_template_list \\\n - if x.getTitle() == business_template.getTitle() and \\\n - x.getInstallationState() == \'installed\' and \\\n - int(x.getRevision() or \'0\') > int(business_template.getRevision() or \'0\')]):\n - obsolete_list.append(business_template)\n -\n -# Select all by default in selection\n -uid_list = [business_template.getUid() for business_template in obsolete_list]\n -portal.portal_selections.setSelectionCheckedUidsFor(kw.get(\'selection_name\'), uid_list)\n -return obsolete_list\n - - -]]></string> </value> - </item> - <item> - <key> <string>_code</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>_params</string> </key> - <value> <string>*args, **kw</string> </value> - </item> - <item> - <key> <string>errors</string> </key> - <value> - <tuple/> - </value> - </item> - <item> - <key> <string>func_code</string> </key> - <value> - <object> - <klass> - <global name="FuncCode" module="Shared.DC.Scripts.Signature"/> - </klass> - <tuple/> - <state> - <dictionary> - <item> - <key> <string>co_argcount</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>co_varnames</string> </key> - <value> - <tuple> - <string>args</string> - <string>kw</string> - <string>_getattr_</string> - <string>context</string> - <string>portal</string> - <string>obsolete_list</string> - <string>_apply_</string> - <string>business_template_list</string> - <string>_getiter_</string> - <string>business_template</string> - <string>business_template_id</string> - <string>installation_state</string> - <string>len</string> - <string>append</string> - <string>$append0</string> - <string>x</string> - <string>int</string> - <string>uid_list</string> - </tuple> - </value> - </item> - </dictionary> - </state> - </object> - </value> - </item> - <item> - <key> <string>func_defaults</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>id</string> </key> - <value> <string>TemplateTool_getObsoleteTemplateList</string> </value> - </item> - <item> - <key> <string>warnings</string> </key> - <value> - <tuple/> - </value> - </item> - </dictionary> - </pickle> - </record> -</ZopeData> diff --git a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_viewDeleteObsoleteTemplateListDialog.xml b/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_viewDeleteObsoleteTemplateListDialog.xml deleted file mode 100644 index 700116cfbc07c4fa382414ebc2f4384c0de56bf7..0000000000000000000000000000000000000000 --- a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_viewDeleteObsoleteTemplateListDialog.xml +++ /dev/null @@ -1,155 +0,0 @@ -<?xml version="1.0"?> -<ZopeData> - <record id="1" aka="AAAAAAAAAAE="> - <pickle> - <tuple> - <global name="ERP5Form" module="Products.ERP5Form.Form"/> - <tuple/> - </tuple> - </pickle> - <pickle> - <dictionary> - <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/> - </value> - </item> - </dictionary> - </state> - </object> - </value> - </item> - <item> - <key> <string>_objects</string> </key> - <value> - <tuple/> - </value> - </item> - <item> - <key> <string>action</string> </key> - <value> <string>TemplateTool_deleteObsoleteTemplateList</string> </value> - </item> - <item> - <key> <string>description</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>edit_order</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>encoding</string> </key> - <value> <string>UTF-8</string> </value> - </item> - <item> - <key> <string>enctype</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>group_list</string> </key> - <value> - <list> - <string>left</string> - <string>right</string> - <string>center</string> - <string>bottom</string> - <string>hidden</string> - </list> - </value> - </item> - <item> - <key> <string>groups</string> </key> - <value> - <dictionary> - <item> - <key> <string>bottom</string> </key> - <value> - <list> - <string>listbox</string> - </list> - </value> - </item> - <item> - <key> <string>center</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>hidden</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>left</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>right</string> </key> - <value> - <list/> - </value> - </item> - </dictionary> - </value> - </item> - <item> - <key> <string>id</string> </key> - <value> <string>TemplateTool_viewDeleteObsoleteTemplateListDialog</string> </value> - </item> - <item> - <key> <string>method</string> </key> - <value> <string>POST</string> </value> - </item> - <item> - <key> <string>name</string> </key> - <value> <string>TemplateTool_viewDeleteObsoleteTemplateListDialog</string> </value> - </item> - <item> - <key> <string>pt</string> </key> - <value> <string>form_dialog</string> </value> - </item> - <item> - <key> <string>row_length</string> </key> - <value> <int>4</int> </value> - </item> - <item> - <key> <string>stored_encoding</string> </key> - <value> <string>UTF-8</string> </value> - </item> - <item> - <key> <string>title</string> </key> - <value> <string>Delete Obsolete Templates</string> </value> - </item> - <item> - <key> <string>unicode_mode</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>update_action</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>update_action_title</string> </key> - <value> <string></string> </value> - </item> - </dictionary> - </pickle> - </record> -</ZopeData> diff --git a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_viewDeleteObsoleteTemplateListDialog/listbox.xml b/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_viewDeleteObsoleteTemplateListDialog/listbox.xml deleted file mode 100644 index 5691167457fe4c2932b74d088b55ce80e6483ac4..0000000000000000000000000000000000000000 --- a/bt5/erp5_administration/SkinTemplateItem/portal_skins/erp5_administration/TemplateTool_viewDeleteObsoleteTemplateListDialog/listbox.xml +++ /dev/null @@ -1,616 +0,0 @@ -<?xml version="1.0"?> -<ZopeData> - <record id="1" aka="AAAAAAAAAAE="> - <pickle> - <tuple> - <global name="ListBox" module="Products.ERP5Form.ListBox"/> - <tuple/> - </tuple> - </pickle> - <pickle> - <dictionary> - <item> - <key> <string>id</string> </key> - <value> <string>listbox</string> </value> - </item> - <item> - <key> <string>message_values</string> </key> - <value> - <dictionary> - <item> - <key> <string>external_validator_failed</string> </key> - <value> <string>The input failed the external validator.</string> </value> - </item> - </dictionary> - </value> - </item> - <item> - <key> <string>overrides</string> </key> - <value> - <dictionary> - <item> - <key> <string>all_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>alternate_name</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>anchor</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>count_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>css_class</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>default_params</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>description</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>domain_root_list</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>domain_tree</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>editable</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>editable_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>enabled</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>external_validator</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>global_attributes</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>hidden</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>hide_rows_on_no_search_criterion</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>lines</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>list_action</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>list_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>meta_types</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>page_template</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>portal_types</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>report_root_list</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>report_tree</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>row_css_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>search</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>search_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>select</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>selection_name</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>sort</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>sort_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>stat_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>stat_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>title</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>untranslatable_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>url_columns</string> </key> - <value> <string></string> </value> - </item> - </dictionary> - </value> - </item> - <item> - <key> <string>tales</string> </key> - <value> - <dictionary> - <item> - <key> <string>all_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>alternate_name</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>anchor</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>count_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>css_class</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>default_params</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>description</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>domain_root_list</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>domain_tree</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>editable</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>editable_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>enabled</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>external_validator</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>global_attributes</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>hidden</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>hide_rows_on_no_search_criterion</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>lines</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>list_action</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>list_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>meta_types</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>page_template</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>portal_types</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>report_root_list</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>report_tree</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>row_css_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>search</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>search_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>select</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>selection_name</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>sort</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>sort_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>stat_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>stat_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>title</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>untranslatable_columns</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>url_columns</string> </key> - <value> <string></string> </value> - </item> - </dictionary> - </value> - </item> - <item> - <key> <string>values</string> </key> - <value> - <dictionary> - <item> - <key> <string>all_columns</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>alternate_name</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>anchor</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>columns</string> </key> - <value> - <list> - <tuple> - <string>id</string> - <string>ID</string> - </tuple> - <tuple> - <string>title</string> - <string>Name</string> - </tuple> - <tuple> - <string>version</string> - <string>Version</string> - </tuple> - <tuple> - <string>revision</string> - <string>Revision</string> - </tuple> - <tuple> - <string>description</string> - <string>Description</string> - </tuple> - <tuple> - <string>translated_installation_state_title</string> - <string>Installation State</string> - </tuple> - <tuple> - <string>translated_building_state_title</string> - <string>Building State</string> - </tuple> - </list> - </value> - </item> - <item> - <key> <string>count_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>css_class</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>default_params</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>description</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>domain_root_list</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>domain_tree</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>editable</string> </key> - <value> <int>1</int> </value> - </item> - <item> - <key> <string>editable_columns</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>enabled</string> </key> - <value> <int>1</int> </value> - </item> - <item> - <key> <string>external_validator</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>global_attributes</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>hidden</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>hide_rows_on_no_search_criterion</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>lines</string> </key> - <value> <int>20</int> </value> - </item> - <item> - <key> <string>list_action</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>list_method</string> </key> - <value> - <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> - </value> - </item> - <item> - <key> <string>meta_types</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>page_template</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>portal_types</string> </key> - <value> - <list> - <tuple> - <string>Business Template</string> - <string>Business Template</string> - </tuple> - </list> - </value> - </item> - <item> - <key> <string>report_root_list</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>report_tree</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>row_css_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>search</string> </key> - <value> <int>0</int> </value> - </item> - <item> - <key> <string>search_columns</string> </key> - <value> - <list> - <tuple> - <string>id</string> - <string>ID</string> - </tuple> - <tuple> - <string>title</string> - <string>Name</string> - </tuple> - <tuple> - <string>version</string> - <string>Version</string> - </tuple> - <tuple> - <string>description</string> - <string>Description</string> - </tuple> - </list> - </value> - </item> - <item> - <key> <string>select</string> </key> - <value> <int>1</int> </value> - </item> - <item> - <key> <string>selection_name</string> </key> - <value> <string>delete_template_list_selection</string> </value> - </item> - <item> - <key> <string>sort</string> </key> - <value> - <list> - <tuple> - <string>title</string> - <string>ascending</string> - </tuple> - </list> - </value> - </item> - <item> - <key> <string>sort_columns</string> </key> - <value> - <list> - <tuple> - <string>id</string> - <string>ID</string> - </tuple> - <tuple> - <string>title</string> - <string>Name</string> - </tuple> - <tuple> - <string>version</string> - <string>Version</string> - </tuple> - <tuple> - <string>description</string> - <string>Description</string> - </tuple> - </list> - </value> - </item> - <item> - <key> <string>stat_columns</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>stat_method</string> </key> - <value> <string></string> </value> - </item> - <item> - <key> <string>title</string> </key> - <value> <string>Obsolete Template List</string> </value> - </item> - <item> - <key> <string>untranslatable_columns</string> </key> - <value> - <list/> - </value> - </item> - <item> - <key> <string>url_columns</string> </key> - <value> - <list/> - </value> - </item> - </dictionary> - </value> - </item> - </dictionary> - </pickle> - </record> - <record id="2" aka="AAAAAAAAAAI="> - <pickle> - <tuple> - <global name="Method" module="Products.Formulator.MethodField"/> - <tuple/> - </tuple> - </pickle> - <pickle> - <dictionary> - <item> - <key> <string>method_name</string> </key> - <value> <string>TemplateTool_getObsoleteTemplateList</string> </value> - </item> - </dictionary> - </pickle> - </record> -</ZopeData> diff --git a/bt5/erp5_administration/bt/revision b/bt5/erp5_administration/bt/revision index 0fa6a7b088051e48b8dc94d598b7e324e6f691c9..7730ef7f3e0586b9070623baed6032dff904c9ea 100644 --- a/bt5/erp5_administration/bt/revision +++ b/bt5/erp5_administration/bt/revision @@ -1 +1 @@ -90 \ No newline at end of file +89 \ No newline at end of file diff --git a/bt5/erp5_administration/bt/template_action_path_list b/bt5/erp5_administration/bt/template_action_path_list index 3242f0db586557966540229b28a96851907019ca..e39651a2bd8b2d8111555c420308f523c99f2def 100644 --- a/bt5/erp5_administration/bt/template_action_path_list +++ b/bt5/erp5_administration/bt/template_action_path_list @@ -1,5 +1,4 @@ Applied Rule | view Simulation Movement | view Simulation Tool | view -Template Tool | delete_obsolete_template_list portal_properties | consistency \ No newline at end of file