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) ;

Chrome / Internet Explorer / Opera : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl-F5.
//<pre><nowiki>

mw.loader.using('mediawiki.util', function () {

    function TodayDate() {
        var m = ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"];
        var today = new Date();
        var day = today.getDate();
        var year = today.getYear();

        if (year < 2000)
            year = year + 1900;

        return (day + " " + m[today.getMonth()] + " " + year);
    }

    function addLinksInLeftBar() {
        //ajouter des liens en bas de la boite "navigation"
        mw.util.addPortletLink('p-navigation', mw.config.get('wgArticlePath').split('$1').join('Wikipédia:Le_Bistro/' + TodayDate().replace(/ /g," ") ), 'Bistro du jour', 'n-bistro');
        mw.util.addPortletLink('p-navigation', '/wiki/Wikipédia:Oracle', 'Oracle', 'n-oracle');
        mw.util.addPortletLink('p-navigation', '/wiki/Wikipédia:Vandalisme_en_cours', 'Vandalisme en cours', 'n-vandale');
        mw.util.addPortletLink('p-navigation', '/wiki/Utilisateur:Floflo/vector.js', 'Vector.js', 'n-js');
        mw.util.addPortletLink('p-navigation', '/w/index.php?title=Spécial:Journal/Floflo', 'Journal Sysop', 'n-journaux');
    }
    addOnloadHook(addLinksInLeftBar);

});

//</nowiki></pre>