Questa pagina definisce alcuni parametri di aspetto e comportamento generale di tutte le pagine. Per personalizzarli vedi Aiuto:Stile utente.


Nota: dopo aver salvato è necessario pulire la cache del proprio browser per vedere i cambiamenti (per le pagine globali è comunque necessario attendere qualche minuto). Per Mozilla / Firefox / Safari: fare clic su Ricarica tenendo premuto il tasto delle maiuscole, oppure premere Ctrl-F5 o Ctrl-R (Command-R su Mac); per Chrome: premere Ctrl-Shift-R (Command-Shift-R su un Mac); per Konqueror: premere il pulsante Ricarica o il tasto F5; per Opera può essere necessario svuotare completamente la cache dal menù Strumenti → Preferenze; per Internet Explorer: mantenere premuto il tasto Ctrl mentre si preme il pulsante Aggiorna o premere Ctrl-F5.

//<pre><nowiki>
 


var myButtons = new Array([1,'{{Cancellazione|{{subst:Utente:FiloSottile/Canc}}}}--~~~~','1','Utente',0,'Notifica cancellazione'],[2,'{{Wikipedia:Pagine da cancellare/{{subst:Utente:FiloSottile/Canc}}}}\\n','','Cancellazione',70,''],[2,'[[Utente:BotSottile|BotSottile]] ','--~~~~','BS',0,''],[2,'{{Bio\\n|Nome = \\n|Cognome = \\n|Sesso = \\n|LuogoNascita = \\n|GiornoMeseNascita = \\n|AnnoNascita = \\n|LuogoMorte = \\n|GiornoMeseMorte = \\n|AnnoMorte = \\n|Attività = \\n|Epoca = \\n|Nazionalità = \\n|PostNazionalità = &#32;\\n}}\\n','','Bio',0,'Aggiungo il [[Template:Bio]]'],[2,'<pre><nowiki>','</nowiki></pre>','Code',0,'']);

var myLinks = new Array(['Link','http://it.wikipedia.org/wiki/Utente:FiloSottile/PaginaUtente/4'],['Canc log','http://it.wikipedia.org/w/index.php?title=Speciale%3ARegistri&type=delete&user=&page=%TITOLO%'],['Block log','http://it.wikipedia.org/w/index.php?title=Speciale:Registri&type=block&page=Utente:%TITOLO2%'],['Bot','http://it.wikipedia.org/wiki/Wikipedia:Bot/Richieste#footer']);
var nomeBot = "BotSottile";


/*

Questo script consente di effettuare ricerche su google selezionando del testo con il mouse mentre si tiene premuto Ctrl. La ricerca viene avviata in una nuova finestra non appena si rilascia il pulsante del mouse.

*/
//<pre><nowiki>
//Speedy Google Search
$( document ).ready(function (){
  var listener = function(e){
    e = (e) ? e : ((window.event) ? window.event : null);
    if(e && e.ctrlKey){
      if(navigator.appName=='Microsoft Internet Explorer' && navigator.userAgent.indexOf("Opera")==-1) //IE
        var t = document.selection.createRange().text;
      else //Non-IE
        var t = document.getSelection().toString();
      t = t.replace(/^\s+/, '').replace(/\s+$/, ''); //trim
      var q = t.indexOf('"') == -1 ? '"' : '';
      if(t)
        window.open("http://www.google.com/search?q=" + q + encodeURIComponent(t) + q);
    }
  }
  if (window.addEventListener)
    window.addEventListener('mouseup', listener, false); //Non-IE
  else
    document.onmouseup = listener; //IE
});
//</nowiki></pre>



/*</pre>
</nowiki>
==Set Canc==
<nowiki>
<pre>
*/



// adds tab "set canc"
if (wgAction == 'edit') {
	mw.loader.using( 'mediawiki.util' )
	.then( function () {
		// link da aggiungere a "navigazione"
		mw.util.addPortletLink('p-cactions', 'javascript:setCurrentCanc()', 'set canc', 'pb-sstatus');
} );
}



