restructure code and use frappy.client for SECoP

- separation of SECoP part from webserver
- use frappy client instead of own code for SECoP communication
This commit is contained in:
l_samenv
2024-10-23 11:10:04 +02:00
parent b708197d27
commit b07ca0bd4f
8 changed files with 597 additions and 1473 deletions

View File

@ -208,7 +208,7 @@ function updateValues(message, src) {
let elem = matches[j];
let type = elem.__ctype__;
if (type == "rdonly" || type == "rdlink") {
let text = htmlEscape(value);
let text = htmlEscape(component.formatted);
if (text) {
elem.innerHTML = text;
}