Commit 5c63ef0b authored by Yoshinori Okuji's avatar Yoshinori Okuji

2010-10-19 yo

* When checking duplicated selection names, skip field libraries, as they don't matter.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39324 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 514eb91b
......@@ -77,6 +77,9 @@ for field_path, field in skins_tool.ZopeFind(\n
# in some rare cases sharing a selection can be done intentional so avoid them\n
if form.getId() in ok_to_share_selection_form_list:\n
continue\n
# if the form looks like a field library, we don\'t care, because it is not used directly.\n
if form.getId().endswith(\'FieldLibrary\'):\n
continue\n
\n
selection_name_dict.setdefault(\n
field.get_value(\'selection_name\'), []).append(field_path)\n
......
2010-10-19 yo
* When checking duplicated selection names, skip field libraries, as they don't matter.
2010-10-11 lucas
* Now portal_type_group_list is an optional param for the script BaseType_copyRoleList.
......
* The glossary module "Update Workflows by English Glossary" Action uses DCWorkflow's API method "setProperties". In case of future patches or updates, this must be reviewed, as there is a risk of overwriting important data
* Software Release and Software Publication were moved to erp5_forge_release.
* The glossary module "Update Workflows by English Glossary" Action uses DCWorkflow's API method "setProperties". In case of future patches or updates, this must be reviewed, as there is a risk of overwriting important data
* Software Release and Software Publication were moved to erp5_forge_release.
* upload_module has been removed since it was only used by Nexedi and it can be implemented better with DMS and caching.
\ No newline at end of file
622
\ No newline at end of file
623
\ 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