From da49f25b4e3ba468820e2d542454cf27edf26c4e Mon Sep 17 00:00:00 2001
From: LordGrey <48840279+Lord-Grey@users.noreply.github.com>
Date: Wed, 15 Sep 2021 10:32:19 +0200
Subject: [PATCH] Do not limit priorities for Boblight (#1269) (#1298)
* Do not limit priorities for Boblight (#1269)
* Boblight - Allow to exclude component from build
* Fix merge
* Amlogic - Correct Pixelformat reference
* Remove "wrong" Amlogic ifdef, which was not working before
---
CMakeLists.txt | 10 +-
HyperionConfig.h.in | 3 +
assets/webconfig/js/content_network.js | 370 +++++++++---------
include/hyperion/Hyperion.h | 4 +
include/utils/Components.h | 10 +
libsrc/CMakeLists.txt | 4 +-
.../BoblightClientConnection.cpp | 63 +--
.../framebuffer/FramebufferFrameGrabber.cpp | 5 -
libsrc/hyperion/CMakeLists.txt | 5 +-
libsrc/hyperion/ComponentRegister.cpp | 7 +-
libsrc/hyperion/Hyperion.cpp | 8 +
.../schema/schema-boblightServer.json | 4 +-
src/hyperion-remote/JsonConnection.h | 2 +-
src/hyperion-remote/hyperion-remote.cpp | 4 +-
14 files changed, 273 insertions(+), 226 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f4a733cd..7241f354 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -42,11 +42,15 @@ endif()
# Set build variables
SET ( DEFAULT_AMLOGIC OFF )
+SET ( DEFAULT_BOBLIGHT ON )
SET ( DEFAULT_DISPMANX OFF )
+SET ( DEFAULT_DX OFF )
+SET ( DEFAULT_MF OFF )
SET ( DEFAULT_OSX OFF )
SET ( DEFAULT_QT ON )
SET ( DEFAULT_X11 OFF )
SET ( DEFAULT_XCB OFF )
+SET ( DEFAULT_V4L2 OFF )
SET ( DEFAULT_WS281XPWM OFF )
SET ( DEFAULT_AVAHI ON )
SET ( DEFAULT_USE_SHARED_AVAHI_LIBS ON )
@@ -55,7 +59,7 @@ SET ( DEFAULT_USE_SYSTEM_PROTO_LIBS OFF )
SET ( DEFAULT_USE_SYSTEM_MBEDTLS_LIBS OFF )
SET ( DEFAULT_TESTS OFF )
SET ( DEFAULT_EXPERIMENTAL OFF )
-SET ( DEFAULT_MF OFF )
+SET ( DEFAULT_CEC OFF )
SET ( DEFAULT_DEPLOY_DEPENDENCIES ON )
IF ( ${CMAKE_SYSTEM} MATCHES "Linux" )
@@ -159,6 +163,10 @@ STRING( REPLACE "-DEV" "" PLATFORM_DEFINE "${PLATFORM_DEFINE}" )
ADD_DEFINITIONS( ${PLATFORM_DEFINE} )
# set the build options
+
+option(ENABLE_BOBLIGHT "Enable BOBLIGHT server" ${DEFAULT_BOBLIGHT} )
+message(STATUS "ENABLE_BOBLIGHT = ${ENABLE_BOBLIGHT}")
+
option(ENABLE_AMLOGIC "Enable the AMLOGIC video grabber" ${DEFAULT_AMLOGIC} )
message(STATUS "ENABLE_AMLOGIC = ${ENABLE_AMLOGIC}")
diff --git a/HyperionConfig.h.in b/HyperionConfig.h.in
index 4933ad00..1f4c0ccd 100644
--- a/HyperionConfig.h.in
+++ b/HyperionConfig.h.in
@@ -45,6 +45,9 @@
// Define to enable CEC
#cmakedefine ENABLE_CEC
+// Define to enable boblight server
+#cmakedefine ENABLE_BOBLIGHT
+
// Define to enable the USB / HID devices
#cmakedefine ENABLE_USB_HID
diff --git a/assets/webconfig/js/content_network.js b/assets/webconfig/js/content_network.js
index 8397a01c..fb96119a 100644
--- a/assets/webconfig/js/content_network.js
+++ b/assets/webconfig/js/content_network.js
@@ -1,91 +1,92 @@
-$(document).ready( function() {
- performTranslation();
+$(document).ready(function () {
+ performTranslation();
- var conf_editor_net = null;
- var conf_editor_json = null;
- var conf_editor_proto = null;
- var conf_editor_fbs = null;
- var conf_editor_bobl = null;
- var conf_editor_forw = null;
+ var BOBLIGHT_ENABLED = window.comps.find(element => element.name == "BOBLIGHTSERVER");
- if(window.showOptHelp)
- {
- //network
- $('#conf_cont').append(createRow('conf_cont_net'))
- $('#conf_cont_net').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_net_heading_title"), 'editor_container_net', 'btn_submit_net', 'panel-system'));
- $('#conf_cont_net').append(createHelpTable(window.schema.network.properties, $.i18n("edt_conf_net_heading_title")));
+ var conf_editor_net = null;
+ var conf_editor_json = null;
+ var conf_editor_proto = null;
+ var conf_editor_fbs = null;
+ var conf_editor_bobl = null;
+ var conf_editor_forw = null;
- //jsonserver
- $('#conf_cont').append(createRow('conf_cont_json'))
- $('#conf_cont_json').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_js_heading_title"), 'editor_container_jsonserver', 'btn_submit_jsonserver', 'panel-system'));
- $('#conf_cont_json').append(createHelpTable(window.schema.jsonServer.properties, $.i18n("edt_conf_js_heading_title")));
+ if (window.showOptHelp) {
+ //network
+ $('#conf_cont').append(createRow('conf_cont_net'))
+ $('#conf_cont_net').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_net_heading_title"), 'editor_container_net', 'btn_submit_net', 'panel-system'));
+ $('#conf_cont_net').append(createHelpTable(window.schema.network.properties, $.i18n("edt_conf_net_heading_title")));
- //flatbufserver
- $('#conf_cont').append(createRow('conf_cont_flatbuf'))
- $('#conf_cont_flatbuf').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fbs_heading_title"), 'editor_container_fbserver', 'btn_submit_fbserver', 'panel-system'));
- $('#conf_cont_flatbuf').append(createHelpTable(window.schema.flatbufServer.properties, $.i18n("edt_conf_fbs_heading_title"),"flatbufServerHelpPanelId"));
+ //jsonserver
+ $('#conf_cont').append(createRow('conf_cont_json'))
+ $('#conf_cont_json').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_js_heading_title"), 'editor_container_jsonserver', 'btn_submit_jsonserver', 'panel-system'));
+ $('#conf_cont_json').append(createHelpTable(window.schema.jsonServer.properties, $.i18n("edt_conf_js_heading_title")));
- //protoserver
- $('#conf_cont').append(createRow('conf_cont_proto'))
- $('#conf_cont_proto').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_pbs_heading_title"), 'editor_container_protoserver', 'btn_submit_protoserver', 'panel-system'));
- $('#conf_cont_proto').append(createHelpTable(window.schema.protoServer.properties, $.i18n("edt_conf_pbs_heading_title"),"protoServerHelpPanelId"));
+ //flatbufserver
+ $('#conf_cont').append(createRow('conf_cont_flatbuf'))
+ $('#conf_cont_flatbuf').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fbs_heading_title"), 'editor_container_fbserver', 'btn_submit_fbserver', 'panel-system'));
+ $('#conf_cont_flatbuf').append(createHelpTable(window.schema.flatbufServer.properties, $.i18n("edt_conf_fbs_heading_title"), "flatbufServerHelpPanelId"));
- //boblight
- $('#conf_cont').append(createRow('conf_cont_bobl'))
- $('#conf_cont_bobl').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_bobls_heading_title"), 'editor_container_boblightserver', 'btn_submit_boblightserver', 'panel-system'));
- $('#conf_cont_bobl').append(createHelpTable(window.schema.boblightServer.properties, $.i18n("edt_conf_bobls_heading_title"), "boblightServerHelpPanelId"));
+ //protoserver
+ $('#conf_cont').append(createRow('conf_cont_proto'))
+ $('#conf_cont_proto').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_pbs_heading_title"), 'editor_container_protoserver', 'btn_submit_protoserver', 'panel-system'));
+ $('#conf_cont_proto').append(createHelpTable(window.schema.protoServer.properties, $.i18n("edt_conf_pbs_heading_title"), "protoServerHelpPanelId"));
- //forwarder
- if(storedAccess != 'default')
- {
- $('#conf_cont').append(createRow('conf_cont_fw'))
- $('#conf_cont_fw').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fw_heading_title"), 'editor_container_forwarder', 'btn_submit_forwarder', 'panel-system'));
- $('#conf_cont_fw').append(createHelpTable(window.schema.forwarder.properties, $.i18n("edt_conf_fw_heading_title"),"forwarderHelpPanelId"));
- }
- }
- else
- {
- $('#conf_cont').addClass('row');
- $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_net_heading_title"), 'editor_container_net', 'btn_submit_net'));
- $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_js_heading_title"), 'editor_container_jsonserver', 'btn_submit_jsonserver'));
- $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fbs_heading_title"), 'editor_container_fbserver', 'btn_submit_fbserver'));
- $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_pbs_heading_title"), 'editor_container_protoserver', 'btn_submit_protoserver'));
- $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_bobls_heading_title"), 'editor_container_boblightserver', 'btn_submit_boblightserver'));
- $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fw_heading_title"), 'editor_container_forwarder', 'btn_submit_forwarder'));
+ //boblight
+ if (BOBLIGHT_ENABLED) {
+ $('#conf_cont').append(createRow('conf_cont_bobl'))
+ $('#conf_cont_bobl').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_bobls_heading_title"), 'editor_container_boblightserver', 'btn_submit_boblightserver', 'panel-system'));
+ $('#conf_cont_bobl').append(createHelpTable(window.schema.boblightServer.properties, $.i18n("edt_conf_bobls_heading_title"), "boblightServerHelpPanelId"));
+ }
- $("#conf_cont_tok").removeClass('row');
- }
+ //forwarder
+ if (storedAccess != 'default') {
+ $('#conf_cont').append(createRow('conf_cont_fw'))
+ $('#conf_cont_fw').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fw_heading_title"), 'editor_container_forwarder', 'btn_submit_forwarder', 'panel-system'));
+ $('#conf_cont_fw').append(createHelpTable(window.schema.forwarder.properties, $.i18n("edt_conf_fw_heading_title"), "forwarderHelpPanelId"));
+ }
+ }
+ else {
+ $('#conf_cont').addClass('row');
+ $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_net_heading_title"), 'editor_container_net', 'btn_submit_net'));
+ $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_js_heading_title"), 'editor_container_jsonserver', 'btn_submit_jsonserver'));
+ $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fbs_heading_title"), 'editor_container_fbserver', 'btn_submit_fbserver'));
+ $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_pbs_heading_title"), 'editor_container_protoserver', 'btn_submit_protoserver'));
+ $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_bobls_heading_title"), 'editor_container_boblightserver', 'btn_submit_boblightserver'));
+ $('#conf_cont').append(createOptPanel('fa-sitemap', $.i18n("edt_conf_fw_heading_title"), 'editor_container_forwarder', 'btn_submit_forwarder'));
- // net
- conf_editor_net = createJsonEditor('editor_container_net', {
- network : window.schema.network
- }, true, true);
+ $("#conf_cont_tok").removeClass('row');
+ }
- conf_editor_net.on('change',function() {
- conf_editor_net.validate().length || window.readOnlyMode ? $('#btn_submit_net').attr('disabled', true) : $('#btn_submit_net').attr('disabled', false);
- });
+ // net
+ conf_editor_net = createJsonEditor('editor_container_net', {
+ network: window.schema.network
+ }, true, true);
- $('#btn_submit_net').off().on('click',function() {
- requestWriteConfig(conf_editor_net.getValue());
- });
+ conf_editor_net.on('change', function () {
+ conf_editor_net.validate().length || window.readOnlyMode ? $('#btn_submit_net').attr('disabled', true) : $('#btn_submit_net').attr('disabled', false);
+ });
- //json
- conf_editor_json = createJsonEditor('editor_container_jsonserver', {
- jsonServer : window.schema.jsonServer
- }, true, true);
+ $('#btn_submit_net').off().on('click', function () {
+ requestWriteConfig(conf_editor_net.getValue());
+ });
- conf_editor_json.on('change',function() {
- conf_editor_json.validate().length || window.readOnlyMode ? $('#btn_submit_jsonserver').attr('disabled', true) : $('#btn_submit_jsonserver').attr('disabled', false);
- });
+ //json
+ conf_editor_json = createJsonEditor('editor_container_jsonserver', {
+ jsonServer: window.schema.jsonServer
+ }, true, true);
- $('#btn_submit_jsonserver').off().on('click',function() {
- requestWriteConfig(conf_editor_json.getValue());
- });
+ conf_editor_json.on('change', function () {
+ conf_editor_json.validate().length || window.readOnlyMode ? $('#btn_submit_jsonserver').attr('disabled', true) : $('#btn_submit_jsonserver').attr('disabled', false);
+ });
- //flatbuffer
- conf_editor_fbs = createJsonEditor('editor_container_fbserver', {
- flatbufServer : window.schema.flatbufServer
- }, true, true);
+ $('#btn_submit_jsonserver').off().on('click', function () {
+ requestWriteConfig(conf_editor_json.getValue());
+ });
+
+ //flatbuffer
+ conf_editor_fbs = createJsonEditor('editor_container_fbserver', {
+ flatbufServer: window.schema.flatbufServer
+ }, true, true);
conf_editor_fbs.on('change', function () {
var flatbufServerEnable = conf_editor_fbs.getEditor("root.flatbufServer.enable").getValue();
@@ -96,17 +97,17 @@ $(document).ready( function() {
showInputOptionsForKey(conf_editor_fbs, "flatbufServer", "enable", false);
$('#flatbufServerHelpPanelId').hide();
}
- conf_editor_fbs.validate().length || window.readOnlyMode ? $('#btn_submit_fbserver').attr('disabled', true) : $('#btn_submit_fbserver').attr('disabled', false);
- });
+ conf_editor_fbs.validate().length || window.readOnlyMode ? $('#btn_submit_fbserver').attr('disabled', true) : $('#btn_submit_fbserver').attr('disabled', false);
+ });
- $('#btn_submit_fbserver').off().on('click',function() {
- requestWriteConfig(conf_editor_fbs.getValue());
- });
+ $('#btn_submit_fbserver').off().on('click', function () {
+ requestWriteConfig(conf_editor_fbs.getValue());
+ });
- //protobuffer
- conf_editor_proto = createJsonEditor('editor_container_protoserver', {
- protoServer : window.schema.protoServer
- }, true, true);
+ //protobuffer
+ conf_editor_proto = createJsonEditor('editor_container_protoserver', {
+ protoServer: window.schema.protoServer
+ }, true, true);
conf_editor_proto.on('change', function () {
var protoServerEnable = conf_editor_proto.getEditor("root.protoServer.enable").getValue();
@@ -117,40 +118,41 @@ $(document).ready( function() {
showInputOptionsForKey(conf_editor_proto, "protoServer", "enable", false);
$('#protoServerHelpPanelId').hide();
}
- conf_editor_proto.validate().length || window.readOnlyMode ? $('#btn_submit_protoserver').attr('disabled', true) : $('#btn_submit_protoserver').attr('disabled', false);
- });
+ conf_editor_proto.validate().length || window.readOnlyMode ? $('#btn_submit_protoserver').attr('disabled', true) : $('#btn_submit_protoserver').attr('disabled', false);
+ });
- $('#btn_submit_protoserver').off().on('click',function() {
- requestWriteConfig(conf_editor_proto.getValue());
- });
+ $('#btn_submit_protoserver').off().on('click', function () {
+ requestWriteConfig(conf_editor_proto.getValue());
+ });
- //boblight
- conf_editor_bobl = createJsonEditor('editor_container_boblightserver', {
- boblightServer : window.schema.boblightServer
- }, true, true);
+ //boblight
+ if (BOBLIGHT_ENABLED) {
+ conf_editor_bobl = createJsonEditor('editor_container_boblightserver', {
+ boblightServer: window.schema.boblightServer
+ }, true, true);
- conf_editor_bobl.on('change', function () {
- var boblightServerEnable = conf_editor_bobl.getEditor("root.boblightServer.enable").getValue();
- if (boblightServerEnable) {
- showInputOptionsForKey(conf_editor_bobl, "boblightServer", "enable", true);
- $('#boblightServerHelpPanelId').show();
- } else {
- showInputOptionsForKey(conf_editor_bobl, "boblightServer", "enable", false);
- $('#boblightServerHelpPanelId').hide();
- }
- conf_editor_bobl.validate().length || window.readOnlyMode ? $('#btn_submit_boblightserver').attr('disabled', true) : $('#btn_submit_boblightserver').attr('disabled', false);
- });
+ conf_editor_bobl.on('change', function () {
+ var boblightServerEnable = conf_editor_bobl.getEditor("root.boblightServer.enable").getValue();
+ if (boblightServerEnable) {
+ showInputOptionsForKey(conf_editor_bobl, "boblightServer", "enable", true);
+ $('#boblightServerHelpPanelId').show();
+ } else {
+ showInputOptionsForKey(conf_editor_bobl, "boblightServer", "enable", false);
+ $('#boblightServerHelpPanelId').hide();
+ }
+ conf_editor_bobl.validate().length || window.readOnlyMode ? $('#btn_submit_boblightserver').attr('disabled', true) : $('#btn_submit_boblightserver').attr('disabled', false);
+ });
- $('#btn_submit_boblightserver').off().on('click', function () {
- requestWriteConfig(conf_editor_bobl.getValue());
- });
+ $('#btn_submit_boblightserver').off().on('click', function () {
+ requestWriteConfig(conf_editor_bobl.getValue());
+ });
+ }
- if(storedAccess != 'default')
- {
- //forwarder
- conf_editor_forw = createJsonEditor('editor_container_forwarder', {
- forwarder : window.schema.forwarder
- }, true, true);
+ if (storedAccess != 'default') {
+ //forwarder
+ conf_editor_forw = createJsonEditor('editor_container_forwarder', {
+ forwarder: window.schema.forwarder
+ }, true, true);
conf_editor_forw.on('change', function () {
var forwarderEnable = conf_editor_forw.getEditor("root.forwarder.enable").getValue();
@@ -161,90 +163,88 @@ $(document).ready( function() {
showInputOptionsForKey(conf_editor_forw, "forwarder", "enable", false);
$('#forwarderHelpPanelId').hide();
}
- conf_editor_forw.validate().length || window.readOnlyMode ? $('#btn_submit_forwarder').attr('disabled', true) : $('#btn_submit_forwarder').attr('disabled', false);
- });
+ conf_editor_forw.validate().length || window.readOnlyMode ? $('#btn_submit_forwarder').attr('disabled', true) : $('#btn_submit_forwarder').attr('disabled', false);
+ });
- $('#btn_submit_forwarder').off().on('click',function() {
- requestWriteConfig(conf_editor_forw.getValue());
- });
- }
+ $('#btn_submit_forwarder').off().on('click', function () {
+ requestWriteConfig(conf_editor_forw.getValue());
+ });
+ }
- //create introduction
- if(window.showOptHelp)
- {
- createHint("intro", $.i18n('conf_network_net_intro'), "editor_container_net");
- createHint("intro", $.i18n('conf_network_json_intro'), "editor_container_jsonserver");
- createHint("intro", $.i18n('conf_network_fbs_intro'), "editor_container_fbserver");
- createHint("intro", $.i18n('conf_network_proto_intro'), "editor_container_protoserver");
- createHint("intro", $.i18n('conf_network_bobl_intro'), "editor_container_boblightserver");
- createHint("intro", $.i18n('conf_network_forw_intro'), "editor_container_forwarder");
- createHint("intro", $.i18n('conf_network_tok_intro'), "tok_desc_cont");
- }
+ //create introduction
+ if (window.showOptHelp) {
+ createHint("intro", $.i18n('conf_network_net_intro'), "editor_container_net");
+ createHint("intro", $.i18n('conf_network_json_intro'), "editor_container_jsonserver");
+ createHint("intro", $.i18n('conf_network_fbs_intro'), "editor_container_fbserver");
+ createHint("intro", $.i18n('conf_network_proto_intro'), "editor_container_protoserver");
+ if (BOBLIGHT_ENABLED) {
+ createHint("intro", $.i18n('conf_network_bobl_intro'), "editor_container_boblightserver");
+ }
+ createHint("intro", $.i18n('conf_network_forw_intro'), "editor_container_forwarder");
+ createHint("intro", $.i18n('conf_network_tok_intro'), "tok_desc_cont");
+ }
- // Token handling
- function buildTokenList()
- {
- $('.tktbody').html("");
- for(var key in tokenList)
- {
- var lastUse = (tokenList[key].last_use) ? tokenList[key].last_use : "-";
- var btn = '';
- $('.tktbody').append(createTableRow([tokenList[key].comment, lastUse, btn], false, true));
- $('#tok'+tokenList[key].id).off().on('click', handleDeleteToken);
- }
- }
+ // Token handling
+ function buildTokenList() {
+ $('.tktbody').html("");
+ for (var key in tokenList) {
+ var lastUse = (tokenList[key].last_use) ? tokenList[key].last_use : "-";
+ var btn = '';
+ $('.tktbody').append(createTableRow([tokenList[key].comment, lastUse, btn], false, true));
+ $('#tok' + tokenList[key].id).off().on('click', handleDeleteToken);
+ }
+ }
- createTable('tkthead', 'tktbody', 'tktable');
- $('.tkthead').html(createTableRow([$.i18n('conf_network_tok_cidhead'), $.i18n('conf_network_tok_lastuse'), $.i18n('general_btn_delete')], true, true));
- buildTokenList();
+ createTable('tkthead', 'tktbody', 'tktable');
+ $('.tkthead').html(createTableRow([$.i18n('conf_network_tok_cidhead'), $.i18n('conf_network_tok_lastuse'), $.i18n('general_btn_delete')], true, true));
+ buildTokenList();
- function handleDeleteToken(e)
- {
- var key = e.currentTarget.id.replace("tok","");
- requestTokenDelete(key);
- $('#tok'+key).parent().parent().remove();
- // rm deleted token id
- tokenList = tokenList.filter(function( obj ) {
- return obj.id !== key;
- });
- }
+ function handleDeleteToken(e) {
+ var key = e.currentTarget.id.replace("tok", "");
+ requestTokenDelete(key);
+ $('#tok' + key).parent().parent().remove();
+ // rm deleted token id
+ tokenList = tokenList.filter(function (obj) {
+ return obj.id !== key;
+ });
+ }
- $('#btn_create_tok').off().on('click',function() {
+ $('#btn_create_tok').off().on('click', function () {
requestToken(encodeHTML($('#tok_comment').val()))
- $('#tok_comment').val("")
- $('#btn_create_tok').attr('disabled', true)
- });
- $('#tok_comment').off().on('input',function(e) {
- (e.currentTarget.value.length >= 10) ? $('#btn_create_tok').attr('disabled', false) : $('#btn_create_tok').attr('disabled', true);
- if(10-e.currentTarget.value.length >= 1 && 10-e.currentTarget.value.length <= 9)
- $('#tok_chars_needed').html(10-e.currentTarget.value.length + " " + $.i18n('general_chars_needed'))
- else
- $('#tok_chars_needed').html("
")
- });
- $(window.hyperion).off("cmd-authorize-createToken").on("cmd-authorize-createToken", function(event) {
- var val = event.response.info;
- showInfoDialog("newToken",$.i18n('conf_network_tok_diaTitle'),$.i18n('conf_network_tok_diaMsg')+'