Commit 04f48c15 authored by Jérome Perrin's avatar Jérome Perrin

2009-04-24 jerome

* Add a utility script to check that all relation field defines proxy listbox id or columns

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26613 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0efd2118
<?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>multi_relation_field_meta_type_list = [\'RelationStringField\',\n
\'MultiRelationStringField\']\n
for field_path, field in context.ZopeFind(\n
context.portal_skins, obj_metatypes=multi_relation_field_meta_type_list + \n
[\'ProxyField\'], search_sub=1):\n
if field.meta_type == \'ProxyField\':\n
template_field = field.getRecursiveTemplateField()\n
if template_field is None or template_field.meta_type not in multi_relation_field_meta_type_list:\n
continue\n
\n
# acceptable if in a field library ?\n
form = field.aq_parent\n
if form.getId().endswith(\'FieldLibrary\'):\n
continue\n
\n
if not (field.get_value(\'proxy_listbox_ids\') or field.get_value(\'columns\')):\n
print field_path\n
\n
return printed\n
</string> </value>
</item>
<item>
<key> <string>_code</string> </key>
<value>
<none/>
</value>
</item>
<item>
<key> <string>_params</string> </key>
<value> <string></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>_print_</string>
<string>_print</string>
<string>multi_relation_field_meta_type_list</string>
<string>_getiter_</string>
<string>_getattr_</string>
<string>context</string>
<string>field_path</string>
<string>field</string>
<string>template_field</string>
<string>None</string>
<string>form</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>SkinsTool_getRelationStringFieldWithoutProxyListBoxIdOrColumns</string> </value>
</item>
<item>
<key> <string>warnings</string> </key>
<value>
<tuple/>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
2009-04-24 jerome
* Add a utility script to check that all relation field defines proxy listbox id or columns
2009-02-20 yusei 2009-02-20 yusei
* Add a utility script to associate files in skin folder to cache manager. * Add a utility script to associate files in skin folder to cache manager.
......
455 456
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment