From 9b4d03d53ef0cbfac53767a05deacaa118675c88 Mon Sep 17 00:00:00 2001 From: yubiuser Date: Mon, 28 Oct 2024 20:25:10 +0100 Subject: [PATCH] Remove obsolete debug.js Signed-off-by: yubiuser --- .gitignore | 2 +- scripts/js/debug.js | 73 --------------------------------------------- 2 files changed, 1 insertion(+), 74 deletions(-) delete mode 100644 scripts/js/debug.js diff --git a/.gitignore b/.gitignore index 84260ef5..e2127a49 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ TODO *.zip test.html *.log -.php-cs-fixer.cache + # Intellij IDEA Project Files *.iml diff --git a/scripts/js/debug.js b/scripts/js/debug.js deleted file mode 100644 index 022f6b95..00000000 --- a/scripts/js/debug.js +++ /dev/null @@ -1,73 +0,0 @@ -/* Pi-hole: A black hole for Internet advertisements - * (c) 2017 Pi-hole, LLC (https://pi-hole.net) - * Network-wide ad blocking via your own hardware. - * - * This file is copyright under the latest version of the EUPL. - * Please see LICENSE file for your rights under this license. */ - -function eventsource() { - var ta = $("#output"); - var upload = $("#upload"); - var dbcheck = $("#dbcheck"); - var checked = ""; - var token = encodeURIComponent($("#token").text()); - - if (upload.prop("checked")) { - // add upload option - checked += "&upload"; - } - - if (dbcheck.prop("checked")) { - // add db integrity check option - checked += "&dbcheck"; - } - - // IE does not support EventSource - load whole content at once - if (typeof EventSource !== "function") { - $.ajax({ - method: "GET", - url: "scripts/php/debug.php?IE&token=" + token + checked, - async: false, - }).done(function (data) { - ta.show(); - ta.empty(); - ta.append(data); - }); - return; - } - - var source = new EventSource("scripts/php/debug.php?&token=" + token + checked); - - // Reset and show field - ta.empty(); - ta.show(); - - source.addEventListener( - "message", - function (e) { - ta.append(e.data); - // scroll to the bottom of #output (most recent data) - var taBottom = ta.offset().top + ta.outerHeight(true); - $("html, body").scrollTop(taBottom - $(window).height()); - }, - false - ); - - // Will be called when script has finished - source.addEventListener( - "error", - function () { - source.close(); - $("#output").removeClass("loading"); - }, - false - ); -} - -$("#debugBtn").on("click", function () { - $("#debugBtn").prop("disabled", true); - $("#upload").prop("disabled", true); - $("#dbcheck").prop("disabled", true); - $("#output").addClass("loading"); - eventsource(); -});