Commit 1ffea859 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

* register into type provider in install() instead of onNewObject(), to make...

* register into type provider in install() instead of onNewObject(), to make it working by callin install(force=True).
* unregister tool from type provider in uninstall() and remove().


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36722 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3cfe41d5
......@@ -1343,18 +1343,48 @@ class ToolTemplateItem(PathTemplateItem):
return PathTemplateItem._backupObject(self, action, None, container_path,
object_id, **kw)
def onNewObject(self, obj):
def install(self, context, trashbin, **kw):
""" When we install a tool that is a type provider not
registered on types tool, register the type provider.
registered on types tool, register it into the type provider.
"""
portal = obj.getPortalObject()
PathTemplateItem.install(self, context, trashbin, **kw)
portal = context.getPortalObject()
types_tool = portal.portal_types
for type_container_id, obj in self._objects.iteritems():
if interfaces.ITypeProvider.isImplementedBy(obj) and \
type_container_id not in types_tool.type_provider_list:
types_tool.type_provider_list = tuple(types_tool.type_provider_list) + \
(type_container_id,)
def uninstall(self, context, **kw):
""" When we uninstall a tool, unregister it from the type provider. """
portal = context.getPortalObject()
types_tool = portal.portal_types
type_container_id = obj.getId()
if interfaces.ITypeProvider.isImplementedBy(obj) and \
type_container_id not in types_tool.type_provider_list:
types_tool.type_provider_list = tuple(types_tool.type_provider_list) + \
(type_container_id,)
return PathTemplateItem.onNewObject(self, obj)
object_path = kw.get('object_path', None)
if object_path is not None:
object_keys = [object_path]
else:
object_keys = self._path_archive.keys()
for tool_id in object_keys:
types_tool.type_provider_list = tuple([ \
x for x in types_tool.type_provider_list \
if x != tool_id])
PathTemplateItem.uninstall(self, context, **kw)
def remove(self, context, **kw):
""" When we remove a tool, unregister it from the type provider. """
portal = context.getPortalObject()
types_tool = portal.portal_types
remove_dict = kw.get('remove_object_dict', {})
keys = self._objects.keys()
for tool_id in keys:
if remove_dict.has_key(tool_id):
action = remove_dict[tool_id]
if 'remove' in action:
types_tool.type_provider_list = tuple([ \
x for x in types_tool.type_provider_list \
if x != tool_id])
PathTemplateItem.remove(self, context, **kw)
class PreferenceTemplateItem(PathTemplateItem):
"""
......
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