From 6883c5b6b94892e67593bc77c772a172901d3ff2 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Thu, 26 Jan 2023 16:40:03 -0500 Subject: [PATCH] mention new features --- docs/changelog.txt | 4 ++++ views/honkpage.js | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/changelog.txt b/docs/changelog.txt index aa4ec2d..7d121d2 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -2,6 +2,10 @@ changelog === next ++ Emu peeker + ++ CSP compliance + + Filter to match anything with summary/warning. + Start collecting quties. diff --git a/views/honkpage.js b/views/honkpage.js index f0f9bdc..7c8b8e3 100644 --- a/views/honkpage.js +++ b/views/honkpage.js @@ -5,12 +5,12 @@ var tophid = { } var servermsgs = { } function encode(hash) { - var s = [] - for (var key in hash) { - var val = hash[key] - s.push(encodeURIComponent(key) + "=" + encodeURIComponent(val)) - } - return s.join("&") + var s = [] + for (var key in hash) { + var val = hash[key] + s.push(encodeURIComponent(key) + "=" + encodeURIComponent(val)) + } + return s.join("&") } function post(url, data) { var x = new XMLHttpRequest()