我使用Site Setup中的Dexterity管理器创建了一个新的内容类型。我能够通过Plone用户界面成功添加内容,但我已经到了需要用python脚本创建相同对象的地方。
我的第一次尝试是使用invokeFactory:
context.invokeFactory("mycontenttype", id="test", Title="Test")
这个相同的代码适用于“Folder”对象,但是因为我的Dexterity类型失败了:
Traceback (innermost last):
Module ZPublisher.Publish, line 60, in publish
Module ZPublisher.mapply, line 77, in mapply
Module ZPublisher.Publish, line 46, in call_object
Module Shared.DC.Scripts.Bindings, line 322, in __call__
Module Products.PloneHotfix20130618.spamProtect, line 35, in _patched_bindAndExec
Module Shared.DC.Scripts.Bindings, line 359, in _bindAndExec
Module Products.PythonScripts.PythonScript, line 344, in _exec
Module script, line 7, in test
- <PythonScript at /three-year-plan/test>
- Line 7
TypeError: invokeFactory() takes at least 3 arguments (2 given)
在做了一些搜索后,我找到了几个涉及以下功能的地方:
from plone.dexterity.utils import createContentInContainer
任何尝试从我的python脚本中的plone.dexterity.utils导入都会导致权限错误:
Traceback (innermost last):
Module ZPublisher.Publish, line 60, in publish
Module ZPublisher.mapply, line 77, in mapply
zModule ZPublisher.Publish, line 46, in call_object
Module Shared.DC.Scripts.Bindings, line 322, in __call__
Module Products.PloneHotfix20130618.spamProtect, line 35, in _patched_bindAndExec
Module Shared.DC.Scripts.Bindings, line 359, in _bindAndExec
Module Products.PythonScripts.PythonScript, line 344, in _exec
Module script, line 1, in test
- <PythonScript at /my-site/test>
- Line 1
Module AccessControl.ZopeGuards, line 305, in guarded_import
Unauthorized: import of 'plone.dexterity.utils' is unauthorized
任何帮助解决上述错误或替代方法将不胜感激。版本详细信息发布在下面以供参考。
版本概述
Plone 4.3.1 (4306)
CMF 2.2.7
Zope 2.13.19
Python 2.7.3 (default, Aug 1 2012, 05:14:39) [GCC 4.6.3]
PIL 1.7.8 (Pillow)
Dexterity Content Types 2.0.8
答案 0 :(得分:1)
您的猜测是正确的:您必须使用createContentInContainer。 但是你不能在Python脚本中使用它,因为只允许所谓的受限Python [1]。把它放在视图中[2]。
作为参考,请参阅:
答案 1 :(得分:1)
您应该能够为此目的使用“invokeFactory”。您在容器上调用它并将类型名称作为字符串传递给它。
我不确定您尝试使用invokeFactory方法的位置是否出错,但确实有效。有关详细信息,请参阅http://developer.plone.org/reference_manuals/external/plone.app.dexterity/reference/manipulating-content-objects.html?highlight=invokefactory#adding-an-object-to-a-container。