User:Kameejl/formatMAI.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Kameejl/formatMAI. |
/*
The vast majority of artist articles will be displayed correctly but there are some known issues:
Known issues:
Capitalization
1) Uppercase genres like IDM, R&B, NWOBHM will be displayed like Idm, R&b and Nwobhm if capitalization is enabled. See [[Raven (band)]], [[Autechre]].
2) Capitalization can only be used correctly for enumerations where each entity is wikilinked.
3) All wikilinked entities in the capitalized sections will be capitalized. Special comments is like "(see below)" will be displayed as "(See below)".
Comma replacement:
4) Commas used in a unconventional manner will be replaced by line breaks. Little comments like "Partial reunion in 1982, 1996, 2000" will be replaced by "Partial reunion in 1982<br />1996<br />2000". See [[The Who]].
5) Line breaks used for improvement of lay out (f.e. to force entities on the next row like bla, bli,<br />blo, blu) will not be removed and may result in empty rows or visible commas.
*/
function getElementByClassName(document,tagname,classname){
var superbanana = (tagname == "*" && document.all) ? document.all : document.getElementsByTagName(tagname);
var banana=new Array();
classname=classname.replace(/\-/g,"\\-");
var aeroplanedeluxorzz=new RegExp("(^|\\s)"+classname+"(\\s|$)");
var pritstift;
for(var i=0;i<superbanana.length;i++){
pritstift=superbanana[i];
if(aeroplanedeluxorzz.test(pritstift.className)){
banana.push(pritstift);
}
}
return (banana)
}
function ppp(text, capitalize){
var text;
var capitalize;
if(capitalize!="yes"){
capitalize="no";
}
var patat=getElementByClassName(document,"*","infobox vcard")[0];
var aeroplanedeluxe;
for(var i=0;i<patat.getElementsByTagName("th").length;i++){
for(var qq=0;qq<patat.getElementsByTagName("th")[i].innerHTML.length-text.length+1;qq++){
if(patat.getElementsByTagName("th")[i].innerHTML.substr(qq,text.length)==text){
aeroplanedeluxe=i-1;
}
}
}
if(aeroplanedeluxe>0){
var aeroplane=patat.getElementsByTagName("td")[aeroplanedeluxe].innerHTML;
var aeroplanedelux=aeroplane;
var aeroplanedeluxor=aeroplanedelux.indexOf(",");
while (aeroplanedeluxor!=-1){
aeroplanedelux=aeroplanedelux.replace(",","<br />");
aeroplanedelux=aeroplanedelux.replace(",<br />","<br />");
aeroplanedelux=aeroplanedelux.replace(", <br />","<br />");
aeroplanedelux=aeroplanedelux.replace(",<br>","<br />");
aeroplanedelux=aeroplanedelux.replace(", <br>","<br />");
aeroplanedelux=aeroplanedelux.replace(",<br/>","<br />");
aeroplanedelux=aeroplanedelux.replace(", <br/>","<br />");
aeroplanedelux=aeroplanedelux.replace(",</br>","<br />");
aeroplanedelux=aeroplanedelux.replace(", </br>","<br />");
aeroplanedeluxor=aeroplanedelux.indexOf(",");
}
var peer=aeroplanedelux;
if(capitalize=="yes"){
var temp=new Array();
var temppart=new Array();
temp=aeroplanedelux.split('">');
peer="";
for(var z=0;z<temp.length;z++){
temppart=temp[z].split('</a>');
if(temppart[0]=="IDM"
|| temppart[0]=="NWOBHM"
|| temppart[0]=="R&B"
|| temppart[0]=="Hi-NRG"
|| temppart[0]=="New Wave"
|| temppart[0]=="see below"
|| temppart[0]=="various"
|| temppart[0]=="various others"){
temp[z]=temppart[0]+"</a>"+temppart[1]
}
else{
temp[z]=temppart[0].substr(0,1).toUpperCase()+temppart[0].substr(1).toLowerCase()+"</a>"+temppart[1]
};
if(z!=temp.length-1){
peer=peer+temp[z]+"\">"
}
else{
peer=peer+temp[temp.length-1]
};
}
if(text=="Years active"){
var tempcomment=new Array();
var tempcommentpart=new Array();
tempcomment=aeroplanedelux.split('<small>');
var vlees=tempcomment[0].indexOf("-");
var taart=tempcomment[0].indexOf(" - ");
var groente=tempcomment[0].indexOf(" – ");
var aardappels=tempcomment[0].indexOf(" – ");
while (vlees!=-1){
tempcomment[0]=tempcomment[0].replace("-","–");
vlees=tempcomment[0].indexOf("-");
}
while (taart!=-1){
tempcomment[0]=tempcomment[0].replace(" - ","–");
taart=tempcomment[0].indexOf(" - ");
}
while (groente!=-1){
tempcomment[0]=tempcomment[0].replace(" – ","–");
groente=tempcomment[0].indexOf(" – ");
}
while (aardappels!=-1){
tempcomment[0]=tempcomment[0].replace(" – ","–");
aardappels=tempcomment[0].indexOf(" – ");
}
if(tempcomment.length>1){
var koek=tempcomment[1].indexOf("<br />");
while (koek!=-1){
tempcomment[1]=tempcomment[1].replace("<br />",", ");
koek=tempcomment[1].indexOf("<br />");
}
peer = tempcomment[0] + "<small>" + tempcomment[1];
}
else{
peer = tempcomment[0]
};
}
}
patat.getElementsByTagName("td")[aeroplanedeluxe].innerHTML=peer;
}
else{
return
};
}