72d6798022
Replace all relevant instances of "blacklist" with blocklist. Untested due to OS restricitions. Please check before merge.
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
function enableButton() {
|
|
var enablebutton = '<form action="/enable" method="POST"> <button type="submit">Enable</button> </form> ';
|
|
var disablebutton = '<form action="/disable" method="POST"> <button style="background-color: red;" type="submit">Disable</button> </form> ';
|
|
var enabled = getCookie('enabled');
|
|
if (enabled == "True") {
|
|
return disablebutton;
|
|
} else {
|
|
return enablebutton;
|
|
}
|
|
}
|
|
|
|
function getCookie(cname) {
|
|
var name = cname + '=';
|
|
var decodedCookie = decodeURIComponent(document.cookie);
|
|
var ca = decodedCookie.split(';');
|
|
for (var i = 0; i < ca.length; i++) {
|
|
var c = ca[i];
|
|
while (c.charAt(0) == ' ') {
|
|
c = c.substring(1);
|
|
}
|
|
if (c.indexOf(name) == 0) {
|
|
return c.substring(name.length, c.length);
|
|
}
|
|
}
|
|
return "";
|
|
}
|
|
|
|
function listformat(list) {
|
|
list = list.replace(/\"/g, '')
|
|
list = list.split('\\012');
|
|
return list.join('\n');
|
|
}
|
|
|
|
|
|
document.getElementById("enablebutton").innerHTML = enableButton();
|
|
|
|
document.getElementById("goodlist").innerHTML = listformat(getCookie("goodlist"));
|
|
|
|
document.getElementById("blocklist").innerHTML = listformat(getCookie("blocklist")); |