MediaWiki:Gadget-summarised-editing.js

From WikiMSK

Revision as of 00:18, 23 August 2020 by Jeremy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
wpSummaryButtons = new Array();

function insertSummary(text) {
  wpSummary = document.getElementById('wpSummary');
 
  if (wpSummary.value.indexOf(text) != -1) return;
 
  if(wpSummaryButtons.length == 0) return;
 
  if (wpSummary.value.match(/[^,; \/•]$/)) wpSummary.value += ';';
  if (wpSummary.value.match(/[^ ]$/)) wpSummary.value += ' ';
 

  wpSummary.value += text;
}

function addSummaryButton(name, text, title) {

  buttonSummary = document.createElement('a');
  buttonSummary.appendChild(document.createTextNode(name));
  buttonSummary.href = "#";
  buttonSummary.title = title;
  buttonSummary.onclick = function(){insertSummary(text); return false;};
 
  wpSummaryButtons[wpSummaryButtons.length] = buttonSummary;
}

function createSummaryButtons(){
  // pokud pole Shrnutí editace neexistuje, nemá smysl pokračovat
  if(!document.getElementById('wpSummary')) return;
  var wpSummary = document.getElementById('wpSummary');
  if (!wpSummary || (wpSummary.form.wpSection && wpSummary.form.wpSection.value == 'new')) return;
 
  wpSummaryBtn = document.createElement('div');
  wpSummaryBtn.className = 'mw-editSummary';
  wpSummaryBtnP = document.createElement('p');
  wpSummaryBtn.appendChild(wpSummaryBtnP);
 
  wpSummaryLegend = document.createElement('b');
  wpSummaryLegend.appendChild(document.createTextNode("Suggestions for editing summary: "));
  wpSummaryBtnP.appendChild(wpSummaryLegend);
 
  for(var i in wpSummaryButtons) {
    wpSummaryBtnP.appendChild(wpSummaryButtons[i]);
    wpSummaryBtnMezera = document.createElement('span');
    if(i != (wpSummaryButtons.length - 1)) wpSummaryBtnMezera.appendChild(document.createTextNode(' • '));
    wpSummaryBtnP.appendChild(wpSummaryBtnMezera);
  }
 
   wpInsert = $(".mw-editTools")[0];
   wpInsert.parentNode.insertBefore(wpSummaryBtn, wpInsert.nextSibling);
}

addSummaryButton ("general", "general content addition", "General content addition");
addSummaryButton ("editing", "general content editing", "General content editing");
addSummaryButton ("category", "categories", "edit categories");
addSummaryButton ("typography", "typo", "typography fixes");
addSummaryButton ("spelling", "spelling", "spelling corrections");
addSummaryButton ("linking", "linking", "Add links to article");
addSummaryButton ("image", "image", "add / edit image");
addSummaryButton ("license", "license", "Modify licensing");
addSummaryButton ("headings", "headings", "Edit headings");
addSummaryButton ("portals", "portals", "Portal control");
addSummaryButton ("citations", "citations", "Edit citations in an article");
addSummaryButton ("redirect", "redirect", "article redirect created");
addSummaryButton ("typo", "typo", "typo fixed");
addSummaryButton ("template", "template", "Added or modified template");

$(function() {createSummaryButtons();});

/* </pre> */