This page should only be used if the script asks you to pass the manual migration application.20220301.todolist

Dashboard description files WEB-INF/param/todolist*.xml now have a default configuration in the kernel.

If the content of your files (excluding comments) is identical to the kernel version, you can delete them:

  • todolist.xml
<todo-list>
    <tasks allowUserQuery="false">
        <task label="plugin.cms:TODO_LIST_TASK_LATEST_DRAFTS" id="recent-drafts" length="5">
           <step id="1, 2, 3" userContents="true"/>
       </task>
       <task label="plugin.cms:TODO_LIST_TASK_VALIDATE" id="to-validate" length="20">
           <step id="2" rights="Workflow_Rights_Validate"/>
       </task>
       <task label="plugin.cms:TODO_LIST_TASK_PROPOSE" id="to-propose" length="20">
           <step id="1" rights="Workflow_Rights_Propose"/>
       </task>
   </tasks>
</todo-list>
  • todolist-course.xml
<todo-list>
    <tasks allowUserQuery="false">
        <task label="plugin.cms:TODO_LIST_TASK_LATEST_DRAFTS" id="recent-drafts" length="5">
            <step id="1, 2, 3" userContents="true"/>
        </task>
        <task label="plugin.cms:TODO_LIST_TASK_PROPOSE" id="to-propose" length="20">
            <step id="1" rights="ODF_Rights_Course_Propose"/>
        </task>
        <task label="plugin.cms:TODO_LIST_TASK_VALIDATE" id="to-validate" length="20">
            <step id="2" rights="ODF_Rights_Course_Validate"/>
        </task>
    </tasks>
</todo-list>
  • todolist-program.xml
<todo-list>
     <tasks allowUserQuery="false">
        <task label="plugin.cms:TODO_LIST_TASK_LATEST_DRAFTS" id="recent-drafts" length="5">
            <step id="1, 2, 3" userContents="true"/>
        </task>
        <task label="plugin.cms:TODO_LIST_TASK_PROPOSE" id="to-propose" length="20">
            <step id="1" rights="ODF_Rights_Program_Propose"/>
        </task>
        <task label="plugin.cms:TODO_LIST_TASK_VALIDATE" id="to-validate" length="20">
            <step id="2" rights="ODF_Rights_Program_Validate"/>
        </task>
    </tasks>
</todo-list>
  • todolist-subprogram.xml
<todo-list>
    <tasks allowUserQuery="false">
        <task label="plugin.cms:TODO_LIST_TASK_LATEST_DRAFTS" id="recent-drafts" length="5">
            <step id="1, 2, 3" userContents="true"/>
        </task>
        <task label="plugin.cms:TODO_LIST_TASK_PROPOSE" id="to-propose" length="20">
            <step id="1" rights="ODF_Rights_SubProgram_Propose"/>
        </task>
        <task label="plugin.cms:TODO_LIST_TASK_VALIDATE" id="to-validate" length="20">
            <step id="2" rights="ODF_Rights_Program_Validate"/>
        </task>
    </tasks>
</todo-list>

Otherwise, you can keep them.

Please note that if you keep these files, the TODO_LIST_TASK_LATEST_DRAFTS, TODO_LIST_TASK_VALIDATE and TODO_LIST_TASK_PROPOSE labels have been moved from plugin Web and ODF to plugin CMS .

Back to top