all repos — honk @ c973e951ec23543966278c98ab77892435fcce08

my fork of honk

mention new features
Ted Unangst tedu@tedunangst.com
Thu, 26 Jan 2023 16:40:03 -0500
commit

c973e951ec23543966278c98ab77892435fcce08

parent

dc8ee50b8745d4b72b2826177ed756342b0684df

2 files changed, 10 insertions(+), 6 deletions(-)

jump to
M docs/changelog.txtdocs/changelog.txt

@@ -2,6 +2,10 @@ changelog

=== next ++ Emu peeker + ++ CSP compliance + + Filter to match anything with summary/warning. + Start collecting quties.
M views/honkpage.jsviews/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()