Cette page ne doit être appliquée que si le script vous demande de passer la migration manuelle application.20220301.todolist

Les fichiers de description des tableaux de bord WEB-INF/param/todolist*.xml bénéficient maintenant d'une configuration par défaut dans le noyau.

Si le contenu de vos fichiers (hors commentaires) est identique à la version noyau, vous pouvez les supprimer :

  • 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>

Sinon, vous pouvez les conserver.

Attention, si vous conservez ces fichiers, les libellés TODO_LIST_TASK_LATEST_DRAFTS, TODO_LIST_TASK_VALIDATE et TODO_LIST_TASK_PROPOSE ont été déplacés du plugin Web et ODF au plugin CMS.

Retour en haut