Redaktor:Maros/monobook.js

Z Wikipédie

Poznámka: Aby sa zmeny prejavili, po uložení musíte vymazať vyrovnávaciu pamäť vášho prehliadača: Mozilla / Firefox / Safari: držte stlačený Shift a kiknite na Reload alebo stlačte Ctrl-Shift-R (Cmd-Shift-R na Apple Mac); IE: držte Ctrl a kliknite na Refresh alebo stlačte Ctrl-F5; Konqueror:: jednoducho kliknite na tlačidlo Reload alebo stlačte F5; Používatelia Opery možno budú musieť úplne vymazať vyrovnávaciu pamäť prehliadača v ponuke Tools→Preferences.

/* <nowiki> */


function wpTextboxReplace()
{
    var s = prompt("Search regexp:");
    if(s){
        var r = prompt("Replace /"+s+"/ with:");
        if(!r && r != '') return;
        var txt = document.editform.wpTextbox1;
        txt.value = txt.value.replace(new RegExp(s, "mg"), r);
    }
}

function BioInfoedit(){
    document.editform.wpSummary.value = 'Pridaný Infobox';
    var txt = document.editform.wpTextbox1;
    if(txt.value.length > 0) txt.value += '\n';
    txt.value = '{{Infobox Osobnosť\n  |Meno = xxx\n  |Portrét = xxxx\n  |Popis = xxxx\n  |Dátum narodenia = [[xxx]] [[xxx]]\n  |Miesto narodenia = [[xxx]], [[xxx]] (dnes [[xxx]])\n  |Dátum úmrtia = [[xxx]] [[xxx]]\n  |Miesto úmrtia = [[xxx]], [[xxx]] (dnes [[xxx]])\n}}' + txt.value;
    txt.focus();
}

addOnloadHook(function () {
    if (document.forms.editform) {
        addPortletLink('p-cactions', 'javascript:wpTextboxReplace()', 'replace', 'ca-replace',
                       'Regexp replace for the edit window', 'R', document.getElementById('ca-history'));
        addPortletLink('p-cactions', 'javascript:BioInfoedit()', 'IB-Bio', 'ca-IB-Bio',
                       'Šablona Osobnosť', 'B', document.getElementById('ca-replace'));
    }
});

// This will add an [edit] link at the top of all pages except preview pages and the main page
// by User:Pile0nades

// Add an [edit] link to pages
addOnloadHook(function () {
  // if this is preview page or generated page, stop
  if(
    document.getElementById("wikiPreview") ||
    document.getElementById("histlegend‎") ||
    document.getElementById("difference‎") ||
    document.getElementById("watchdetails") ||
    document.getElementById("ca-viewsource") ||
    window.location.href.indexOf("/wiki/Special:") != -1
  ) {
    if(window.location.href.indexOf("&action=edit&section=0") != -1) {
      document.getElementById("wpSummary").value = "/* Intro */ ";
    }
    return;
  };

  // get the page title
  var pageTitle = wgPageName;

  // create div and set innerHTML to link
  var divContainer = document.createElement("div");
  divContainer.innerHTML = '<div class="editsection">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="Edit section: '+pageTitle+'">edit intro</a>]</div>';

  // insert divContainer into the DOM below the h1
  if(window.location.href.indexOf("&action=edit") == -1) {
    document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
  }

});


(function () {
    var oldAddButton = addButton;
    if (typeof(oldAddButton) != 'function') return;
    addButton = function () {
        if (arguments.length > 2)
            arguments[2] = arguments[2].replace(/^--(~+)$/, '—$1');
        oldAddButton.apply(this, arguments);
    };
})();

// [[User:Dschwen/highlightredirects.js]] - please include this line 
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Dschwen/highlightredirects.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

/* </nowiki> */