add generate context menu get server status

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-04-05 08:54:16 -04:00
parent 090801afb4
commit 538b81021c
6 changed files with 44 additions and 12 deletions
+7
View File
@@ -17,6 +17,13 @@ def apply_field(field):
return fun
def apply_task_arg(field):
def fun(p, x, xs):
shared.log.debug(f'XYZ grid apply task-arg: {field}={x}')
p.task_args[field] = x
return fun
def apply_task_args(p, x, xs):
for section in x.split(';'):
k, v = section.split('=')