MediaWiki:Gadget-EditTop.js: Difference between revisions

Want an adless experience? Log in or Create an account.
(Created page.)
 
m (update deprected function name)
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
   $(function edittop_hook () {
   $(function edittop_hook () {
     var localtitles = {
     var localtitles = {
      cs: 'Editovat úvodní sekci',
       en: 'Edit lead section',
       en: 'Edit lead section',
      fr: 'Modifier le résumé introductif',
      it: 'Modifica della sezione iniziale',
      ja: '導入部を編集',
      ko: '도입부를 편집',
      pt: 'Editar a seção superior',
      'pt-br': 'Editar a seção superior'
     };
     };
   
   
     var our_content = document.getElementById ("content") || document.getElementById ("mw_content") || document.body;
     var our_content = document.getElementById ("content") || document.getElementById ("mw_content") || document.body;
     var editspans = getElementsByClassName (our_content, "span", "editsection");
     var editspans = our_content.getElementsByClassName ("editsection");
     var span1;
     var span1;
   
   
Line 32: Line 25:
       editwidth += 10;
       editwidth += 10;
     }
     }
     var topicons = getElementsByClassName (our_content, "div", "topicon");
     var topicons = our_content.getElementsByClassName ("topicon");
     for (var el = 0; topicons && el < topicons.length; el++) {
     for (var el = 0; topicons && el < topicons.length; el++) {
       topicons[el].style.marginRight = editwidth + "px";
       topicons[el].style.marginRight = editwidth + "px";
Line 46: Line 39:
     var a = span0.getElementsByTagName ("A")[0];
     var a = span0.getElementsByTagName ("A")[0];
     if (a.href.indexOf ("&section=T") == -1) {
     if (a.href.indexOf ("&section=T") == -1) {
       a.title = a.title.replace (/(: |:).*$/, "$1" + "0");
       a.title = a.title.replace (/(: |:).*$/, "$1" + mw.config.get( 'wgTitle' ));
       a.setAttribute ("href", a.getAttribute ("href", 2).replace (/&section=\d+/, "&section=0"));
       a.setAttribute ("href", a.getAttribute ("href", 2).replace (/&section=\d+/, "&section=0"));
     }
     }
     else { //transcluded
     else { //transcluded
       a.title = localtitles[mw.config.get( 'wgUserLanguage' )] || localtitles.en;
       a.title = localtitles[mw.config.get( 'wgUserLanguage' )] || localtitles.en;
       a.setAttribute ("href", mw.util.wikiGetlink( mw.config.get( 'wgPageName' ) ) + "?action=edit&section=0");
       a.setAttribute ("href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?action=edit&section=0");
     }
     }
   });
   });
}
}

Latest revision as of 19:06, June 20, 2020

if ($.inArray( mw.config.get('wgAction'), [ 'view', 'purge' ]) !== -1 && mw.config.get( 'wgNamespaceNumber' ) >=0) {
  $(function edittop_hook () {
    var localtitles = {
      en: 'Edit lead section',
    };
 
    var our_content = document.getElementById ("content") || document.getElementById ("mw_content") || document.body;
    var editspans = our_content.getElementsByClassName ("editsection");
    var span1;
 
    for (var i = 0; editspans && i < editspans.length; i++) {
      if (editspans[i].className.indexOf ("plainlinks") == -1) {
        span1 = editspans[i];
        break;
      }
    }
    if (!span1) {
      return;
    }
    var span0 = span1.cloneNode (true);
    var editwidth = span1.offsetWidth;
    if (mw.config.get("skin") == "vector") {
      mw.util.addCSS ("h1.firstHeading span.editsection {font-size: 50%;}");
    } else {
      editwidth += 10;
    }
    var topicons = our_content.getElementsByClassName ("topicon");
    for (var el = 0; topicons && el < topicons.length; el++) {
      topicons[el].style.marginRight = editwidth + "px";
    }
    var mwfrtag = document.getElementById ("mw-fr-revisiontag");
    if (mwfrtag) {
      mwfrtag.style.marginRight = editwidth + "px";
    }
 
    our_content = document.getElementById ("mw_header") || document.getElementById ("content") || document.body;
    var parent = our_content.getElementsByTagName ("H1")[0];
    parent.insertBefore (span0, parent.firstChild);
    var a = span0.getElementsByTagName ("A")[0];
    if (a.href.indexOf ("&section=T") == -1) {
      a.title = a.title.replace (/(: |:).*$/, "$1" + mw.config.get( 'wgTitle' ));
      a.setAttribute ("href", a.getAttribute ("href", 2).replace (/&section=\d+/, "&section=0"));
    }
    else { //transcluded
      a.title = localtitles[mw.config.get( 'wgUserLanguage' )] || localtitles.en;
      a.setAttribute ("href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?action=edit&section=0");
    }
  });
}