From cfd54e467747672028ee00febedd95ffa39e9540 Mon Sep 17 00:00:00 2001 From: Romain Courteaud <romain@nexedi.com> Date: Thu, 14 Sep 2006 13:16:30 +0000 Subject: [PATCH] Remove Base_searchHandler and Folder_viewSearchDialog, which are now in erp5_core. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@9916 20353a03-c40f-0410-a6d1-a30d3c3de9de --- .../erp5_pdm/Base_searchHandler.xml | 224 ------------------ .../erp5_pdm/Folder_viewSearchDialog.xml | 139 ----------- bt5/erp5_pdm/bt/revision | 2 +- 3 files changed, 1 insertion(+), 364 deletions(-) delete mode 100644 bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Base_searchHandler.xml delete mode 100644 bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Folder_viewSearchDialog.xml diff --git a/bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Base_searchHandler.xml b/bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Base_searchHandler.xml deleted file mode 100644 index 6865e4611d..0000000000 --- a/bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Base_searchHandler.xml +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0"?> -<ZopeData> - <record id="1" aka="AAAAAAAAAAE="> - <pickle> - <tuple> - <tuple> - <string>Products.PythonScripts.PythonScript</string> - <string>PythonScript</string> - </tuple> - <none/> - </tuple> - </pickle> - <pickle> - <dictionary> - <item> - <key> <string>Python_magic</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>Script_magic</string> </key> - <value> <int>3</int> </value> - </item> - <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_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>from Products.Formulator.Errors import ValidationError, FormValidationError\n -from ZTUtils import make_query\n -\n -request=context.REQUEST\n -\n -if isinstance(list_form_id,tuple):\n - list_form_id = list_form_id[0]\n -# The type list is not working with isinstance, I have do do this bad hack\n -if hasattr(list_form_id,\'sort\'):\n - list_form_id = list_form_id[0]\n -\n -module_name = context.getId()\n -\n -try:\n - # Validate the form\n - form = getattr(context,dialog_id)\n - form.validate_all_to_request(request)\n - kw = {}\n - for f in form.get_fields():\n - k = f.id\n - k = k[3:]\n - v = getattr(request,k,None)\n - if v is not None and k != \'list_form_id\' :\n - kw[k] = v\n - if list_method_id is not None and list_method_id != \'\' :\n - kw[\'list_method_id\'] = list_method_id\n - url_params_string = make_query(kw)\n -except FormValidationError, validation_errors:\n - # Pack errors into the request\n - field_errors = form.ErrorFields(validation_errors)\n - request.set(\'field_errors\', field_errors)\n - return form(request)\n -\n -\n -if url_params_string != \'\':\n - redirect_url = \'%s/%s?%s\' % ( context.absolute_url()\n - , list_form_id\n - , url_params_string\n - )\n -else:\n - redirect_url = \'%s/%s\' % ( context.absolute_url()\n - , list_form_id\n - )\n -\n -\n -return request.RESPONSE.redirect( redirect_url )\n -</string> </value> - </item> - <item> - <key> <string>_code</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>_filepath</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>_owner</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>_params</string> </key> - <value> <string>form_id,dialog_id,list_form_id,list_method_id=\'\'</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>4</int> </value> - </item> - <item> - <key> <string>co_varnames</string> </key> - <value> - <tuple> - <string>form_id</string> - <string>dialog_id</string> - <string>list_form_id</string> - <string>list_method_id</string> - <string>Products.Formulator.Errors</string> - <string>ValidationError</string> - <string>FormValidationError</string> - <string>ZTUtils</string> - <string>make_query</string> - <string>_getattr_</string> - <string>context</string> - <string>request</string> - <string>isinstance</string> - <string>tuple</string> - <string>_getitem_</string> - <string>hasattr</string> - <string>module_name</string> - <string>getattr</string> - <string>form</string> - <string>kw</string> - <string>_getiter_</string> - <string>f</string> - <string>k</string> - <string>None</string> - <string>v</string> - <string>_write_</string> - <string>url_params_string</string> - <string>validation_errors</string> - <string>field_errors</string> - <string>redirect_url</string> - </tuple> - </value> - </item> - </dictionary> - </state> - </object> - </value> - </item> - <item> - <key> <string>func_defaults</string> </key> - <value> - <tuple> - <string></string> - </tuple> - </value> - </item> - <item> - <key> <string>id</string> </key> - <value> <string>Base_searchHandler</string> </value> - </item> - <item> - <key> <string>warnings</string> </key> - <value> - <tuple/> - </value> - </item> - </dictionary> - </pickle> - </record> -</ZopeData> diff --git a/bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Folder_viewSearchDialog.xml b/bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Folder_viewSearchDialog.xml deleted file mode 100644 index 9794f8230a..0000000000 --- a/bt5/erp5_pdm/SkinTemplateItem/portal_skins/erp5_pdm/Folder_viewSearchDialog.xml +++ /dev/null @@ -1,139 +0,0 @@ -<?xml version="1.0"?> -<ZopeData> - <record id="1" aka="AAAAAAAAAAE="> - <pickle> - <tuple> - <tuple> - <string>Products.ERP5Form.Form</string> - <string>ERP5Form</string> - </tuple> - <none/> - </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/> - </value> - </item> - </dictionary> - </state> - </object> - </value> - </item> - <item> - <key> <string>_objects</string> </key> - <value> - <tuple/> - </value> - </item> - <item> - <key> <string>_owner</string> </key> - <value> - <none/> - </value> - </item> - <item> - <key> <string>action</string> </key> - <value> <string>Base_searchHandler</string> </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> - </list> - </value> - </item> - <item> - <key> <string>groups</string> </key> - <value> - <dictionary> - <item> - <key> <string>left</string> </key> - <value> - <list> - <string>my_title</string> - <string>my_id</string> - <string>my_list_form_id</string> - </list> - </value> - </item> - <item> - <key> <string>right</string> </key> - <value> - <list> - <string>my_description</string> - </list> - </value> - </item> - </dictionary> - </value> - </item> - <item> - <key> <string>id</string> </key> - <value> <string>Folder_viewSearchDialog</string> </value> - </item> - <item> - <key> <string>method</string> </key> - <value> <string>POST</string> </value> - </item> - <item> - <key> <string>name</string> </key> - <value> <string>Base_viewSearchResultList</string> </value> - </item> - <item> - <key> <string>pt</string> </key> - <value> <string>form_view_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>Search</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> - </dictionary> - </pickle> - </record> -</ZopeData> diff --git a/bt5/erp5_pdm/bt/revision b/bt5/erp5_pdm/bt/revision index f11c82a4cb..9d607966b7 100644 --- a/bt5/erp5_pdm/bt/revision +++ b/bt5/erp5_pdm/bt/revision @@ -1 +1 @@ -9 \ No newline at end of file +11 \ No newline at end of file -- 2.30.9