User:GeeJo/monobook.js

Source: Wikipedia, the free encyclopedia.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// [[User:Lupin/popups.js]]   
importScript('User:Lupin/popups.js');

/*<pre>*/

function addlilink(tabs, url, name, id, title, key){
    var na = document.createElement('a');
    na.href = url;
    na.appendChild(document.createTextNode(name));
    var li = document.createElement('li');
    if(id) li.id = id;
    li.appendChild(na);
    tabs.appendChild(li);
    if(id)
    {
        if(key && title)
        {
            ta[id] = [key, title];
        }
        else if(key)
        {
            ta[id] = [key, ''];
        }
        else if(title)
        {
            ta[id] = ['', title];
        }
    }
    // re-render the title and accesskeys from existing code in wikibits.js
    akeytt();
    return li;
}

/*</pre>
/*<pre>*/
function addTab(url, name, id, title, key){
    var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
    return addlilink(tabs, url, name, id, title, key)
};
/*</pre>

/*<pre>*/
$(function(){
  if(mw.config.get('wgPageName')=="Special:Newpages") addTab("javascript:filternewpages()","filter >=5000","ca-fnp","filter >=5000","");
});

// Filtering

/*<pre>*/
 
function addlilink(tabs, url, name, id, title, key){
    var na = document.createElement('a');
    na.href = url;
    na.appendChild(document.createTextNode(name));
    var li = document.createElement('li');
    if(id) li.id = id;
    li.appendChild(na);
    tabs.appendChild(li);
    if(id)
    {
        if(key && title)
        {
            ta[id] = [key, title];
        }
        else if(key)
        {
            ta[id] = [key, ''];
        }
        else if(title)
        {
            ta[id] = ['', title];
        }
    }
    // re-render the title and accesskeys from existing code in wikibits.js
    akeytt();
    return li;
}
 
/*</pre>
/*<pre>*/
function addTab(url, name, id, title, key){
    var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
    return addlilink(tabs, url, name, id, title, key)
};
/*</pre>
 
/*<pre>*/
$(function(){
  if(mw.config.get('wgPageName')=="Special:NewPages") addTab("javascript:filternewpages()","filter >=5000","ca-fnp","filter >=5000","");
});
 
function filternewpages()
{
  var a=document.body.getElementsByTagName("LI");
  var i,j;
  i=a.length;
  while(i--)
  {
    if(a[i].innerHTML.indexOf(" bytes]")!=-1)
    {
      j=a[i].innerHTML.split(" bytes]")[0].split("[")[1];
      if(new Number(j.split(",").join(""))<5000) a[i].style.display="none";
    }
  }
}
/*</pre>*/

function filternewpages()
{
  var a=document.body.getElementsByTagName("LI");
  var i,j;
  i=a.length;
  while(i--)
  {
    if(a[i].innerHTML.indexOf(" bytes]")!=-1)
    {
      j=a[i].innerHTML.split(" bytes]")[0].split("[")[1];
      if(new Number(j.split(",").join(""))<5000) a[i].style.display="none";
    }
  }
}
/*</pre>*/

importScript('User:Shubinator/DYKcheck.js'); //[[User:Shubinator/DYKcheck.js]]