j'ai créé un article à l'aide d'un mot "cahiers" affecté à l'article 243 http://www.preuillysurclaise.fr/spip.php?article243 avec le plugins Squelette par mot clef <http://www.preuillysurclaise.fr/ecrire/?exec=admin_plugin&plug=squelettes_par_mots_cle_1_92>
avec le code suivant sur le fichier article-cahiers.html. Je l'ai testé en local avec la version 2.010 de spip en local (sans plugins) cela fonctionne correctement en ligne avec la version 1.92i cela ne fonctionne pas. Pouvez me dire la raison ?
<div>
<form name="redacteurs_cahiers" action="#SELF" method="post">
<select name="redacteur" size="1">
<option value="0">Choisir un auteur</option>
<BOUCLE_aut(REDACTEURS){redacteur}>
[<option [value="(#REDACTEUR)"]>(#REDACTEUR)</option>]
</BOUCLE_aut>
</select>
<input type="submit" value="OK">
</form>
<tr>
<th><strong> N° du cahier</strong></th><th><strong>n° de la page</strong></th>
</th><th><strong>année</strong></th><th><strong>titre de l'article</strong>
</th><th><strong>redacteur</strong></th><th><strong>Chapitre</strong></th>
<th><strong>lieu</strong></th>
</tr>
<BOUCLE_auteur(CAHIERS){redacteur}>
<tr>
<td>[(#CAHIER)]</td>
<td>[(#PAGE)]</td>
<td>[(#AN)]</td>
<td>[(#TITRE)]</td>
<td>[(#REDACTEUR)]</td>
<td>[(#CHAPITRE)]</td>
<td>[(#LIEU)]</td>
</tr>
</BOUCLE_auteur>
</table>
</div>
<div>
<form name="cahiers" action="#SELF" method="post">
<select name="lieu" size="1">
<option value="0">Choisir une commune</option>
<BOUCLE_lieu(LIEUX){lieu}>
[<option [value="(#LIEU)"]>(#LIEU)</option>]
</BOUCLE_lieu>
</select>
<input type="submit" value="OK">
</form>
<tr>
<th><strong> N° du cahier</strong></th><th><strong>n° de la page</strong></th>
</th><th><strong>année</strong></th><th><strong>titre de l'article</strong>
</th><th><strong>redacteur</strong></th><th><strong>Chapitre</strong></th>
<th><strong>lieu</strong></th>
</tr>
<BOUCLE_lieux(CAHIERS){lieu}>
<tr>
<td>[(#CAHIER)]</td>
<td>[(#PAGE)]</td>
<td>[(#AN)]</td>
<td>[(#TITRE)]</td>
<td>[(#REDACTEUR)]</td>
<td>[(#CHAPITRE)]</td>
<td>[(#LIEU)]</td>
</tr>
</BOUCLE_lieux>
</table>
</div>
<div>
<form name="chapitre_cahiers" action="#SELF" method="post">
<select name="chapitre" size="1">
<option value="0">Choisir un Chapitre</option>
<BOUCLE_chap(CHAPITRES){chapitre}>
[<option [value="(#CHAPITRE)"]>(#CHAPITRE)</option>]
</BOUCLE_chap>
</select>
<input type="submit" value="OK">
</form>
<tr>
<th><strong> N° du cahier</strong></th><th><strong>n° de la page</strong></th>
</th><th><strong>année</strong></th><th><strong>titre de l'article</strong>
</th><th><strong>redacteur</strong></th><th><strong>Chapitre</strong></th>
<th><strong>lieu</strong></th>
</tr>
<BOUCLE_chapitre(CAHIERS){chapitre}>
<tr>
<td>[(#CAHIER)]</td>
<td>[(#PAGE)]</td>
<td>[(#AN)]</td>
<td>[(#TITRE)]</td>
<td>[(#REDACTEUR)]</td>
<td>[(#CHAPITRE)]</td>
<td>[(#LIEU)]</td>
</tr>
</BOUCLE_chapitre>
</table>
</div>