我正在使用collective.transmogrifier.sections.folders管道部分创建我导入Plone的内容的父文件夹。
我的问题是这些文件夹是在没有标题的情况下创建的,并且没有发布。
我该如何解决?
答案 0 :(得分:1)
尝试将此部分添加到您的管道中(您可能已经拥有第二部分):
# 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