cmdbox 0.6.2.2__py3-none-any.whl → 0.6.2.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cmdbox might be problematic. Click here for more details.
- cmdbox/app/auth/signin.py +6 -5
- cmdbox/app/common.py +21 -15
- cmdbox/app/feature.py +5 -1
- cmdbox/app/features/cli/agent_base.py +1 -1
- cmdbox/app/features/cli/cmdbox_audit_search.py +23 -1
- cmdbox/app/features/cli/cmdbox_audit_write.py +260 -260
- cmdbox/app/features/cli/cmdbox_cmd_list.py +2 -2
- cmdbox/app/features/cli/cmdbox_cmd_load.py +2 -2
- cmdbox/app/features/cli/cmdbox_edge_config.py +2 -2
- cmdbox/app/features/cli/cmdbox_edge_start.py +1 -1
- cmdbox/app/features/cli/cmdbox_mcp_client.py +174 -0
- cmdbox/app/features/cli/cmdbox_mcp_proxy.py +2 -2
- cmdbox/app/features/cli/cmdbox_server_start.py +1 -1
- cmdbox/app/features/cli/cmdbox_web_apikey_add.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_apikey_del.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_gencert.py +3 -3
- cmdbox/app/features/cli/cmdbox_web_group_add.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_group_del.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_group_edit.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_group_list.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_start.py +12 -12
- cmdbox/app/features/cli/cmdbox_web_stop.py +1 -1
- cmdbox/app/features/cli/cmdbox_web_user_add.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_user_del.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_user_edit.py +2 -2
- cmdbox/app/features/cli/cmdbox_web_user_list.py +2 -2
- cmdbox/app/mcp.py +82 -86
- cmdbox/app/options.py +2 -3
- cmdbox/app/web.py +15 -0
- cmdbox/extensions/features.yml +2 -14
- cmdbox/extensions/sample_project/sample/extensions/user_list.yml +25 -1
- cmdbox/version.py +4 -3
- cmdbox/web/assets/cmdbox/agent.js +1 -0
- cmdbox/web/assets/cmdbox/common.js +2 -0
- cmdbox/web/assets/cmdbox/filer_modal.js +4 -2
- {cmdbox-0.6.2.2.dist-info → cmdbox-0.6.2.4.dist-info}/METADATA +1 -1
- {cmdbox-0.6.2.2.dist-info → cmdbox-0.6.2.4.dist-info}/RECORD +41 -40
- {cmdbox-0.6.2.2.dist-info → cmdbox-0.6.2.4.dist-info}/LICENSE +0 -0
- {cmdbox-0.6.2.2.dist-info → cmdbox-0.6.2.4.dist-info}/WHEEL +0 -0
- {cmdbox-0.6.2.2.dist-info → cmdbox-0.6.2.4.dist-info}/entry_points.txt +0 -0
- {cmdbox-0.6.2.2.dist-info → cmdbox-0.6.2.4.dist-info}/top_level.txt +0 -0
cmdbox/app/mcp.py
CHANGED
|
@@ -35,11 +35,12 @@ class Mcp:
|
|
|
35
35
|
self.ver = ver
|
|
36
36
|
self.signin = sign
|
|
37
37
|
|
|
38
|
-
def create_mcpserver(self, args:argparse.Namespace, tools:List[Any], web:Any) -> Any:
|
|
38
|
+
def create_mcpserver(self, logger:logging.Logger, args:argparse.Namespace, tools:List[Any], web:Any) -> Any:
|
|
39
39
|
"""
|
|
40
40
|
mcpserverを作成します
|
|
41
41
|
|
|
42
42
|
Args:
|
|
43
|
+
logger (logging.Logger): ロガー
|
|
43
44
|
args (argparse.Namespace): 引数
|
|
44
45
|
tools (List[Any]): ツールのリスト
|
|
45
46
|
web (Any): Web関連のオブジェクト
|
|
@@ -60,13 +61,85 @@ class Mcp:
|
|
|
60
61
|
issuer=issuer,
|
|
61
62
|
audience=audience
|
|
62
63
|
)
|
|
63
|
-
mcp = FastMCP(name=self.ver.__appid__,
|
|
64
|
+
mcp = FastMCP(name=self.ver.__appid__, auth=auth)
|
|
64
65
|
else:
|
|
65
66
|
self.logger.info(f"Using BearerAuthProvider without public key, issuer, or audience.")
|
|
66
|
-
mcp = FastMCP(name=self.ver.__appid__
|
|
67
|
+
mcp = FastMCP(name=self.ver.__appid__)
|
|
67
68
|
mcp.add_middleware(self.create_mw_logging(self.logger, args))
|
|
68
69
|
mcp.add_middleware(self.create_mw_reqscope(self.logger, args, web))
|
|
69
|
-
|
|
70
|
+
|
|
71
|
+
options = Options.getInstance()
|
|
72
|
+
cmd_list:feature.Feature = options.get_cmd_attr('cmd', 'list', "feature")
|
|
73
|
+
language, _ = locale.getlocale()
|
|
74
|
+
is_japan = language.find('Japan') >= 0 or language.find('ja_JP') >= 0
|
|
75
|
+
_self_mcp = self
|
|
76
|
+
from cmdbox.app.web import Web
|
|
77
|
+
from fastmcp.tools import tool, tool_manager
|
|
78
|
+
class CustomToolManager(tool_manager.ToolManager):
|
|
79
|
+
async def _load_tools(self, *, via_server: bool = False) -> dict[str, tool.Tool]:
|
|
80
|
+
if hasattr(self, '_tools') and self._tools:
|
|
81
|
+
return self._tools
|
|
82
|
+
ret = await super()._load_tools(via_server=via_server)
|
|
83
|
+
#scope = signin.get_request_scope()
|
|
84
|
+
#web:Web = scope["web"]
|
|
85
|
+
signin_file = web.signin_file
|
|
86
|
+
#signin_data = signin.Signin.load_signin_file(signin_file)
|
|
87
|
+
#if signin.Signin._check_signin(scope["req"], scope["res"], signin_data, logger) is not None:
|
|
88
|
+
# logger.warning("Unable to execute command because authentication information cannot be obtained")
|
|
89
|
+
# raise Exception("Unable to execute command because authentication information cannot be obtained")
|
|
90
|
+
#groups = scope["req"].session["signin"]["groups"]
|
|
91
|
+
ret_tools = dict()
|
|
92
|
+
# システムコマンドリストのフィルタリング
|
|
93
|
+
for func in tools:
|
|
94
|
+
mode = [t.replace('mode=', '') for t in func.tags if t.startswith('mode=')]
|
|
95
|
+
mode = mode[0] if mode else None
|
|
96
|
+
cmd = [t.replace('cmd=', '') for t in func.tags if t.startswith('cmd=')]
|
|
97
|
+
cmd = cmd[0] if cmd else None
|
|
98
|
+
if mode is None or cmd is None:
|
|
99
|
+
logger.warning(f"Tool {func.name} does not have mode or cmd tag, skipping.")
|
|
100
|
+
continue
|
|
101
|
+
#if not signin.Signin._check_cmd(signin_data, groups, mode, cmd, logger):
|
|
102
|
+
# logger.warning(f"User does not have permission to use tool {func.name} (mode={mode}, cmd={cmd}), skipping.")
|
|
103
|
+
# continue
|
|
104
|
+
ret_tools[func.name] = func
|
|
105
|
+
# ユーザーコマンドリストの取得(すべてのコマンドを取得するためにgroupsをadminに設定)
|
|
106
|
+
args = argparse.Namespace(data=web.data, signin_file=signin_file, groups=['admin'], kwd=None,
|
|
107
|
+
format=False, output_json=None, output_json_append=False,)
|
|
108
|
+
st, ret, _ = cmd_list.apprun(logger, args, time.perf_counter(), [])
|
|
109
|
+
if ret is None or 'success' not in ret or not ret['success']:
|
|
110
|
+
return ret_tools
|
|
111
|
+
for opt in ret['success']:
|
|
112
|
+
func_name = opt['title']
|
|
113
|
+
mode, cmd, description = opt['mode'], opt['cmd'], opt['description'] if 'description' in opt and opt['description'] else ''
|
|
114
|
+
choices = options.get_cmd_choices(mode, cmd, False)
|
|
115
|
+
description += '\n' + options.get_cmd_attr(mode, cmd, 'description_ja' if is_japan else 'description_en')
|
|
116
|
+
# 関数の定義を生成
|
|
117
|
+
func_txt = _self_mcp._create_func_txt(func_name, mode, cmd, is_japan, options, title=opt['title'])
|
|
118
|
+
if logger.level == logging.DEBUG:
|
|
119
|
+
logger.debug(f"generating agent tool: {func_name}")
|
|
120
|
+
func_ctx = []
|
|
121
|
+
# 関数を実行してコンテキストに追加
|
|
122
|
+
exec(func_txt,
|
|
123
|
+
dict(time=time,List=List, Path=Path, argparse=argparse, common=common, options=options, logging=logging, signin=signin,),
|
|
124
|
+
dict(func_ctx=func_ctx))
|
|
125
|
+
# 関数のスキーマを生成
|
|
126
|
+
input_schema = dict(
|
|
127
|
+
type="object",
|
|
128
|
+
properties={o['opt']: _self_mcp._to_schema(o, is_japan) for o in choices},
|
|
129
|
+
required=[],
|
|
130
|
+
)
|
|
131
|
+
output_schema = dict(type="object", properties=dict())
|
|
132
|
+
func_tool = tool.FunctionTool(fn=func_ctx[0], name=func_name, title=func_name.title(), description=description,
|
|
133
|
+
tags=[f"mode={mode}", f"cmd={cmd}"],
|
|
134
|
+
parameters=input_schema, output_schema=output_schema,)
|
|
135
|
+
# ツールリストに追加
|
|
136
|
+
ret_tools[func_name] = func_tool
|
|
137
|
+
self._tools = ret_tools
|
|
138
|
+
return ret_tools
|
|
139
|
+
mcp._tool_manager = CustomToolManager(
|
|
140
|
+
duplicate_behavior=mcp._tool_manager.duplicate_behavior,
|
|
141
|
+
mask_error_details=mcp._tool_manager.mask_error_details
|
|
142
|
+
)
|
|
70
143
|
return mcp
|
|
71
144
|
|
|
72
145
|
def create_session_service(self, args:argparse.Namespace) -> Any:
|
|
@@ -335,6 +408,8 @@ class Mcp:
|
|
|
335
408
|
func_txt += f' opt_path = opt["data"] / ".cmds" / f"cmd-{title}.json"\n'
|
|
336
409
|
func_txt += f' opt.update(common.loadopt(opt_path))\n'
|
|
337
410
|
func_txt += f' scope = signin.get_request_scope()\n'
|
|
411
|
+
func_txt += f' if logger.level == logging.DEBUG:\n'
|
|
412
|
+
func_txt += ' logger.debug(f"MCP Call scope={scope}")\n'
|
|
338
413
|
func_txt += f' opt["mode"] = "{mode}"\n'
|
|
339
414
|
func_txt += f' opt["cmd"] = "{cmd}"\n'
|
|
340
415
|
func_txt += f' opt["format"] = False\n'
|
|
@@ -356,6 +431,8 @@ class Mcp:
|
|
|
356
431
|
func_txt += f' feat = options.get_cmd_attr("{mode}", "{cmd}", "feature")\n'
|
|
357
432
|
func_txt += f' args.groups = groups\n'
|
|
358
433
|
func_txt += f' try:\n'
|
|
434
|
+
func_txt += f' if logger.level == logging.DEBUG:\n'
|
|
435
|
+
func_txt += ' logger.debug(f"MCP Call {feat}#apprun, args={args}")\n'
|
|
359
436
|
func_txt += f' st, ret, _ = feat.apprun(logger, args, time.perf_counter(), [])\n'
|
|
360
437
|
func_txt += f' return ret\n'
|
|
361
438
|
func_txt += f' except Exception as e:\n'
|
|
@@ -411,87 +488,6 @@ class Mcp:
|
|
|
411
488
|
func_tools.append(func_tool)
|
|
412
489
|
return func_tools
|
|
413
490
|
|
|
414
|
-
def create_mw_toollist(self, logger:logging.Logger, args:argparse.Namespace) -> Any:
|
|
415
|
-
"""
|
|
416
|
-
ツールリストを作成するミドルウェアを作成します
|
|
417
|
-
|
|
418
|
-
Args:
|
|
419
|
-
logger (logging.Logger): ロガー
|
|
420
|
-
args (argparse.Namespace): 引数
|
|
421
|
-
|
|
422
|
-
Returns:
|
|
423
|
-
Any: ミドルウェア
|
|
424
|
-
"""
|
|
425
|
-
from cmdbox.app.web import Web
|
|
426
|
-
from fastmcp.server.middleware import Middleware, MiddlewareContext, ListToolsResult
|
|
427
|
-
from fastmcp.tools import FunctionTool
|
|
428
|
-
func_tools:List[FunctionTool] = self.create_tools(logger, args)
|
|
429
|
-
options = Options.getInstance()
|
|
430
|
-
cmd_list:feature.Feature = options.get_cmd_attr('cmd', 'list', "feature")
|
|
431
|
-
language, _ = locale.getlocale()
|
|
432
|
-
is_japan = language.find('Japan') >= 0 or language.find('ja_JP') >= 0
|
|
433
|
-
mcp = self
|
|
434
|
-
class CommandListMiddleware(Middleware):
|
|
435
|
-
async def on_list_tools(self, context: MiddlewareContext, call_next):
|
|
436
|
-
# 認証情報の取得
|
|
437
|
-
scope = signin.get_request_scope()
|
|
438
|
-
web:Web = scope["web"]
|
|
439
|
-
signin_file = web.signin_file
|
|
440
|
-
signin_data = signin.Signin.load_signin_file(signin_file)
|
|
441
|
-
if signin.Signin._check_signin(scope["req"], scope["res"], signin_data, logger) is not None:
|
|
442
|
-
logger.warning("Unable to execute command because authentication information cannot be obtained")
|
|
443
|
-
return dict(warn="Unable to execute command because authentication information cannot be obtained")
|
|
444
|
-
groups = scope["req"].session["signin"]["groups"]
|
|
445
|
-
ret_tools = []
|
|
446
|
-
# システムコマンドリストのフィルタリング
|
|
447
|
-
for func in func_tools:
|
|
448
|
-
mode = [t.replace('mode=', '') for t in func.tags if t.startswith('mode=')]
|
|
449
|
-
mode = mode[0] if mode else None
|
|
450
|
-
cmd = [t.replace('cmd=', '') for t in func.tags if t.startswith('cmd=')]
|
|
451
|
-
cmd = cmd[0] if cmd else None
|
|
452
|
-
if mode is None or cmd is None:
|
|
453
|
-
logger.warning(f"Tool {func.name} does not have mode or cmd tag, skipping.")
|
|
454
|
-
continue
|
|
455
|
-
if not signin.Signin._check_cmd(signin_data, groups, mode, cmd, logger):
|
|
456
|
-
logger.warning(f"User does not have permission to use tool {func.name} (mode={mode}, cmd={cmd}), skipping.")
|
|
457
|
-
continue
|
|
458
|
-
ret_tools.append(func)
|
|
459
|
-
# ユーザーコマンドリストの取得
|
|
460
|
-
args = argparse.Namespace(data=web.data, signin_file=signin_file, groups=groups, kwd=None,
|
|
461
|
-
format=False, output_json=None, output_json_append=False,)
|
|
462
|
-
st, ret, _ = cmd_list.apprun(logger, args, time.perf_counter(), [])
|
|
463
|
-
if ret is None or 'success' not in ret or not ret['success']:
|
|
464
|
-
return ret_tools
|
|
465
|
-
for opt in ret['success']:
|
|
466
|
-
func_name = f"user_{opt['title']}"
|
|
467
|
-
mode, cmd, description = opt['mode'], opt['cmd'], opt['description'] if 'description' in opt and opt['description'] else ''
|
|
468
|
-
choices = options.get_cmd_choices(mode, cmd, False)
|
|
469
|
-
description += '\n' + options.get_cmd_attr(mode, cmd, 'description_ja' if is_japan else 'description_en')
|
|
470
|
-
# 関数の定義を生成
|
|
471
|
-
func_txt = mcp._create_func_txt(func_name, mode, cmd, is_japan, options, title=opt['title'])
|
|
472
|
-
if logger.level == logging.DEBUG:
|
|
473
|
-
logger.debug(f"generating agent tool: {func_name}")
|
|
474
|
-
func_ctx = []
|
|
475
|
-
# 関数を実行してコンテキストに追加
|
|
476
|
-
exec(func_txt,
|
|
477
|
-
dict(time=time,List=List, Path=Path, argparse=argparse, common=common, options=options, logging=logging, signin=signin,),
|
|
478
|
-
dict(func_ctx=func_ctx))
|
|
479
|
-
# 関数のスキーマを生成
|
|
480
|
-
input_schema = dict(
|
|
481
|
-
type="object",
|
|
482
|
-
properties={o['opt']: mcp._to_schema(o, is_japan) for o in choices},
|
|
483
|
-
required=[],
|
|
484
|
-
)
|
|
485
|
-
output_schema = dict(type="object", properties=dict())
|
|
486
|
-
func_tool = FunctionTool(fn=func_ctx[0], name=func_name, title=func_name.title(), description=description,
|
|
487
|
-
tags=[f"mode={mode}", f"cmd={cmd}"],
|
|
488
|
-
parameters=input_schema, output_schema=output_schema,)
|
|
489
|
-
# ツールリストに追加
|
|
490
|
-
ret_tools.append(func_tool)
|
|
491
|
-
|
|
492
|
-
return ret_tools
|
|
493
|
-
return CommandListMiddleware()
|
|
494
|
-
|
|
495
491
|
def create_mw_logging(self, logger:logging.Logger, args:argparse.Namespace) -> Any:
|
|
496
492
|
"""
|
|
497
493
|
ログ出力用のミドルウェアを作成します
|
|
@@ -563,7 +559,7 @@ class Mcp:
|
|
|
563
559
|
session_service:BaseSessionService = self.create_session_service(args)
|
|
564
560
|
from fastmcp.tools import FunctionTool
|
|
565
561
|
tools:List[FunctionTool] = self.create_tools(logger, args)
|
|
566
|
-
mcp:FastMCP = self.create_mcpserver(args, tools, web)
|
|
562
|
+
mcp:FastMCP = self.create_mcpserver(logger, args, tools, web)
|
|
567
563
|
root_agent = self.create_agent(logger, args, [t.fn for t in tools])
|
|
568
564
|
runner = self.create_runner(logger, args, session_service, root_agent)
|
|
569
565
|
if logger.level == logging.DEBUG:
|
cmdbox/app/options.py
CHANGED
|
@@ -843,7 +843,6 @@ class Options:
|
|
|
843
843
|
elif isinstance(arg, feature.Feature):
|
|
844
844
|
func_feature = arg
|
|
845
845
|
opt['clmsg_src'] = func_feature.__class__.__name__
|
|
846
|
-
audited_by = arg.audited_by()
|
|
847
846
|
elif isinstance(arg, Request) or isinstance(arg, WebSocket):
|
|
848
847
|
if 'signin' in arg.session and arg.session['signin'] is not None and 'name' in arg.session['signin']:
|
|
849
848
|
opt['clmsg_user'] = arg.session['signin']['name']
|
|
@@ -858,6 +857,6 @@ class Options:
|
|
|
858
857
|
opt['clmsg_src'] = src
|
|
859
858
|
if title is not None and title != "":
|
|
860
859
|
opt['clmsg_title'] = title
|
|
861
|
-
|
|
862
|
-
|
|
860
|
+
audit_write_args = argparse.Namespace(**{k:common.chopdq(v) for k,v in opt.items()})
|
|
861
|
+
if func_feature is None or func_feature is not None and func_feature.audited_by(logger, audit_write_args):
|
|
863
862
|
self.audit_write.apprun(logger, audit_write_args, tm=0.0, pf=[])
|
cmdbox/app/web.py
CHANGED
|
@@ -27,6 +27,21 @@ import webbrowser
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
class Web:
|
|
30
|
+
@classmethod
|
|
31
|
+
def getInstance(cls, *args, **kwargs) -> 'Web':
|
|
32
|
+
"""
|
|
33
|
+
Webクラスのインスタンスを取得する
|
|
34
|
+
Args:
|
|
35
|
+
*args: 可変長引数
|
|
36
|
+
**kwargs: キーワード引数
|
|
37
|
+
|
|
38
|
+
Returns:
|
|
39
|
+
Web: Webクラスのインスタンス
|
|
40
|
+
"""
|
|
41
|
+
if not hasattr(cls, '_instance'):
|
|
42
|
+
cls._instance = cls(*args, **kwargs)
|
|
43
|
+
return cls._instance
|
|
44
|
+
|
|
30
45
|
def __init__(self, logger:logging.Logger, data:Path, appcls=None, ver=None,
|
|
31
46
|
redis_host:str="localhost", redis_port:int=6379, redis_password:str=None, svname:str='server',
|
|
32
47
|
client_only:bool=False, doc_root:Path=None, gui_html:str=None, filer_html:str=None, result_html:str=None, users_html:str=None,
|
cmdbox/extensions/features.yml
CHANGED
|
@@ -40,21 +40,9 @@ aliases: # Specify the alias for the specified co
|
|
|
40
40
|
agentrule: # Specifies a list of rules that determine which commands the agent can execute.
|
|
41
41
|
policy: deny # Specify the default policy for the rule. The value can be allow or deny.
|
|
42
42
|
rules: # Specify the rules for the commands that the agent can execute according to the group to which the user belongs.
|
|
43
|
-
- mode:
|
|
44
|
-
cmds: [
|
|
43
|
+
- mode: cmd # Specify the "mode" as the condition for applying the rule.
|
|
44
|
+
cmds: [list, load] # Specify the "cmd" to which the rule applies. Multiple items can be specified in a list.
|
|
45
45
|
rule: allow # Specifies whether the specified command is allowed or not. Values are allow or deny.
|
|
46
|
-
- mode: client
|
|
47
|
-
cmds: [file_copy, file_download, file_list, file_mkdir, file_move, file_remove, file_rmdir, file_upload, server_info]
|
|
48
|
-
rule: allow
|
|
49
|
-
- mode: cmd
|
|
50
|
-
cmds: [list, load]
|
|
51
|
-
rule: allow
|
|
52
|
-
- mode: server
|
|
53
|
-
cmds: [list]
|
|
54
|
-
rule: allow
|
|
55
|
-
- mode: web
|
|
56
|
-
cmds: [gencert, genpass, group_list, user_list]
|
|
57
|
-
rule: allow
|
|
58
46
|
audit:
|
|
59
47
|
enabled: true # Specify whether to enable the audit function.
|
|
60
48
|
write:
|
|
@@ -78,7 +78,7 @@ pathrule: # List of RESTAPI rules, rules that determine whe
|
|
|
78
78
|
- groups: [user]
|
|
79
79
|
paths: [/signin, /assets, /bbforce_cmd, /copyright, /dosignin, /dosignout, /password/change,
|
|
80
80
|
/gui/user_data/load, /gui/user_data/save, /gui/user_data/delete,
|
|
81
|
-
/agent, /
|
|
81
|
+
/agent, /mcpsv,
|
|
82
82
|
/exec_cmd, /exec_pipe, /filer, /result, /gui, /get_server_opt, /usesignout, /versions_cmdbox, /versions_used]
|
|
83
83
|
rule: allow
|
|
84
84
|
- groups: [readonly]
|
|
@@ -106,6 +106,30 @@ password: # Password settings.
|
|
|
106
106
|
enabled: true # Specify whether or not to enable account lockout.
|
|
107
107
|
threshold: 5 # Specify the number of failed login attempts before the account is locked.
|
|
108
108
|
reset: 30 # Specify the number of minutes after which the failed login count will be reset.
|
|
109
|
+
apikey:
|
|
110
|
+
gen_cert: # Specify whether to generate a certificate for API key.
|
|
111
|
+
enabled: true # Specify whether to enable certificate generation for API key.
|
|
112
|
+
privatekey: idp_private.pem # Specify the destination file for the generated private key.
|
|
113
|
+
certificate: idp_cert.pem # Specify the destination file for the generated certificate.
|
|
114
|
+
publickey: idp_public.pem # Specify the destination file for the generated public key.
|
|
115
|
+
gen_jwt: # Specify whether to generate JWT for API key.
|
|
116
|
+
enabled: true # Specify whether to enable JWT generation for API key.
|
|
117
|
+
privatekey: idp_private.pem # Specify the private key file for JWT generation.
|
|
118
|
+
privatekey_passphrase: # Specify the passphrase for the private key file.
|
|
119
|
+
# If the private key is encrypted, specify the passphrase here.
|
|
120
|
+
algorithm: RS256 # Specify the algorithm used to generate the JWT. The value can be RS256, PS256, or ES256.
|
|
121
|
+
claims: # Specify the claims to be included in the JWT.
|
|
122
|
+
iss: identity_provider # Specify the issuer of the JWT. This is usually the name of the identity provider.
|
|
123
|
+
sub: app_user # Specify the subject of the JWT. This is usually the name of the application.
|
|
124
|
+
aud: app_organization # Specify the audience of the JWT. This is usually the name of the organization that will use the application.
|
|
125
|
+
exp: 31536000 # Specify the expiration time of the JWT in seconds. The default is 31536000 seconds (1 year).
|
|
126
|
+
verify_jwt: # Specify whether to verify JWT for API key.
|
|
127
|
+
enabled: true # Specify whether to enable JWT verification for API key.
|
|
128
|
+
certificate: idp_cert.pem # Specify the certificate file for JWT verification.
|
|
129
|
+
publickey: idp_public.pem # Specify the public key file for JWT verification. Not required if certificate exists.
|
|
130
|
+
issuer: identity_provider # Specify the issuer of the JWT. This is usually the name of the identity provider. (If not specified, no verification)
|
|
131
|
+
audience: app_organization # Specify the audience of the JWT. This is usually the name of the organization that will use the application. (If not specified, no verification)
|
|
132
|
+
algorithm: RS256 # Specify the algorithm used to verify the JWT. The value can be RS256, PS256, or ES256.
|
|
109
133
|
oauth2: # OAuth2 settings.
|
|
110
134
|
providers: # This is a per-provider setting for OAuth2.
|
|
111
135
|
google: # Google's OAuth2 configuration.
|
cmdbox/version.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import datetime
|
|
2
2
|
|
|
3
|
-
dt_now = datetime.datetime(2025, 7,
|
|
3
|
+
dt_now = datetime.datetime(2025, 7, 16)
|
|
4
|
+
days_ago = (datetime.datetime.now() - dt_now).days
|
|
4
5
|
__appid__ = 'cmdbox'
|
|
5
6
|
__title__ = 'cmdbox (Command Development Application)'
|
|
6
|
-
__version__ = '0.6.2.
|
|
7
|
+
__version__ = '0.6.2.4'
|
|
7
8
|
__copyright__ = f'Copyright © 2023-{dt_now.strftime("%Y")} hamacom2004jp'
|
|
8
9
|
__pypiurl__ = 'https://pypi.org/project/cmdbox/'
|
|
9
10
|
__srcurl__ = 'https://github.com/hamacom2004jp/cmdbox'
|
|
@@ -18,7 +19,7 @@ __logo__ = '''
|
|
|
18
19
|
╚═════╝╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝'''
|
|
19
20
|
__description__ = f'{__title__} {__version__}\n\n' + \
|
|
20
21
|
f'{__copyright__}\n' + \
|
|
21
|
-
f'Build Date: {dt_now.strftime("%Y-%m-%d")}\n' + \
|
|
22
|
+
(f'Build Date: {dt_now.strftime("%Y-%m-%d")}\n' if days_ago < 60 else '') + \
|
|
22
23
|
f'Web Site: PyPi <{__pypiurl__}>\n' + \
|
|
23
24
|
f'Web Site: SorceCode <{__srcurl__}>\n' + \
|
|
24
25
|
f'Web Site: Document <{__docurl__}>\n' + \
|
|
@@ -253,6 +253,7 @@ agent.create_history = (histories, session_id, msg) => {
|
|
|
253
253
|
e.preventDefault();
|
|
254
254
|
e.stopPropagation();
|
|
255
255
|
agent.delete_session(session_id).then((res) => {
|
|
256
|
+
const messages = $('#messages');
|
|
256
257
|
if (res['success']) {
|
|
257
258
|
history.remove();
|
|
258
259
|
const sid = messages.attr('data-session_id');
|
|
@@ -238,6 +238,7 @@ cmdbox.editapikey = async () => {
|
|
|
238
238
|
}
|
|
239
239
|
cmdbox.message(await res.json());
|
|
240
240
|
editapikey_modal.modal('hide');
|
|
241
|
+
cmdbox.editapikey();
|
|
241
242
|
});
|
|
242
243
|
const delapikey_btn = $(`<button type="button" class="btn btn-warning">Del apikey</button>`).appendTo(footer);
|
|
243
244
|
delapikey_btn.off('click').on('click', async (event) => {
|
|
@@ -254,6 +255,7 @@ cmdbox.editapikey = async () => {
|
|
|
254
255
|
}
|
|
255
256
|
cmdbox.message(await res.json());
|
|
256
257
|
editapikey_modal.modal('hide');
|
|
258
|
+
cmdbox.editapikey();
|
|
257
259
|
});
|
|
258
260
|
const close_btn = $('<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>').appendTo(footer);
|
|
259
261
|
editapikey_modal.appendTo('body');
|
|
@@ -143,11 +143,13 @@ fmodal.list_tree_server = async (current_path) => {
|
|
|
143
143
|
opt['capture_stdout'] = true;
|
|
144
144
|
opt['svpath'] = current_path;
|
|
145
145
|
const res = await cmdbox.sv_exec_cmd(opt);
|
|
146
|
-
|
|
146
|
+
let success = res && res['success'];
|
|
147
|
+
success = !success ? res[0] && res[0]['success'] : success;
|
|
148
|
+
if(!success) {
|
|
147
149
|
cmdbox.message(res);
|
|
148
150
|
return {};
|
|
149
151
|
}
|
|
150
|
-
const data = Object.entries(
|
|
152
|
+
const data = Object.entries(success).sort();
|
|
151
153
|
const ret = {};
|
|
152
154
|
for (let i = 0; i < data.length; i++) {
|
|
153
155
|
const [key, value] = data[i];
|
|
@@ -10,36 +10,36 @@ cmdbox/logconf_gui.yml,sha256=-95vyd0q-aB1gsabdk8rg9dJ2zRKAZc8hRxyhNOQboU,1076
|
|
|
10
10
|
cmdbox/logconf_mcp.yml,sha256=pED0i1iKP8UoyXE0amFMA5kjV7Qc6_eJCUDVen3L4AU,1069
|
|
11
11
|
cmdbox/logconf_server.yml,sha256=n3c5-KVzjUzcUX5BQ6uE-PN9rp81yXaJql3whyCcSDQ,1091
|
|
12
12
|
cmdbox/logconf_web.yml,sha256=pPbdAwckbK0cgduxcVkx2mbk-Ymz5hVzR4guIsfApMQ,1076
|
|
13
|
-
cmdbox/version.py,sha256=
|
|
13
|
+
cmdbox/version.py,sha256=2I5z4VF4ED9igCeuCmhKyPU5-3gvPHt2KZu7raSGBZ0,2110
|
|
14
14
|
cmdbox/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
cmdbox/app/app.py,sha256=_UJqSTs3LStGSu3vLMTqOKmpL4x7NQAQb2hUMbEFcg4,9639
|
|
16
16
|
cmdbox/app/client.py,sha256=n986lXeV7hhaki4iyyvsfhNptmCXDFphxlNoNe2XhKg,19542
|
|
17
|
-
cmdbox/app/common.py,sha256=
|
|
17
|
+
cmdbox/app/common.py,sha256=MQQab5rboKS2oNDAWbKR8LYoSXW_i1vgD1rFAwBMExU,27712
|
|
18
18
|
cmdbox/app/edge.py,sha256=2Aav7n4skhP0FUvG6_3JKijHHozA-WcwALgEwNB0DUI,41439
|
|
19
19
|
cmdbox/app/edge_tool.py,sha256=HXxr4Or8QaZ5ueYIN3huv8GnXSnV28RZCmZBUEfiIk0,8062
|
|
20
|
-
cmdbox/app/feature.py,sha256=
|
|
20
|
+
cmdbox/app/feature.py,sha256=fK7JP1fc8b9k1zhSNOkWq02ad8i-_wuAX5kyyK2TZdE,10391
|
|
21
21
|
cmdbox/app/filer.py,sha256=L_DSMTvnbN_ffr3JIt0obbOmVoTHEfVm2cAVz3rLH-Q,16059
|
|
22
|
-
cmdbox/app/mcp.py,sha256=
|
|
23
|
-
cmdbox/app/options.py,sha256=
|
|
22
|
+
cmdbox/app/mcp.py,sha256=M40PcDDgNywq0PPvW7KvvbHSRpgOJsOc4zW-Dd8KBnc,30230
|
|
23
|
+
cmdbox/app/options.py,sha256=Wz2GYnuhwBieFbA3zHl2WIXsKANVWvX8Bw3MK408xPs,46220
|
|
24
24
|
cmdbox/app/server.py,sha256=woOmIk901ONn5a_2yz_b3I1JpLYIF8g42uQRd0_MRuQ,10417
|
|
25
|
-
cmdbox/app/web.py,sha256=
|
|
25
|
+
cmdbox/app/web.py,sha256=rwoSZaTJVCECtMZ8MaJrie9K0xRBqis2BrtY0lFmgEg,54007
|
|
26
26
|
cmdbox/app/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
cmdbox/app/auth/azure_signin.py,sha256=jJlIZJIGLZCngnJgoxBajaD2s8nM7QoszuN6-FT-5h8,1953
|
|
28
28
|
cmdbox/app/auth/azure_signin_saml.py,sha256=oM2buGTK4t6-OsUuiUXTlZk0YXZL01khuPYVB84dMDU,472
|
|
29
29
|
cmdbox/app/auth/github_signin.py,sha256=dg_3eu7iikTfp9mxYQscQXtFspmJIuasGZ43icCeC3k,1510
|
|
30
30
|
cmdbox/app/auth/google_signin.py,sha256=LErFkKniumKgfE5jlY9_lAneKlqD6BfLHxg2lZgv_zE,1382
|
|
31
|
-
cmdbox/app/auth/signin.py,sha256=
|
|
31
|
+
cmdbox/app/auth/signin.py,sha256=wBnZMmi7i4BehlfJtXg4owr5HDLOzQCS6Lc2UO-2dPQ,60022
|
|
32
32
|
cmdbox/app/auth/signin_saml.py,sha256=MUM_hqCEjT-8xXNMHa-iH2j24SdBls4SU3k4BopRd48,2457
|
|
33
33
|
cmdbox/app/commons/convert.py,sha256=mkXPNQtX_pEH4L5DzonOY6Dh38SzJ5JQma_EY7UDBqU,7078
|
|
34
34
|
cmdbox/app/commons/loghandler.py,sha256=bcKTDqSlUcVpO-6vYGijZcLdJlXn7ewx9MT_N7RhgAY,6323
|
|
35
35
|
cmdbox/app/commons/module.py,sha256=w63zqz5c6gLy-BZJ9dh4Q4C5PZyqM2Iqat5Zr9swJCI,4993
|
|
36
36
|
cmdbox/app/commons/redis_client.py,sha256=cOHshqAGI3CRWLcc2IMhk6MtXsVKlQq6HwcdqYsoA-0,14821
|
|
37
|
-
cmdbox/app/features/cli/agent_base.py,sha256=
|
|
37
|
+
cmdbox/app/features/cli/agent_base.py,sha256=FShwbXWCfU-pXNTRaWfV_9z5FKeczxWsxidDmXeaQI0,7682
|
|
38
38
|
cmdbox/app/features/cli/audit_base.py,sha256=X_FvKsN_j8uVg96yifzmtXuAqGIPklihlfmhb_FvOgM,9405
|
|
39
39
|
cmdbox/app/features/cli/cmdbox_audit_createdb.py,sha256=S-rE9bUOKQLg8GizVQCKhqf0fr3JapcrqNCzoSzmNLc,12133
|
|
40
40
|
cmdbox/app/features/cli/cmdbox_audit_delete.py,sha256=OVPu0uIHgkJpeALILPY4lzL-gy61uywMN3KIP7lst8g,18922
|
|
41
|
-
cmdbox/app/features/cli/cmdbox_audit_search.py,sha256=
|
|
42
|
-
cmdbox/app/features/cli/cmdbox_audit_write.py,sha256=
|
|
41
|
+
cmdbox/app/features/cli/cmdbox_audit_search.py,sha256=sSwdjaCWGiRkD_WHM4YFZFxv7kO1aY4693DnZHFvK8Y,31400
|
|
42
|
+
cmdbox/app/features/cli/cmdbox_audit_write.py,sha256=Yv8SwY4nfSE0BsMJ5lz_AfiI0K_wjg6RdIK6L0kwcfU,15541
|
|
43
43
|
cmdbox/app/features/cli/cmdbox_client_file_copy.py,sha256=wwth8zHslc-mm5iPGJOMXhTqeZ_tZcRSo1LIk_7v53o,13093
|
|
44
44
|
cmdbox/app/features/cli/cmdbox_client_file_download.py,sha256=YzoqJPvBlg8Kwos-3RjFrPjpVVV5qjNPSB_npofdSL8,13239
|
|
45
45
|
cmdbox/app/features/cli/cmdbox_client_file_list.py,sha256=9xyILNufyJBV_clQ-SG5v-H2bK7FanFAfU9_BxcZGyo,12100
|
|
@@ -49,30 +49,31 @@ cmdbox/app/features/cli/cmdbox_client_file_remove.py,sha256=oupYP04CbAZ-x7MaODjS
|
|
|
49
49
|
cmdbox/app/features/cli/cmdbox_client_file_rmdir.py,sha256=E32Av7_0g-Rlesr9onc4iu-HZGtjfgaM_frLW2jMF7Y,11530
|
|
50
50
|
cmdbox/app/features/cli/cmdbox_client_file_upload.py,sha256=-sAqQiIpqH4wWfv_IAN2EYafHzNjFnOOfuLjyjHPwLc,13407
|
|
51
51
|
cmdbox/app/features/cli/cmdbox_client_server_info.py,sha256=tBGOfFxUQojkVu_o8Jv-VR2QSMnxSLN6EBtHZy5NU6k,9575
|
|
52
|
-
cmdbox/app/features/cli/cmdbox_cmd_list.py,sha256=
|
|
53
|
-
cmdbox/app/features/cli/cmdbox_cmd_load.py,sha256=
|
|
54
|
-
cmdbox/app/features/cli/cmdbox_edge_config.py,sha256=
|
|
55
|
-
cmdbox/app/features/cli/cmdbox_edge_start.py,sha256=
|
|
52
|
+
cmdbox/app/features/cli/cmdbox_cmd_list.py,sha256=SUieS8cEH3lNHeFxer1m-e8XBTd8_fE2-mrPfcnHw2A,6682
|
|
53
|
+
cmdbox/app/features/cli/cmdbox_cmd_load.py,sha256=U1NWnJ_bjGOMCp9mtaqt4ujaDtPkhGnybupX-h15Tuw,6747
|
|
54
|
+
cmdbox/app/features/cli/cmdbox_edge_config.py,sha256=2fppuJ5yAiepq5i4Qj_1w3ciSXhy1sFDK6FFOw5sB68,9472
|
|
55
|
+
cmdbox/app/features/cli/cmdbox_edge_start.py,sha256=PVkvRBaepxqdjswUp1JzQqfzD5xdiPaZYXy72P0rlDE,3823
|
|
56
56
|
cmdbox/app/features/cli/cmdbox_gui_start.py,sha256=zFxSx-Dk8ahji65RJxvuMP9mrJRBP9UrCcIFmeAhTgI,1390
|
|
57
57
|
cmdbox/app/features/cli/cmdbox_gui_stop.py,sha256=WEVB0VamIi5MhYtu5dshHmG2fmPiTuf_5NTHFi-D_vk,841
|
|
58
|
-
cmdbox/app/features/cli/
|
|
58
|
+
cmdbox/app/features/cli/cmdbox_mcp_client.py,sha256=g83tF3CZa5EqkBA67TXcUZcbVj8lm4qsfu-8HeM9jeQ,12065
|
|
59
|
+
cmdbox/app/features/cli/cmdbox_mcp_proxy.py,sha256=xQ3832CdeUZ1WVRQcpoE2Yw4TQ5uR5X7Q08fwr2CE9Q,4720
|
|
59
60
|
cmdbox/app/features/cli/cmdbox_server_list.py,sha256=J9FLVq3B5hlEBK88rT867Ey32-bHAHpZy_X9VqjZLvI,5777
|
|
60
|
-
cmdbox/app/features/cli/cmdbox_server_start.py,sha256=
|
|
61
|
+
cmdbox/app/features/cli/cmdbox_server_start.py,sha256=ci9vo1G9LtazQo9XYI4-_OdfHHhU_r8gFp-meWeE2vM,7279
|
|
61
62
|
cmdbox/app/features/cli/cmdbox_server_stop.py,sha256=eSdo0vW0PYAU1VIC0-wWsGKNlmZ1J8SOfN18fL_AVrI,8644
|
|
62
|
-
cmdbox/app/features/cli/cmdbox_web_apikey_add.py,sha256=
|
|
63
|
-
cmdbox/app/features/cli/cmdbox_web_apikey_del.py,sha256=
|
|
64
|
-
cmdbox/app/features/cli/cmdbox_web_gencert.py,sha256=
|
|
63
|
+
cmdbox/app/features/cli/cmdbox_web_apikey_add.py,sha256=RrmGWUoK5aqRnUu-CSVe0y5-FenjF0E3yYED8RJefhM,7151
|
|
64
|
+
cmdbox/app/features/cli/cmdbox_web_apikey_del.py,sha256=EHZ5PND4lWM3ZKkBMXC2fT-tLnnBSVMLih-mxR8ztLk,7129
|
|
65
|
+
cmdbox/app/features/cli/cmdbox_web_gencert.py,sha256=tFqP4dBXeBYCFfNKcdKN49-waJrUCxa_zDcOV9yrIsA,11396
|
|
65
66
|
cmdbox/app/features/cli/cmdbox_web_genpass.py,sha256=f450z1PxofpbrPsJccnHEjkXF975ZsLbBii8RkCgVCM,9541
|
|
66
|
-
cmdbox/app/features/cli/cmdbox_web_group_add.py,sha256=
|
|
67
|
-
cmdbox/app/features/cli/cmdbox_web_group_del.py,sha256=
|
|
68
|
-
cmdbox/app/features/cli/cmdbox_web_group_edit.py,sha256=
|
|
69
|
-
cmdbox/app/features/cli/cmdbox_web_group_list.py,sha256=
|
|
70
|
-
cmdbox/app/features/cli/cmdbox_web_start.py,sha256=
|
|
71
|
-
cmdbox/app/features/cli/cmdbox_web_stop.py,sha256=
|
|
72
|
-
cmdbox/app/features/cli/cmdbox_web_user_add.py,sha256=
|
|
73
|
-
cmdbox/app/features/cli/cmdbox_web_user_del.py,sha256=
|
|
74
|
-
cmdbox/app/features/cli/cmdbox_web_user_edit.py,sha256=
|
|
75
|
-
cmdbox/app/features/cli/cmdbox_web_user_list.py,sha256=
|
|
67
|
+
cmdbox/app/features/cli/cmdbox_web_group_add.py,sha256=p4VdIUv-hh0eXqV5ITyBFRUxGBeQxImHXEPv7s7SUv4,7419
|
|
68
|
+
cmdbox/app/features/cli/cmdbox_web_group_del.py,sha256=qssAhZmY0wKfkpQ6UycT7G-_qQpyyE_T7w_hupgsajE,6629
|
|
69
|
+
cmdbox/app/features/cli/cmdbox_web_group_edit.py,sha256=04U741NeIGqeuId8m2oSOFgSguQuTK0_Krt0nSMATrw,7358
|
|
70
|
+
cmdbox/app/features/cli/cmdbox_web_group_list.py,sha256=4oITsdUEkPW4jZQOTiDQkgawJTUfxEyn1YFxDuf9SVk,6724
|
|
71
|
+
cmdbox/app/features/cli/cmdbox_web_start.py,sha256=uNFXWpmrhMY6AEzYgf5RXlkc7yzHJIIJZs5dJ_7TZNU,17848
|
|
72
|
+
cmdbox/app/features/cli/cmdbox_web_stop.py,sha256=5ja4IiWRSpfRrWfoRncMRmofEYj8MDfIFUcWfDtIOQ4,3567
|
|
73
|
+
cmdbox/app/features/cli/cmdbox_web_user_add.py,sha256=WsuW1rt27dhxIY7aD_xyZblyEhBqq4Z_doE4Gd75O68,8611
|
|
74
|
+
cmdbox/app/features/cli/cmdbox_web_user_del.py,sha256=t5CpPO4J9Wl2paBqSY_rA9vEYLXSxrYFB999Cvd-ZMU,6592
|
|
75
|
+
cmdbox/app/features/cli/cmdbox_web_user_edit.py,sha256=jzwkjCNxW7vX0Nc4FIHn4hDO6PmBoVpPcmzr5P3W4rQ,8519
|
|
76
|
+
cmdbox/app/features/cli/cmdbox_web_user_list.py,sha256=EGOcWMmRLZ_QHlb1twIZJ5xWSjSvDZZRTkYv9emANKI,6712
|
|
76
77
|
cmdbox/app/features/web/cmdbox_web_agent.py,sha256=yBbPszQAkw3yfukJJ-xnQNoOsTsi32lm3WxR4iAMhJ4,14542
|
|
77
78
|
cmdbox/app/features/web/cmdbox_web_assets.py,sha256=D1dYNrvC7xBAVAAHX6PkoB6RFehEofET4hkHeCFYq7s,1931
|
|
78
79
|
cmdbox/app/features/web/cmdbox_web_audit.py,sha256=-flyijdnh3hN-BKnw0GI3gSiduLP0vQFg_AiYCLXRBY,3359
|
|
@@ -109,7 +110,7 @@ cmdbox/app/features/web/cmdbox_web_users.py,sha256=LZ3BUudBF21wqGO5EWwKvyLMxK_gE
|
|
|
109
110
|
cmdbox/app/features/web/cmdbox_web_usesignout.py,sha256=lBjBj8M8e69uXhdv7H92wZfRRWD2j6kmC_WekSCw5yo,682
|
|
110
111
|
cmdbox/app/features/web/cmdbox_web_versions_cmdbox.py,sha256=hG4ikQc0Qr6He8AhYu8kK1GD5TNjezr-VpmCSAFL7Nk,818
|
|
111
112
|
cmdbox/app/features/web/cmdbox_web_versions_used.py,sha256=xA368ASudYFIrJjWOC1MGmsaAE3Mdd5i-Y8sZBWL7p4,1322
|
|
112
|
-
cmdbox/extensions/features.yml,sha256=
|
|
113
|
+
cmdbox/extensions/features.yml,sha256=j8j3YIy34w0sprI1A1pwklZGH9KN80UdWuCpKcqVkfc,6699
|
|
113
114
|
cmdbox/extensions/user_list.yml,sha256=P_KdBu9VmNDEh9rEQ4QGKObpeXb34wMF4__uOShLh44,13098
|
|
114
115
|
cmdbox/extensions/sample_project/requirements.txt,sha256=z_gUanGVrPeYUExYeU5_gHiOTy8RKZkaJSeKxOM4mqY,18
|
|
115
116
|
cmdbox/extensions/sample_project/.vscode/launch.json,sha256=Bj_FO1P0lPMfuwZxvyLfwQa0f7Gk276dvcVRjj2aem4,1348
|
|
@@ -123,7 +124,7 @@ cmdbox/extensions/sample_project/sample/app/features/cli/sample_client_time.py,s
|
|
|
123
124
|
cmdbox/extensions/sample_project/sample/app/features/cli/sample_server_time.py,sha256=vpMBd-7gymFP9qcpFf9uvPp8dxn5qQv6VcoFw4lSZuo,7444
|
|
124
125
|
cmdbox/extensions/sample_project/sample/app/features/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
126
|
cmdbox/extensions/sample_project/sample/extensions/features.yml,sha256=Jn7kZVH95VU0bF6p2K2Wzv7V8u4AkUqi-_Fco5AwLoU,7374
|
|
126
|
-
cmdbox/extensions/sample_project/sample/extensions/user_list.yml,sha256=
|
|
127
|
+
cmdbox/extensions/sample_project/sample/extensions/user_list.yml,sha256=P_KdBu9VmNDEh9rEQ4QGKObpeXb34wMF4__uOShLh44,13098
|
|
127
128
|
cmdbox/extensions/sample_project/sample/web/assets/sample/favicon.ico,sha256=z-jwmfktVBIsYjhUfCOj7ZNiq55GH-uXtbbDRzk7DHQ,9662
|
|
128
129
|
cmdbox/extensions/sample_project/sample/web/assets/sample/icon.png,sha256=8WmOhepVHG46KG8Sjs4OjZht16dTcgpsNIs972PiVWU,327723
|
|
129
130
|
cmdbox/licenses/LICENSE_Authlib_1_6_0_BSD_License.txt,sha256=jYKqOj5UKtBY_y34_upU28Iok0WYyCO-8x-80yVPgd4,1543
|
|
@@ -317,12 +318,12 @@ cmdbox/web/assets/apexcharts/apexcharts.css,sha256=l-xkqykcV8a22g04B-Vpt4JFWcHlw
|
|
|
317
318
|
cmdbox/web/assets/apexcharts/apexcharts.min.js,sha256=zceUTsCKa8Y2SqjqZjLjifXQDnqsvKRTmT8fTIUix_4,570304
|
|
318
319
|
cmdbox/web/assets/bootstrap/bootstrap.bundle.min.5.3.0.js,sha256=qlPVgvl-tZTCpcxYJFdHB_m6mDe84wRr-l81VoYPTgQ,80421
|
|
319
320
|
cmdbox/web/assets/bootstrap/bootstrap.min.5.3.0.css,sha256=fx038NkLY4U1TCrBDiu5FWPEa9eiZu01EiLryshJbCo,232914
|
|
320
|
-
cmdbox/web/assets/cmdbox/agent.js,sha256=
|
|
321
|
+
cmdbox/web/assets/cmdbox/agent.js,sha256=IsvuprldT7iySd_3FHx63_Rj30f0pKfW51l3s2wzt8I,15808
|
|
321
322
|
cmdbox/web/assets/cmdbox/audit.js,sha256=YDPQaThJSH-iBHvVK16JO4pyGZBoo-rCZou00D8x3yU,19346
|
|
322
323
|
cmdbox/web/assets/cmdbox/color_mode.css,sha256=U4UGBnWiBMcrSEEusgT-_o-pt4MP3myoA9Lgnn1g6qE,19803
|
|
323
|
-
cmdbox/web/assets/cmdbox/common.js,sha256=
|
|
324
|
+
cmdbox/web/assets/cmdbox/common.js,sha256=Aoq7CB9FRxpL_x-7-2a92nUSied9SoDd8B-hG--1qeU,69673
|
|
324
325
|
cmdbox/web/assets/cmdbox/favicon.ico,sha256=2U4MhqzJklRksOQwnK-MZigZCubxCHqKG_AuNJnvYtA,34494
|
|
325
|
-
cmdbox/web/assets/cmdbox/filer_modal.js,sha256=
|
|
326
|
+
cmdbox/web/assets/cmdbox/filer_modal.js,sha256=HWJCVVSviZUBg1oiwgiFtXisAqO-S3D-rcc1E6uNzNY,8650
|
|
326
327
|
cmdbox/web/assets/cmdbox/icon.png,sha256=xdEwDdCS8CoPQk7brW-1mV8FIGYtUeSMBRlY9Oh-3nE,296172
|
|
327
328
|
cmdbox/web/assets/cmdbox/list_cmd.js,sha256=WHnDlVus1My8-tTATnj_xU5q_LIhM72Vd0WjGIf-wAE,21437
|
|
328
329
|
cmdbox/web/assets/cmdbox/list_pipe.js,sha256=2rPkauw9VHRMXl76qRgqy81Y815Y8B1tnVKOSKKfRwc,11315
|
|
@@ -377,9 +378,9 @@ cmdbox/web/assets/tree-menu/image/file.png,sha256=Uw4zYkHyuoZ_kSVkesHAeSeA_g9_LP
|
|
|
377
378
|
cmdbox/web/assets/tree-menu/image/folder-close.png,sha256=TcgsKTBBF2ejgzekOEDBFBxsJf-Z5u0x9IZVi4GBR-I,284
|
|
378
379
|
cmdbox/web/assets/tree-menu/image/folder-open.png,sha256=DT7y1GRK4oXJkFvqTN_oSGM5ZYARzPvjoCGL6wqkoo0,301
|
|
379
380
|
cmdbox/web/assets/tree-menu/js/tree-menu.js,sha256=-GkZxI7xzHuXXHYQBHAVTcuKX4TtoiMuyIms6Xc3pxk,1029
|
|
380
|
-
cmdbox-0.6.2.
|
|
381
|
-
cmdbox-0.6.2.
|
|
382
|
-
cmdbox-0.6.2.
|
|
383
|
-
cmdbox-0.6.2.
|
|
384
|
-
cmdbox-0.6.2.
|
|
385
|
-
cmdbox-0.6.2.
|
|
381
|
+
cmdbox-0.6.2.4.dist-info/LICENSE,sha256=sBzzPc5v-5LBuIFi2V4olsnoVg-3EBI0zRX5r19SOxE,1117
|
|
382
|
+
cmdbox-0.6.2.4.dist-info/METADATA,sha256=EVszY_f7dL1y3yBUVRvE0HzR8SdegDA9dK7rS5Oo63c,33524
|
|
383
|
+
cmdbox-0.6.2.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
384
|
+
cmdbox-0.6.2.4.dist-info/entry_points.txt,sha256=1LdoMUjTD_YdxlsAiAiJ1cREcXFG8-Xg2xQTNYoNpT4,47
|
|
385
|
+
cmdbox-0.6.2.4.dist-info/top_level.txt,sha256=eMEkD5jn8_0PkCAL8h5xJu4qAzF2O8Wf3vegFkKUXR4,7
|
|
386
|
+
cmdbox-0.6.2.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|