Usuario:Chixpy/scripts/interface.js

De Inciclopedia
Ir a la navegación Ir a la búsqueda

Nota: Después de publicar, quizás necesite actualizar la caché de su navegador para ver los cambios.

  • Firefox/Safari: Mantenga presionada la tecla Shift mientras pulsa el botón Actualizar, o presiona Ctrl+F5 o Ctrl+R (⌘+R en Mac)
  • Google Chrome: presione Ctrl+Shift+R (⌘+Shift+R en Mac)
  • Internet Explorer/Edge: mantenga presionada Ctrl mientras pulsa Actualizar, o presione Ctrl+F5
  • Opera: Presiona Ctrl+F5.
/*
* Personalizada por Axxgreazz, para el [http://es.wikipedia.org/wiki/Usuario:Axxgreazz/Monobook-Suite Monobook-Suite]
* Modificada por Chixpy para su uso en [http://inciclopedia.wikia.com/wiki/User:Chixpy/IMBS2 Inciclopedia] (y otras wikis de wikia).

==Opciones de bloqueo==
Siempre marca "Bloquear usuarios anónimos solamente" en [[Special:Blockip]] 
<small>Nota Chixpy: Parece ser una opción de MediaWiki 1.8+</small>
<pre><nowiki> */


addOnloadHook(function(){ var x; if (x=document.getElementById('wpAnonOnly')) {x.checked=true;} });
addOnloadHook(function(){ var x; if (x=document.getElementById('wpCreateAccount')) {x.checked=false;} });


//Pestaña borrar para consultas de borrado
addOnloadHook(function ()
{
   pagina = get_title(); //wgPageName;
   if(pagina.indexOf("Wikipedia:Consultas_de_borrado/") == 0)
   {   var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
       addlilink(tabs, "javascript:csd(get_title())", 'ConsBorr')
   }
});

function csd(title)
{ 
    var pagename = title.substring(title.indexOf('/') + 1 , title.length);
    window.open('http://'+ document.location.hostname + '/index.php?title=' + pagename + '&action=delete&axx=1');
/*
    var pagename = title.substring(title.indexOf('/') + 1 , title.length);
    topaz.wputil.setdelete(pagename,'En [[Wikipedia:' + title + ']] se decidió borrar este artículo');
*/
}

/*
addOnloadHook(function ()
{
   if(document.title.indexOf("Confirma el borrado - ") == 0 )
   {   document.forms[0].wpConfirmB.click();}
});
*/

//Añade un tab adicional
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;
}

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

//</nowiki></pre>