function setCurrentCanc()
{
Greeter = "Attenzione: lo script non funziona con caratteri quali è maiuscola (ecc.) o /";
    var div = document.createElement('div');
        div.id = 'inlinePopupDiv';
        div.style.position = 'absolute';
        div.style.zIndex   = 1000;
        div.style.left     =  '5px';
        div.style.top      =  '5px';
        div.style.padding      =  '5px';
        div.style.backgroundColor = '#FFFFFF';
        div.style.borderStyle     = 'solid';
        div.style.borderWidth     = ' medium';
        div.style.borderColor     = '#000000';

        var top = document.createElement('div');
            top.id = 'inlinePopupTop';
            top.style.textAlign = 'right';
            top.style.margin = '8px';
            top.style.backgroundColor = '#DDDDDD';

            var a = document.createElement('a');
                a.appendChild( document.createTextNode('Close'));
                a.href = 'javascript:void(0)';
    			$(a).on('click', function() { $('#inlinePopupDiv').remove(); } );
                a.style.margin = '8px';

            top.appendChild(a);

        div.appendChild(top);

        var greet = document.createElement('p');
        greet.innerHTML = Greeter;
        div.appendChild(greet);

        var form = document.createElement('form');
        form.name = "popupForm";
        var p = document.createElement('p');

            p.appendChild(document.createTextNode('Motivo della richiesta di cancellazione:'));
                     
            var stato = document.createElement('input');
            stato.name = 'status';
            stato.id = 'stato';
            stato.type = 'text';
            p.appendChild(stato);
       
            var button = document.createElement('input');
            button.value = 'OK';
            button.type = 'button';
            button.setAttribute('onclick', 'saveNewCanc()');
            p.appendChild(button);

        form.appendChild(p);
        div.appendChild(form);

    document.body.appendChild(div);
    div.getElementsByTagName('input')[0].focus();
}



function saveNewCanc()
{
    var newCaPa = '{{subst:' + wgPageName + '}}'
    var newCanc = wgPageName;
    var newUser = wgUserName;
    var newMoti = document.getElementById('stato').value;
    var newCont = '{{Cancellazione/richiesta|' + wgPageName + '}}\n\n' + newMoti + ' ~~' + '~~';
    var newPage = '<noinclude>{{cancellazione}}</noinclude> \n {{subst:' + 'Utente:' + newUser + '/Canc/Page' + '}}';


arrayMese = new Array("gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", 
                      "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre");
var date = new Date();
giorno = "" + date.getDate();
mese = arrayMese[date.getMonth()];
anno = "" + date.getFullYear();

    var newDate = anno + "_" + mese + "_" + giorno;

    //wpTextbox1 = document.getElementById("wpTextbox1")
    //document.editform.wpTextbox1.value = newTemp;
    //document.editform.wpSummary.value = 'Script cancellazione';
    //document.editform.wpSave.click();

document.editform.wpTextbox1.value = '{{cancellazione}}' + '\n' + document.editform.wpTextbox1.value;
document.editform.wpSummary.value = '+cancellazione';


    // registra il valore
	new mw.Api().postWithEditToken( {
		action: 'edit',
		title: 'Utente:' + mw.config.get('wgUserName'),
		text: newCanc,
		summary: 'Set Pagina da cancellare'
	} )
		.done(function() {
			new mw.Api().postWithEditToken( {
				action: 'edit',
				title: 'Wikipedia:Pagine_da_cancellare/' + newCanc,
				text: newCont,
				summary: 'Da aiutare da tempo'
			} )
			.done( function() {
				// e chiudi il popup
    			$('#inlinePopupDiv').remove();
    			// apre la pagina
    			window.open('http://it.wikipedia.org/w/index.php?title=Wikipedia:Pagine_da_cancellare/Log/' + newDate + '&action=edit');

			    // apre la pagina
    			window.open('http://it.wikipedia.org/w/index.php?title=' + newCanc + '&action=history');

				document.editform.wpSave.click();
			} )
		} )
}
//</nowiki></pre>

//</pre>