我正在使用collective.transmogrifier.sections.folders管道部分来创建我要导入Plone 的内容的父文件夹。
我的问题是这些文件夹是在没有标题的情况下创建的,并且没有被发布。
我该如何解决?
我正在使用collective.transmogrifier.sections.folders管道部分来创建我要导入Plone 的内容的父文件夹。
我的问题是这些文件夹是在没有标题的情况下创建的,并且没有被发布。
我该如何解决?
尝试将此部分添加到您的管道中(您可能已经有了第二个):
# Publish all folders
[publish_all_folders]
blueprint = collective.transmogrifier.sections.inserter
key = string:_transitions
value = string:publish
condition = python:item.get('_type') == "Folder"
# Actually run the given transition to update the workflow state
[workflowupdater]
blueprint = plone.app.transmogrifier.workflowupdater