Utilisateur:Saint-martin/monobook.js
Note : après avoir enregistré la page, vous devrez forcer le rechargement complet du cache de votre navigateur pour voir les changements.
Mozilla / Firefox / Konqueror / Safari : maintenez la touche Majuscule (Shift) en cliquant sur le bouton Actualiser (Reload) ou pressez Maj-Ctrl-R (Cmd-R sur Apple Mac) ;
Firefox (sur GNU/Linux) / Chrome / Internet Explorer / Opera : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl-F5.//<source lang="javascript" line>
/*
* Deluxe Bar
*
* Barre d'outils d'édition étendue
*
* Auteur : Dake
* Dernière révision : 3 novembre 2006
*/
//////////////////////ZONE PERSONNALISABLE//////////////////////
var deluxebarMessages = new Array();
var deluxebarImages = new Array();
var deluxebarCommentaires = new Array();
with (deluxebarMessages) {
push("{{subst:" + "Bienvenue sur ta page" + "}}" + "~~" + "~~");
push("{{subst:" + "Bienvenue" + "}}" + "~~" + "~~");
push("{{subst:" + "Vandale bloqué" + "}}" + "~~" + "~~");
push("{{subst:" + "Vandalisme|page" + "}}" + "~~" + "~~");
push("{{subst:" + "Bienvenue spammeur" + "}}" + "~~" + "~~");
push("{{subst:" + "Fait}}" + "~~" + "~~");
}
with (deluxebarImages) {
push("http://up.wiki.x.io/wikipedia/commons/1/12/Button_accueilA.png");
push("http://up.wiki.x.io/wikipedia/commons/e/eb/Button_accueilB.png");
push("http://up.wiki.x.io/wikipedia/commons/0/00/Button_vandale.png");
push("http://up.wiki.x.io/wikipedia/commons/a/a7/Button_smiley3.png");
push("http://up.wiki.x.io/wikipedia/commons/f/fb/Button_spam2.png");
push("http://up.wiki.x.io/wikipedia/commons/d/d9/Button_trait%C3%A9.png");
}
with (deluxebarCommentaires) {
push("Bienvenue sur ta page !");
push("Bienvenue !");
push("Blocage d'un vandale");
push("Avertissement vandalisme");
push("Avertissement spam" );
push("Fait");
}
/////////////////FIN DE LA ZONE PERSONNALISABLE/////////////////
function DeluxeBar() {
if (document.createTextNode) {
var toolbar = document.getElementById("toolbar");
if (!toolbar) return;
for (var i=0;i<deluxebarMessages.length;i++) {
var img = document.createElement("img");
img.setAttribute("src", deluxebarImages[i]);
var ref = document.createElement("a");
ref.setAttribute("href", "javascript:insertTags('', \"" + deluxebarMessages[i] + "\", '');" +
"javascript:changeSummary(\"" + deluxebarCommentaires[i] + "\");" );
ref.appendChild(img);
toolbar.appendChild(ref);
}
}
}
function changeSummary(sampleText) {
var resum = document.editform.wpSummary.value;
if(resum != 0 && resum.indexOf("*/") < resum.length - 3) {
document.editform.wpSummary.value += " - ";
}
document.editform.wpSummary.value += sampleText;
}
$(DeluxeBar);
//</source>{{Catégorisation JS}}