Utilisateur:TaraO/boitelivre.js

Une page de Wikipédia, l'encyclopédie libre.
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>

var modeles4 = new Array();
var titres4 = new Array();
var i=0;

modeles4[++i] = "* {{Ouvrage | titre=Tales from the Pittsburgh Penguins | éditeur=Sports Publishing Llt. | prénom1=Joe|nom1= Starkey | langue= anglais | année=2006 | isbn=1-58261-199-8 | pages totales= 200}}";
titres4[i] = "Starkey";

modeles4[++i] = "* {{ouvrage | langue = anglais | prénom1 =Andrew | nom1 = Podnieks| titre = The Year of the Penguins| sous-titre = Celebrating Pittsburgh's 2008-09 Stanley Cup Championship Season| éditeur =Fenn Publishing Company| mois = juillet| année = 2009| pages totales=184| isbn = 978-1551683331 }}";
titres4[i] = "Podnieks";

modeles4[++i] = "*{{ouvrage| langue = anglais| prénom1 = Chris| nom1 = Goyens| prénom2 = Frank| nom2 = Orr| titre = Mario Lemieux: Over Time| éditeur = Universe Publishing| année = 2001| mois = novembre| jour = 17| pages totales = 216| isbn = 0789306638}}";
titres4[i] = "Over Time";

modeles4[++i] = "* {{Ouvrage| titre= The Rebel League: The Short and Unruly Life of the World Hockey Association| éditeur= McClelland & Stewart| prénom1= Ed|nom1= Willes | langue=anglais| année= 2004| pages totales= 277| isbn = 0-7710-8947-3}}";
titres4[i] = "Willes";

modeles4[++i] = "*{{Ouvrage |titre=Total Hockey: The Official Encyclopedia of the National Hockey League |éditeur=Total Sports |prénom1=Dan|nom1= Diamond |langue=anglais |année=1998 |isbn=978-0836271140 |pages totales=1879}}";
titres4[i] = "Total";

modeles4[++i] = "* {{Ouvrage| titre= Putting a Roof on Winter: Hockey's Rise from Sport to Spectacle| éditeur= Greystone Books| prénom1= Michael|nom1= McKinley| langue=anglais| année= 2000| pages totales= 320| lieu = Vancouver, Colombie-Britannique| isbn = 1-55054-798-4}}";
titres4[i] = "McKinley 2000";

modeles4[++i] = "* {{Ouvrage| titre= Hockey: A People's History | éditeur= McClelland & Stewart| prénom1= Michael|nom1= McKinley| langue=anglais| année= 2006| pages totales= 384| isbn = 0-7710-5769-5}}";
titres4[i] = "McKinley 2006";

modeles4[++i] = "*{{ouvrage| langue = anglais | nom1 = {{lang|en|National Hockey League}}| titre = Official Guide & Record Book / 2010| éditeur = Triumph books| année = 2010| pages totales=664| isbn = 978-1-60078-303-6| id = NHL records2010}}";
titres4[i] = "NHL records 2010";

modeles4[++i] = "*{{ouvrage | langue = anglais | prénom1 = Eric | nom1 = Zweig| titre = Long Shot, How the Winnipeg Falcons won the first Olympic hockey gold| numéro d'édition = | éditeur = James Lorimer and Company| année = 2007| pages totales= 112 |isbn= 1-55028-974-8}}";
titres4[i] = "Winnipeg Falcons";

modeles4[++i] = "* {{Ouvrage| titre= La Coupe à Québec - les Bulldogs et la Naissance du Hockey | éditeur= Sylvain Harvey| prénom1= Marc |nom1= Durand | langue=français | année= 2012| pages totales= 160 | lieu = Québec| isbn = 978-2-923794-48-8}}";
titres4[i] = "La Coupe à Québec";


function hockeyBarList4() {
  var toolbar4 = document.getElementById('toolbar');
 
  if (toolbar4) {
    var menu4 = document.createElement("select");
    menu4.onchange = function () { chooseInList4(this.selectedIndex); };
    menu4.style.display = "inline";
 
    for (var i=0; i<modeles4.length; i++) {
        var opt4 = document.createElement("option");
        opt4.appendChild(document.createTextNode(titres4[i]));
        menu4.appendChild(opt4);
    }
    toolbar4.appendChild(menu4);
  }
}

function chooseInList4(s) {
  if (s>0) {
    insertTags(modeles4[s], '', '')
    document.editform.wpSummary.value = document.editform.wpSummary.value + titres4[s];
  }
}

$(hockeyBarList4);
//</nowiki></pre>