0308490aef
Resolves the remaining Minor items from the 2026-05-15 review so the web-UI dashboard work has no open follow-ups: a real-HubConnection end-to-end test for the SignalR feed, stable mbproxy.admin.broadcast.* log-event names, keyboard/aria accessibility on the fleet table, frontend JS hardening (URL-decode guard, NaN guards, shared util.js), reconciler<->capture-registry coverage, throwing-sink and embedded-asset tests, broadcaster polish, and a soft upper bound on AdminPushIntervalMs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
21 lines
815 B
JavaScript
21 lines
815 B
JavaScript
/* ============================================================================
|
|
Shared helpers for the admin dashboard pages. Loaded before dashboard.js /
|
|
detail.js; each page's IIFE pulls these off window.mbproxyUtil so the HTML-
|
|
escaping logic has exactly one definition.
|
|
========================================================================= */
|
|
'use strict';
|
|
|
|
(function () {
|
|
/** Escapes the three HTML-significant characters for safe text-node insertion. */
|
|
function escapeHtml(s) {
|
|
return String(s).replace(/[&<>]/g, c => ({ '&': '&', '<': '<', '>': '>' }[c]));
|
|
}
|
|
|
|
/** Escapes a value for use inside a double-quoted HTML attribute. */
|
|
function escapeAttr(s) {
|
|
return escapeHtml(s).replace(/"/g, '"');
|
|
}
|
|
|
|
window.mbproxyUtil = { escapeHtml, escapeAttr };
|
|
})();
|