MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus MM*Stat

Wechseln zu: Navigation, Suche
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 2: Zeile 2:


$(function () {
$(function () {
   exist    = new mw.Api().get( { action: "query", titles: [ "R", "Hauptseite" ] } ).done(
   answer = new mw.Api().get( { action: "query", titles: [ "R", "Hauptseite" ] } ).done(
     function ( result ) {
     function ( result ) {
       exist = [];
       nonmissing = [];
       pages = result.query.pages;
       pages     = result.query.pages;
       for (i = 0; i<pages.length; i++) {
       for (i = 0; i<pages.length; i++) {
         if (!('missing' in pages[i])) exist.push(pages[i].title);
         if (!('missing' in pages[i])) nonmissing.push(pages[i].title);
       }
       }
       return(exist);
       html = '';
      if (nonmissing.length) {
        html = '<b>Unterseiten:</b>' + nonmissing.join(' ');
      }
      alert(html)
     });
     });
  alert(exist.toSource());
}());
}());

Version vom 21. November 2018, 15:14 Uhr

/* Das folgende JavaScript wird für alle Benutzer geladen. */

$(function () {
  answer = new mw.Api().get( { action: "query", titles: [ "R", "Hauptseite" ] } ).done(
    function ( result ) {
      nonmissing = [];
      pages      = result.query.pages;
      for (i = 0; i<pages.length; i++) {
        if (!('missing' in pages[i])) nonmissing.push(pages[i].title);
      }
      html = '';
      if (nonmissing.length) {
        html = '<b>Unterseiten:</b>' + nonmissing.join(' ');
      }
      alert(html)
    });
}());