MediaWiki:Gadget-common.js: differenze tra le versioni
Contenuto cancellato Contenuto aggiunto
Nessun oggetto della modifica |
Merge, come richiesto da Ricordisamoa, se ci sono errori, rollback |
||
Riga 12:
function newRi() {
}
var r = /\d+/;
var np = ri.match(r);
if (mw.config.get('wgTitle').indexOf("Drammaturgia di Lione Allacci.djvu") === 0) {
}
}
var pnmis=find_stringa(testoPagPrec[0],"{{PNMIS","}}",1);
if (pnmis !== "") {
Riga 39:
}
scriviBox(ri, "0");
}
}
Riga 49:
//rimuovi il parametro se c'era gia'
if (href.indexOf(par) != -1) {
regex = new RegExp(par + "
href = href.replace(regex, "");
}
Riga 64:
function leggiBox(area) {
if (area === undefined) {
if (mw.config.get('wgCanonicalNamespace') == "Page") area = 1;
else area = 0;
}
Riga 72:
function scriviBox(testo, area, ss, se) {
if (area === undefined || area === "") {
if (mw.config.get('wgCanonicalNamespace') == "Page") {
area = 1;
} else {
Riga 146:
// delim true: con delimitatori, false: senza delimitatori
function produciLista(testo, s1, s2, delim, x) {
lista =
while (find_stringa(testo, s1, s2, true, x) > "") {
elemento = find_stringa(testo, s1, s2, true, x);
Riga 161:
function parseTemplate(template, testo) {
if (testo === undefined) testo = leggiBox();
var t = find_stringa(testo, "{{" + template, "}}", 1, "{{");
var l = []; // lista delle keys
Riga 226:
*/
function acchiappaWikicode(pagina, progetto) {
if (pagina === undefined) pagina = mw.config.get('wgPageName');
if (progetto === undefined) {
progetto = "";
Riga 242:
}
contenuto = contenuto.replace(/\</g, '<span style="color:blue"><').replace(/\>/g, '></span>').replace(/\n/g, "<br />");
if (mw.config.get('wgCanonicalNamespace') == "Page") {
var noincludeList = produciLista(contenuto, '<span style="color:blue"><noinclude></span>', '<span style="color:blue"></noinclude></span>', 1);
var header = noincludeList[0];
Riga 266:
function creaBottoniera() {
$('#'
} else {▼
}
Line 285 ⟶ 282:
// azione è una stringa composta da v,e,s,h rispettivamente view,edit,submit,history
// se nome è un oggetto svolgilo
▲ var p={};
p = {
p.nome=nome;▼
nome: nome,
funzione: funzione,
azione: azione,
messaggio: messaggio
};
if (p.messaggio===undefined) p.messaggio="Nessun aiuto registrato";▼
if (p.classe===undefined) p.classe="baseButton";▼
if (p.stile===undefined) p.stile="display:inline";▼
}
if (p.namespaces!==undefined) {▼
for (var i=0; i<listaNamespaces.length; i+=1) {▼
listaNamespaces[i]=$.trim(listaNamespaces[i]); ▼
if (["ns0", "Main", "Principale"].indexOf(listaNamespaces[i]) !== -1) {
if ($.inArray(wgCanonicalNamespace,p.namespaces.split(","))==-1) return;▼
listaNamespaces[i] == "";
}
}
}
// Passo 1: se newtatooo non esiste, lo crea
// fine se azione=history
if (mw.config.get('wgAction') === "history") {
return;
}
Line 319 ⟶ 320:
p.azione = "ves";
}
if (p.messaggio === undefined) {
p.messaggio = "Nessun messaggio di aiuto registrato";
}
// valutazione condizione di visualizzazione
if (mw.config.get('wgAction') === "edit" && p.azione.indexOf("e") === -1) {
return;
}
if (mw.config.get('wgAction') === "view" && p.azione.indexOf("v") === -1) {
return;
}
if (mw.config.get('wgAction') === "submit" && p.azione.indexOf("s") === -1) {
return;
}
Line 336 ⟶ 337:
if (p.nome.substring(0, 2) == "//") {
var html = '<img class="'+p.classe+'" style="'+p.stile+'" src="' + p.nome + '" onclick="' + p.funzione + '" title="' + p.messaggio +'"';
}
// caso pulsante=label
else {
var html = '<button class="'+p.classe+'" style="'+p.stile+'" type="button" title="' + p.messaggio + '" onclick="' + p.funzione +'"';
}
return false;
}
Line 373 ⟶ 374:
'target':document,
'keycode':false
};
if(!opt) opt = default_options;
else {
Line 486 ⟶ 487:
'f11':122,
'f12':123
};
var modifiers = {
Line 582 ⟶ 583:
// funzione per gestire l'icona Link a immagini IA in nsIndice
$(document).ready(function () {
if (mw.config.get('wgCanonicalNamespace')=="Index") {
}
});
|