MediaWiki:Gadget-unpatrolledarticle.js
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.
$( function ( mw, $ ) {
'use strict';
function addNotice( VEmode ) {
var params = { diff: '', redirect: 'no' };
var url = mw.util.getUrl( mw.config.get( 'wgPageName' ), params );
// in attesa che sia risolto [[phab:T92018]]
$( '<div></div>' ).load( url + ' .patrollink', function () {
if ( $( this ).text().length ) {
var title = 'Attenzione: ';
var msg = 'l\'ultima versione della pagina non è stata verificata.';
if ( VEmode ) {
mw.notify( msg, { title: title, type: 'warn' } );
} else {
$( '<div><p>' + title + msg + '</p></div>' )
.css( {
'background': '#ffdbdb',
'border': '1px solid #bb7070',
'display': 'inline-block',
'font-weight': 'bold',
'margin-bottom': '1em',
'padding': '.5em 1em'
} )
.insertBefore( '#wikiPreview' );
}
}
} );
}
$( function () {
if (
mw.config.get( 'wgNamespaceNumber' ) === 0 &&
mw.config.get( 'wgArticleId' ) !== 0 &&
!$( '.mw-revision' ).length &&
!mw.util.getParamValue( 'undo' )
) {
var actions = ['edit', 'submit'];
if ( $.inArray( mw.config.get( 'wgAction' ), actions ) !== -1 ) {
addNotice( false );
} else {
mw.hook( 've.activationComplete' ).add( function () {
addNotice( true );
} );
}
}
} );
} ( mediaWiki, jQuery ) );