2018-12-20 19:23:16 +03:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "UTF-8" / >
< title > Maloja - Issues< / title >
< link rel = "stylesheet" href = "maloja.css" / >
< / head >
< body >
< table class = "top_info" >
< tr >
< td class = "text" >
< h1 > Possible Issues< / h1 > < br / >
< span > with your library< / span >
< p class = "stats" > < a href = "/scrobbles?artist=KEY_ENC_ARTISTNAME" > KEY_ISSUES Issues< / a > < / p >
2018-12-21 21:13:24 +03:00
< p > Maloja can identify possible problems with consistency or redundancy in your library. After making any changes, you should < a onclick = 'fullrebuild()' > rebuild your library< / a > .< / p >
2018-12-20 19:23:16 +03:00
< / td >
< / tr >
< / table >
KEY_ISSUESLIST
< / body >
< script >
function newrule() {
keys = ""
for (var i = 1; i < arguments.length ; i + + ) {
keys += encodeURIComponent(arguments[i]) + "& "
}
console.log(keys)
var xhttp = new XMLHttpRequest();
xhttp.open("POST","/db/newrule?", true);
xhttp.send(keys);
e = arguments[0]
line = e.parentNode
line.parentNode.removeChild(line)
}
2018-12-21 18:32:21 +03:00
function fullrebuild() {
var xhttp = new XMLHttpRequest();
xhttp.open("POST","/db/rebuild", true);
xhttp.send()
window.location = "/wait";
}
2018-12-20 19:23:16 +03:00
< / script >
< / html >