Régressions multiples sur l'aide de Spip
Bonjour à tous,
il y a de grosses différences entres l'aide disponible dans SPIP v3 et v4. Le fonctionnement a été revu dans la nouvelle version pour être plus facilement étendable par un éventuel plugin. Je ne trouve pas de documentation a ce sujet.
Un exemple d'implémentation :
[0] www /var/www/www.root-me.org/htdocs # ls -l plugins/challenges_hacking/aide/fr/challenges/
total 32
-rw-r--r-- 1 maint root 4786 Mar 15 08:03 creation.spip
-rw-r--r-- 1 maint root 11124 Mar 15 08:03 deploiement.spip
-rw-r--r-- 1 root root 86 Mar 15 08:09 _intro.spip
-rw-r--r-- 1 maint root 1351 Mar 15 08:03 publication.spip
-rw-r--r-- 1 maint root 879 Mar 15 08:03 validation.spip
[0] www /var/www/www.root-me.org/htdocs # cat plugins/challenges_hacking/challenges_hacking_pipelines.php
function challenges_hacking_aide_index($index) {
$index['challenges'] = ["creation", "publication", "validation", "deploiement"];
return $index;
}
[130] www /var/www/www.root-me.org/htdocs # grep aide plugins/challenges_hacking/paquet.xml
<pipeline nom="aide_index" inclure="challenges_hacking_pipelines.php" />
Par contre :
- L'aide existante hors raccourcis a été perdu
- Toutes les aides contextuelles fournis par défaut avec #AIDER ont disparu
- #AIDER ne semble plus fonctionnel
- La navigation au sein de l'aide est cassé/a revoir (on ne peut pas revenir en arrière une fois entré dans une rubrique d'aide)
Comment faire pour récupérer l'aide contextuelle https://www.spip.net/fr_article4733.html (trèèèèèès pratique) ?