cmdbox 0.6.1.1__py3-none-any.whl → 0.6.2.1__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.

Files changed (75) hide show
  1. cmdbox/app/app.py +7 -0
  2. cmdbox/app/auth/signin.py +7 -3
  3. cmdbox/app/common.py +14 -2
  4. cmdbox/app/commons/loghandler.py +2 -2
  5. cmdbox/app/edge.py +3 -3
  6. cmdbox/app/feature.py +9 -0
  7. cmdbox/app/features/cli/agent_base.py +42 -42
  8. cmdbox/app/features/cli/audit_base.py +28 -28
  9. cmdbox/app/features/cli/cmdbox_audit_createdb.py +28 -28
  10. cmdbox/app/features/cli/cmdbox_audit_delete.py +26 -26
  11. cmdbox/app/features/cli/cmdbox_audit_search.py +42 -42
  12. cmdbox/app/features/cli/cmdbox_audit_write.py +22 -22
  13. cmdbox/app/features/cli/cmdbox_client_file_copy.py +36 -36
  14. cmdbox/app/features/cli/cmdbox_client_file_download.py +38 -38
  15. cmdbox/app/features/cli/cmdbox_client_file_list.py +34 -34
  16. cmdbox/app/features/cli/cmdbox_client_file_mkdir.py +32 -32
  17. cmdbox/app/features/cli/cmdbox_client_file_move.py +34 -34
  18. cmdbox/app/features/cli/cmdbox_client_file_remove.py +32 -32
  19. cmdbox/app/features/cli/cmdbox_client_file_rmdir.py +32 -32
  20. cmdbox/app/features/cli/cmdbox_client_file_upload.py +38 -38
  21. cmdbox/app/features/cli/cmdbox_client_server_info.py +26 -26
  22. cmdbox/app/features/cli/cmdbox_cmd_list.py +22 -21
  23. cmdbox/app/features/cli/cmdbox_cmd_load.py +24 -20
  24. cmdbox/app/features/cli/cmdbox_edge_config.py +40 -40
  25. cmdbox/app/features/cli/cmdbox_edge_start.py +4 -4
  26. cmdbox/app/features/cli/cmdbox_gui_start.py +2 -2
  27. cmdbox/app/features/cli/cmdbox_gui_stop.py +2 -2
  28. cmdbox/app/features/cli/cmdbox_mcp_proxy.py +17 -11
  29. cmdbox/app/features/cli/cmdbox_server_list.py +20 -20
  30. cmdbox/app/features/cli/cmdbox_server_start.py +26 -26
  31. cmdbox/app/features/cli/cmdbox_server_stop.py +26 -26
  32. cmdbox/app/features/cli/cmdbox_web_apikey_add.py +24 -24
  33. cmdbox/app/features/cli/cmdbox_web_apikey_del.py +24 -24
  34. cmdbox/app/features/cli/cmdbox_web_gencert.py +24 -24
  35. cmdbox/app/features/cli/cmdbox_web_genpass.py +20 -20
  36. cmdbox/app/features/cli/cmdbox_web_group_add.py +26 -26
  37. cmdbox/app/features/cli/cmdbox_web_group_del.py +22 -22
  38. cmdbox/app/features/cli/cmdbox_web_group_edit.py +26 -26
  39. cmdbox/app/features/cli/cmdbox_web_group_list.py +22 -22
  40. cmdbox/app/features/cli/cmdbox_web_start.py +65 -65
  41. cmdbox/app/features/cli/cmdbox_web_stop.py +10 -10
  42. cmdbox/app/features/cli/cmdbox_web_user_add.py +32 -32
  43. cmdbox/app/features/cli/cmdbox_web_user_del.py +22 -22
  44. cmdbox/app/features/cli/cmdbox_web_user_edit.py +32 -32
  45. cmdbox/app/features/cli/cmdbox_web_user_list.py +22 -22
  46. cmdbox/app/features/web/cmdbox_web_agent.py +0 -4
  47. cmdbox/app/features/web/cmdbox_web_exec_cmd.py +2 -2
  48. cmdbox/app/mcp.py +316 -120
  49. cmdbox/app/options.py +26 -23
  50. cmdbox/extensions/sample_project/sample/app/features/cli/sample_client_time.py +4 -4
  51. cmdbox/extensions/sample_project/sample/app/features/cli/sample_server_time.py +18 -18
  52. cmdbox/extensions/sample_project/sample/extensions/user_list.yml +4 -0
  53. cmdbox/extensions/user_list.yml +4 -0
  54. cmdbox/licenses/LICENSE_dnspython_2_7_0_ISC_License-ISCL.txt +35 -0
  55. cmdbox/licenses/LICENSE_email_validator_2_2_0_The_Unlicense-Unlicense.txt +27 -0
  56. cmdbox/licenses/files.txt +4 -2
  57. cmdbox/version.py +2 -2
  58. cmdbox/web/agent.html +2 -2
  59. cmdbox/web/assets/cmdbox/audit.js +14 -14
  60. cmdbox/web/assets/cmdbox/common.js +21 -7
  61. cmdbox/web/assets/cmdbox/list_cmd.js +5 -5
  62. cmdbox/web/assets/cmdbox/signin.js +17 -7
  63. cmdbox/web/assets/cmdbox/svgicon.js +3 -3
  64. cmdbox/web/assets/cmdbox/users.js +14 -5
  65. cmdbox/web/audit.html +6 -6
  66. cmdbox/web/signin.html +13 -10
  67. cmdbox/web/users.html +4 -4
  68. {cmdbox-0.6.1.1.dist-info → cmdbox-0.6.2.1.dist-info}/METADATA +27 -23
  69. {cmdbox-0.6.1.1.dist-info → cmdbox-0.6.2.1.dist-info}/RECORD +75 -73
  70. /cmdbox/licenses/{LICENSE_fastmcp_2_9_2_Apache_Software_License.txt → LICENSE_fastmcp_2_10_1_Apache_Software_License.txt} +0 -0
  71. /cmdbox/licenses/{LICENSE_mcp_1_9_4_MIT_License.txt → LICENSE_mcp_1_10_1_MIT_License.txt} +0 -0
  72. {cmdbox-0.6.1.1.dist-info → cmdbox-0.6.2.1.dist-info}/LICENSE +0 -0
  73. {cmdbox-0.6.1.1.dist-info → cmdbox-0.6.2.1.dist-info}/WHEEL +0 -0
  74. {cmdbox-0.6.1.1.dist-info → cmdbox-0.6.2.1.dist-info}/entry_points.txt +0 -0
  75. {cmdbox-0.6.1.1.dist-info → cmdbox-0.6.2.1.dist-info}/top_level.txt +0 -0
@@ -35,64 +35,64 @@ class ClientFileMkdir(feature.UnsupportEdgeFeature):
35
35
  """
36
36
  return dict(
37
37
  use_redis=self.USE_REDIS_MEIGHT, nouse_webmode=False,
38
- discription_ja="データフォルダ配下に新しいフォルダを作成します。",
39
- discription_en="Create a new folder under the data folder.",
38
+ description_ja="データフォルダ配下に新しいフォルダを作成します。",
39
+ description_en="Create a new folder under the data folder.",
40
40
  choice=[
41
41
  dict(opt="host", type=Options.T_STR, default=self.default_host, required=True, multi=False, hide=True, choice=None, web="mask",
42
- discription_ja="Redisサーバーのサービスホストを指定します。",
43
- discription_en="Specify the service host of the Redis server."),
42
+ description_ja="Redisサーバーのサービスホストを指定します。",
43
+ description_en="Specify the service host of the Redis server."),
44
44
  dict(opt="port", type=Options.T_INT, default=self.default_port, required=True, multi=False, hide=True, choice=None, web="mask",
45
- discription_ja="Redisサーバーのサービスポートを指定します。",
46
- discription_en="Specify the service port of the Redis server."),
45
+ description_ja="Redisサーバーのサービスポートを指定します。",
46
+ description_en="Specify the service port of the Redis server."),
47
47
  dict(opt="password", type=Options.T_STR, default=self.default_pass, required=True, multi=False, hide=True, choice=None, web="mask",
48
- discription_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
- discription_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
48
+ description_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
+ description_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
50
50
  dict(opt="svname", type=Options.T_STR, default=self.default_svname, required=True, multi=False, hide=True, choice=None, web="readonly",
51
- discription_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
- discription_en="Specify the service name of the inference server. If omitted, `server` is used."),
51
+ description_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
+ description_en="Specify the service name of the inference server. If omitted, `server` is used."),
53
53
  dict(opt="svpath", type=Options.T_STR, default="/", required=True, multi=False, hide=False, choice=None,
54
- discription_ja="サーバーのデータフォルダ以下のパスを指定します。省略時は `/` を使用します。",
55
- discription_en="Specify the directory path to get the list of files.",
54
+ description_ja="サーバーのデータフォルダ以下のパスを指定します。省略時は `/` を使用します。",
55
+ description_en="Specify the directory path to get the list of files.",
56
56
  test_true={"server":"/file_server",
57
57
  "client":"/file_client",
58
58
  "current":"/file_current"}),
59
59
  dict(opt="scope", type=Options.T_STR, default="client", required=True, multi=False, hide=False, choice=["client", "current", "server"],
60
- discription_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
- discription_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
60
+ description_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
+ description_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
62
62
  choice_show=dict(client=["client_data"]),
63
63
  test_true={"server":"server",
64
64
  "client":"client",
65
65
  "current":"current"}),
66
66
  dict(opt="client_data", type=Options.T_STR, default=None, required=False, multi=False, hide=False, choice=None,
67
- discription_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
68
- discription_en="Specify the path of the data folder when local is referenced.",
67
+ description_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
68
+ description_en="Specify the path of the data folder when local is referenced.",
69
69
  test_true={"server":None,
70
70
  "client":common.HOME_DIR / f".{self.ver.__appid__}",
71
71
  "current":None}),
72
72
  dict(opt="retry_count", type=Options.T_INT, default=3, required=False, multi=False, hide=True, choice=None,
73
- discription_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
74
- discription_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
73
+ description_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
74
+ description_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
75
75
  dict(opt="retry_interval", type=Options.T_INT, default=5, required=False, multi=False, hide=True, choice=None,
76
- discription_ja="Redisサーバーに再接続までの秒数を指定します。",
77
- discription_en="Specifies the number of seconds before reconnecting to the Redis server."),
76
+ description_ja="Redisサーバーに再接続までの秒数を指定します。",
77
+ description_en="Specifies the number of seconds before reconnecting to the Redis server."),
78
78
  dict(opt="timeout", type=Options.T_INT, default="15", required=False, multi=False, hide=True, choice=None,
79
- discription_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
80
- discription_en="Specify the maximum waiting time until the server responds."),
79
+ description_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
80
+ description_en="Specify the maximum waiting time until the server responds."),
81
81
  dict(opt="output_json", short="o", type=Options.T_FILE, default=None, required=False, multi=False, hide=True, choice=None, fileio="out",
82
- discription_ja="処理結果jsonの保存先ファイルを指定。",
83
- discription_en="Specify the destination file for saving the processing result json."),
82
+ description_ja="処理結果jsonの保存先ファイルを指定。",
83
+ description_en="Specify the destination file for saving the processing result json."),
84
84
  dict(opt="output_json_append", short="a", type=Options.T_BOOL, default=False, required=False, multi=False, hide=True, choice=[True, False],
85
- discription_ja="処理結果jsonファイルを追記保存します。",
86
- discription_en="Save the processing result json file by appending."),
85
+ description_ja="処理結果jsonファイルを追記保存します。",
86
+ description_en="Save the processing result json file by appending."),
87
87
  dict(opt="stdout_log", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
88
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
89
- discription_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
88
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
89
+ description_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
90
90
  dict(opt="capture_stdout", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
91
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
92
- discription_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
91
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
92
+ description_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
93
93
  dict(opt="capture_maxsize", type=Options.T_INT, default=self.DEFAULT_CAPTURE_MAXSIZE, required=False, multi=False, hide=True, choice=None,
94
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
95
- discription_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
94
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
95
+ description_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
96
96
  ]
97
97
  )
98
98
 
@@ -35,70 +35,70 @@ class ClientFileMove(feature.UnsupportEdgeFeature):
35
35
  """
36
36
  return dict(
37
37
  use_redis=self.USE_REDIS_MEIGHT, nouse_webmode=False,
38
- discription_ja="データフォルダ配下のファイルを移動します。",
39
- discription_en="Move the files under the data folder.",
38
+ description_ja="データフォルダ配下のファイルを移動します。",
39
+ description_en="Move the files under the data folder.",
40
40
  choice=[
41
41
  dict(opt="host", type=Options.T_STR, default=self.default_host, required=True, multi=False, hide=True, choice=None, web="mask",
42
- discription_ja="Redisサーバーのサービスホストを指定します。",
43
- discription_en="Specify the service host of the Redis server."),
42
+ description_ja="Redisサーバーのサービスホストを指定します。",
43
+ description_en="Specify the service host of the Redis server."),
44
44
  dict(opt="port", type=Options.T_INT, default=self.default_port, required=True, multi=False, hide=True, choice=None, web="mask",
45
- discription_ja="Redisサーバーのサービスポートを指定します。",
46
- discription_en="Specify the service port of the Redis server."),
45
+ description_ja="Redisサーバーのサービスポートを指定します。",
46
+ description_en="Specify the service port of the Redis server."),
47
47
  dict(opt="password", type=Options.T_STR, default=self.default_pass, required=True, multi=False, hide=True, choice=None, web="mask",
48
- discription_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
- discription_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
48
+ description_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
+ description_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
50
50
  dict(opt="svname", type=Options.T_STR, default=self.default_svname, required=True, multi=False, hide=True, choice=None, web="readonly",
51
- discription_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
- discription_en="Specify the service name of the inference server. If omitted, `server` is used."),
51
+ description_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
+ description_en="Specify the service name of the inference server. If omitted, `server` is used."),
53
53
  dict(opt="from_path", type=Options.T_STR, default=None, required=True, multi=False, hide=False, choice=None,
54
- discription_ja="データフォルダ以下の移動元パスを指定します。",
55
- discription_en="Specify the source path under the data folder.",
54
+ description_ja="データフォルダ以下の移動元パスを指定します。",
55
+ description_en="Specify the source path under the data folder.",
56
56
  test_true={"server":"/file_server/upload/dog.jpg",
57
57
  "client":"/file_client/upload/dog.jpg",
58
58
  "current":"/file_current/upload/dog.jpg"}),
59
59
  dict(opt="to_path", type=Options.T_STR, default=None, required=True, multi=False, hide=False, choice=None,
60
- discription_ja="データフォルダ以下の移動先パスを指定します。",
61
- discription_en="Specify the destination path under the data folder.",
60
+ description_ja="データフォルダ以下の移動先パスを指定します。",
61
+ description_en="Specify the destination path under the data folder.",
62
62
  test_true={"server":"/file_server/upload/dog3.jpg",
63
63
  "client":"/file_client/upload/dog3.jpg",
64
64
  "current":"/file_current/upload/dog3.jpg"}),
65
65
  dict(opt="scope", type=Options.T_STR, default="client", required=True, multi=False, hide=False, choice=["client", "current", "server"],
66
- discription_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
67
- discription_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
66
+ description_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
67
+ description_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
68
68
  choice_show=dict(client=["client_data"]),
69
69
  test_true={"server":"server",
70
70
  "client":"client",
71
71
  "current":"current"}),
72
72
  dict(opt="client_data", type=Options.T_STR, default=None, required=False, multi=False, hide=False, choice=None,
73
- discription_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
74
- discription_en="Specify the path of the data folder when local is referenced.",
73
+ description_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
74
+ description_en="Specify the path of the data folder when local is referenced.",
75
75
  test_true={"server":None,
76
76
  "client":common.HOME_DIR / f".{self.ver.__appid__}",
77
77
  "current":None}),
78
78
  dict(opt="retry_count", type=Options.T_INT, default=3, required=False, multi=False, hide=True, choice=None,
79
- discription_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
80
- discription_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
79
+ description_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
80
+ description_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
81
81
  dict(opt="retry_interval", type=Options.T_INT, default=5, required=False, multi=False, hide=True, choice=None,
82
- discription_ja="Redisサーバーに再接続までの秒数を指定します。",
83
- discription_en="Specifies the number of seconds before reconnecting to the Redis server."),
82
+ description_ja="Redisサーバーに再接続までの秒数を指定します。",
83
+ description_en="Specifies the number of seconds before reconnecting to the Redis server."),
84
84
  dict(opt="timeout", type=Options.T_INT, default="15", required=False, multi=False, hide=True, choice=None,
85
- discription_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
86
- discription_en="Specify the maximum waiting time until the server responds."),
85
+ description_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
86
+ description_en="Specify the maximum waiting time until the server responds."),
87
87
  dict(opt="output_json", short="o", type=Options.T_FILE, default=None, required=False, multi=False, hide=True, choice=None, fileio="out",
88
- discription_ja="処理結果jsonの保存先ファイルを指定。",
89
- discription_en="Specify the destination file for saving the processing result json."),
88
+ description_ja="処理結果jsonの保存先ファイルを指定。",
89
+ description_en="Specify the destination file for saving the processing result json."),
90
90
  dict(opt="output_json_append", short="a", type=Options.T_BOOL, default=False, required=False, multi=False, hide=True, choice=[True, False],
91
- discription_ja="処理結果jsonファイルを追記保存します。",
92
- discription_en="Save the processing result json file by appending."),
91
+ description_ja="処理結果jsonファイルを追記保存します。",
92
+ description_en="Save the processing result json file by appending."),
93
93
  dict(opt="stdout_log", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
94
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
95
- discription_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
94
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
95
+ description_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
96
96
  dict(opt="capture_stdout", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
97
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
98
- discription_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
97
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
98
+ description_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
99
99
  dict(opt="capture_maxsize", type=Options.T_INT, default=self.DEFAULT_CAPTURE_MAXSIZE, required=False, multi=False, hide=True, choice=None,
100
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
101
- discription_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
100
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
101
+ description_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
102
102
  ]
103
103
  )
104
104
 
@@ -35,64 +35,64 @@ class ClientFileRemove(feature.UnsupportEdgeFeature):
35
35
  """
36
36
  return dict(
37
37
  use_redis=self.USE_REDIS_MEIGHT, nouse_webmode=False,
38
- discription_ja="データフォルダ配下のファイルを削除します。",
39
- discription_en="Delete a file under the data folder.",
38
+ description_ja="データフォルダ配下のファイルを削除します。",
39
+ description_en="Delete a file under the data folder.",
40
40
  choice=[
41
41
  dict(opt="host", type=Options.T_STR, default=self.default_host, required=True, multi=False, hide=True, choice=None, web="mask",
42
- discription_ja="Redisサーバーのサービスホストを指定します。",
43
- discription_en="Specify the service host of the Redis server."),
42
+ description_ja="Redisサーバーのサービスホストを指定します。",
43
+ description_en="Specify the service host of the Redis server."),
44
44
  dict(opt="port", type=Options.T_INT, default=self.default_port, required=True, multi=False, hide=True, choice=None, web="mask",
45
- discription_ja="Redisサーバーのサービスポートを指定します。",
46
- discription_en="Specify the service port of the Redis server."),
45
+ description_ja="Redisサーバーのサービスポートを指定します。",
46
+ description_en="Specify the service port of the Redis server."),
47
47
  dict(opt="password", type=Options.T_STR, default=self.default_pass, required=True, multi=False, hide=True, choice=None, web="mask",
48
- discription_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
- discription_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
48
+ description_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
+ description_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
50
50
  dict(opt="svname", type=Options.T_STR, default=self.default_svname, required=True, multi=False, hide=True, choice=None, web="readonly",
51
- discription_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
- discription_en="Specify the service name of the inference server. If omitted, `server` is used."),
51
+ description_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
+ description_en="Specify the service name of the inference server. If omitted, `server` is used."),
53
53
  dict(opt="svpath", type=Options.T_STR, default="/", required=True, multi=False, hide=False, choice=None,
54
- discription_ja="サーバーのデータフォルダ以下のパスを指定します。",
55
- discription_en="Specify the directory path to get the list of files.",
54
+ description_ja="サーバーのデータフォルダ以下のパスを指定します。",
55
+ description_en="Specify the directory path to get the list of files.",
56
56
  test_true={"server":"/file_server/upload/dog.jpg",
57
57
  "client":"/file_client/upload/dog.jpg",
58
58
  "current":"/file_current/upload/dog.jpg"}),
59
59
  dict(opt="scope", type=Options.T_STR, default="client", required=True, multi=False, hide=False, choice=["client", "current", "server"],
60
- discription_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
- discription_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
60
+ description_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
+ description_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
62
62
  choice_show=dict(client=["client_data"]),
63
63
  test_true={"server":"server",
64
64
  "client":"client",
65
65
  "current":"current"}),
66
66
  dict(opt="client_data", type=Options.T_STR, default=None, required=False, multi=False, hide=False, choice=None,
67
- discription_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
68
- discription_en="Specify the path of the data folder when local is referenced.",
67
+ description_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
68
+ description_en="Specify the path of the data folder when local is referenced.",
69
69
  test_true={"server":None,
70
70
  "client":common.HOME_DIR / f".{self.ver.__appid__}",
71
71
  "current":None}),
72
72
  dict(opt="retry_count", type=Options.T_INT, default=3, required=False, multi=False, hide=True, choice=None,
73
- discription_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
74
- discription_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
73
+ description_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
74
+ description_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
75
75
  dict(opt="retry_interval", type=Options.T_INT, default=5, required=False, multi=False, hide=True, choice=None,
76
- discription_ja="Redisサーバーに再接続までの秒数を指定します。",
77
- discription_en="Specifies the number of seconds before reconnecting to the Redis server."),
76
+ description_ja="Redisサーバーに再接続までの秒数を指定します。",
77
+ description_en="Specifies the number of seconds before reconnecting to the Redis server."),
78
78
  dict(opt="timeout", type=Options.T_INT, default="15", required=False, multi=False, hide=True, choice=None,
79
- discription_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
80
- discription_en="Specify the maximum waiting time until the server responds."),
79
+ description_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
80
+ description_en="Specify the maximum waiting time until the server responds."),
81
81
  dict(opt="output_json", short="o", type=Options.T_FILE, default=None, required=False, multi=False, hide=True, choice=None, fileio="out",
82
- discription_ja="処理結果jsonの保存先ファイルを指定。",
83
- discription_en="Specify the destination file for saving the processing result json."),
82
+ description_ja="処理結果jsonの保存先ファイルを指定。",
83
+ description_en="Specify the destination file for saving the processing result json."),
84
84
  dict(opt="output_json_append", short="a", type=Options.T_BOOL, default=False, required=False, multi=False, hide=True, choice=[True, False],
85
- discription_ja="処理結果jsonファイルを追記保存します。",
86
- discription_en="Save the processing result json file by appending."),
85
+ description_ja="処理結果jsonファイルを追記保存します。",
86
+ description_en="Save the processing result json file by appending."),
87
87
  dict(opt="stdout_log", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
88
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
89
- discription_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
88
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
89
+ description_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
90
90
  dict(opt="capture_stdout", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
91
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
92
- discription_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
91
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
92
+ description_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
93
93
  dict(opt="capture_maxsize", type=Options.T_INT, default=self.DEFAULT_CAPTURE_MAXSIZE, required=False, multi=False, hide=True, choice=None,
94
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
95
- discription_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
94
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
95
+ description_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
96
96
  ]
97
97
  )
98
98
 
@@ -35,64 +35,64 @@ class ClientFileRmdir(feature.UnsupportEdgeFeature):
35
35
  """
36
36
  return dict(
37
37
  use_redis=self.USE_REDIS_MEIGHT, nouse_webmode=False,
38
- discription_ja="データフォルダ配下のフォルダを削除します。",
39
- discription_en="Delete a folder under the data folder.",
38
+ description_ja="データフォルダ配下のフォルダを削除します。",
39
+ description_en="Delete a folder under the data folder.",
40
40
  choice=[
41
41
  dict(opt="host", type=Options.T_STR, default=self.default_host, required=True, multi=False, hide=True, choice=None, web="mask",
42
- discription_ja="Redisサーバーのサービスホストを指定します。",
43
- discription_en="Specify the service host of the Redis server."),
42
+ description_ja="Redisサーバーのサービスホストを指定します。",
43
+ description_en="Specify the service host of the Redis server."),
44
44
  dict(opt="port", type=Options.T_INT, default=self.default_port, required=True, multi=False, hide=True, choice=None, web="mask",
45
- discription_ja="Redisサーバーのサービスポートを指定します。",
46
- discription_en="Specify the service port of the Redis server."),
45
+ description_ja="Redisサーバーのサービスポートを指定します。",
46
+ description_en="Specify the service port of the Redis server."),
47
47
  dict(opt="password", type=Options.T_STR, default=self.default_pass, required=True, multi=False, hide=True, choice=None, web="mask",
48
- discription_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
- discription_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
48
+ description_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
+ description_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
50
50
  dict(opt="svname", type=Options.T_STR, default=self.default_svname, required=True, multi=False, hide=True, choice=None, web="readonly",
51
- discription_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
- discription_en="Specify the service name of the inference server. If omitted, `server` is used."),
51
+ description_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
+ description_en="Specify the service name of the inference server. If omitted, `server` is used."),
53
53
  dict(opt="svpath", type=Options.T_STR, default="/", required=True, multi=False, hide=False, choice=None,
54
- discription_ja="サーバーのデータフォルダ以下のパスを指定します。",
55
- discription_en="Specify the directory path to get the list of files.",
54
+ description_ja="サーバーのデータフォルダ以下のパスを指定します。",
55
+ description_en="Specify the directory path to get the list of files.",
56
56
  test_true={"server":"/file_server",
57
57
  "client":"/file_client",
58
58
  "current":"/file_current"}),
59
59
  dict(opt="scope", type=Options.T_STR, default="client", required=True, multi=False, hide=False, choice=["client", "current", "server"],
60
- discription_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
- discription_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
60
+ description_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
+ description_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
62
62
  choice_show=dict(client=["client_data"]),
63
63
  test_true={"server":"server",
64
64
  "client":"client",
65
65
  "current":"current"}),
66
66
  dict(opt="client_data", type=Options.T_STR, default=None, required=False, multi=False, hide=False, choice=None,
67
- discription_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
68
- discription_en="Specify the path of the data folder when local is referenced.",
67
+ description_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
68
+ description_en="Specify the path of the data folder when local is referenced.",
69
69
  test_true={"server":None,
70
70
  "client":common.HOME_DIR / f".{self.ver.__appid__}",
71
71
  "current":None}),
72
72
  dict(opt="retry_count", type=Options.T_INT, default=3, required=False, multi=False, hide=True, choice=None,
73
- discription_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
74
- discription_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
73
+ description_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
74
+ description_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
75
75
  dict(opt="retry_interval", type=Options.T_INT, default=5, required=False, multi=False, hide=True, choice=None,
76
- discription_ja="Redisサーバーに再接続までの秒数を指定します。",
77
- discription_en="Specifies the number of seconds before reconnecting to the Redis server."),
76
+ description_ja="Redisサーバーに再接続までの秒数を指定します。",
77
+ description_en="Specifies the number of seconds before reconnecting to the Redis server."),
78
78
  dict(opt="timeout", type=Options.T_INT, default="15", required=False, multi=False, hide=True, choice=None,
79
- discription_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
80
- discription_en="Specify the maximum waiting time until the server responds."),
79
+ description_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
80
+ description_en="Specify the maximum waiting time until the server responds."),
81
81
  dict(opt="output_json", short="o", type=Options.T_FILE, default=None, required=False, multi=False, hide=True, choice=None, fileio="out",
82
- discription_ja="処理結果jsonの保存先ファイルを指定。",
83
- discription_en="Specify the destination file for saving the processing result json."),
82
+ description_ja="処理結果jsonの保存先ファイルを指定。",
83
+ description_en="Specify the destination file for saving the processing result json."),
84
84
  dict(opt="output_json_append", short="a", type=Options.T_BOOL, default=False, required=False, multi=False, hide=True, choice=[True, False],
85
- discription_ja="処理結果jsonファイルを追記保存します。",
86
- discription_en="Save the processing result json file by appending."),
85
+ description_ja="処理結果jsonファイルを追記保存します。",
86
+ description_en="Save the processing result json file by appending."),
87
87
  dict(opt="stdout_log", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
88
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
89
- discription_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
88
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
89
+ description_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
90
90
  dict(opt="capture_stdout", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
91
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
92
- discription_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
91
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
92
+ description_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
93
93
  dict(opt="capture_maxsize", type=Options.T_INT, default=self.DEFAULT_CAPTURE_MAXSIZE, required=False, multi=False, hide=True, choice=None,
94
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
95
- discription_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
94
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
95
+ description_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
96
96
  ]
97
97
  )
98
98
 
@@ -35,75 +35,75 @@ class ClientFileUpload(feature.UnsupportEdgeFeature):
35
35
  """
36
36
  return dict(
37
37
  use_redis=self.USE_REDIS_MEIGHT, nouse_webmode=False,
38
- discription_ja="データフォルダ配下にファイルをアップロードします。",
39
- discription_en="Upload a file under the data folder.",
38
+ description_ja="データフォルダ配下にファイルをアップロードします。",
39
+ description_en="Upload a file under the data folder.",
40
40
  choice=[
41
41
  dict(opt="host", type=Options.T_STR, default=self.default_host, required=True, multi=False, hide=True, choice=None, web="mask",
42
- discription_ja="Redisサーバーのサービスホストを指定します。",
43
- discription_en="Specify the service host of the Redis server."),
42
+ description_ja="Redisサーバーのサービスホストを指定します。",
43
+ description_en="Specify the service host of the Redis server."),
44
44
  dict(opt="port", type=Options.T_INT, default=self.default_port, required=True, multi=False, hide=True, choice=None, web="mask",
45
- discription_ja="Redisサーバーのサービスポートを指定します。",
46
- discription_en="Specify the service port of the Redis server."),
45
+ description_ja="Redisサーバーのサービスポートを指定します。",
46
+ description_en="Specify the service port of the Redis server."),
47
47
  dict(opt="password", type=Options.T_STR, default=self.default_pass, required=True, multi=False, hide=True, choice=None, web="mask",
48
- discription_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
- discription_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
48
+ description_ja="Redisサーバーのアクセスパスワード(任意)を指定します。省略時は `password` を使用します。",
49
+ description_en="Specify the access password of the Redis server (optional). If omitted, `password` is used."),
50
50
  dict(opt="svname", type=Options.T_STR, default=self.default_svname, required=True, multi=False, hide=True, choice=None, web="readonly",
51
- discription_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
- discription_en="Specify the service name of the inference server. If omitted, `server` is used."),
51
+ description_ja="サーバーのサービス名を指定します。省略時は `server` を使用します。",
52
+ description_en="Specify the service name of the inference server. If omitted, `server` is used."),
53
53
  dict(opt="svpath", type=Options.T_STR, default="/", required=True, multi=False, hide=False, choice=None,
54
- discription_ja="サーバーのデータフォルダ以下のパスを指定します。",
55
- discription_en="Specify the directory path to get the list of files.",
54
+ description_ja="サーバーのデータフォルダ以下のパスを指定します。",
55
+ description_en="Specify the directory path to get the list of files.",
56
56
  test_true={"server":"/file_server/upload",
57
57
  "client":"/file_client/upload",
58
58
  "current":"/file_current/upload"}),
59
59
  dict(opt="scope", type=Options.T_STR, default="client", required=True, multi=False, hide=False, choice=["client", "current", "server"],
60
- discription_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
- discription_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
60
+ description_ja="参照先スコープを指定します。指定可能な画像タイプは `client` , `current` , `server` です。",
61
+ description_en="Specifies the scope to be referenced. When omitted, 'client' is used.",
62
62
  choice_show=dict(client=["client_data"]),
63
63
  test_true={"server":"server",
64
64
  "client":"client",
65
65
  "current":"current"}),
66
66
  dict(opt="upload_file", type=Options.T_FILE, default=None, required=False, multi=False, hide=False, choice=None, fileio="out",
67
- discription_ja="クライアントのアップロード元パスを指定します。",
68
- discription_en="Specify the source path of the client.",
67
+ description_ja="クライアントのアップロード元パスを指定します。",
68
+ description_en="Specify the source path of the client.",
69
69
  test_true={"server":"tests/dog.jpg"}),
70
70
  dict(opt="client_data", type=Options.T_STR, default=None, required=False, multi=False, hide=False, choice=None,
71
- discription_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
72
- discription_en="Specify the path of the data folder when local is referenced.",
71
+ description_ja="ローカルを参照させる場合のデータフォルダのパスを指定します。",
72
+ description_en="Specify the path of the data folder when local is referenced.",
73
73
  test_true={"server":None,
74
74
  "client":common.HOME_DIR / f".{self.ver.__appid__}",
75
75
  "current":None}),
76
76
  dict(opt="mkdir", type=Options.T_BOOL, default=False, required=False, multi=False, hide=True, choice=[True, False],
77
- discription_ja="中間フォルダがない場合作成します。",
78
- discription_en="If there is no in between folder, create one.",
77
+ description_ja="中間フォルダがない場合作成します。",
78
+ description_en="If there is no in between folder, create one.",
79
79
  test_true={"server":True}),
80
80
  dict(opt="orverwrite", type=Options.T_BOOL, default=False, required=False, multi=False, hide=True, choice=[True, False],
81
- discription_ja="アップロード先に存在していても上書きします。",
82
- discription_en="Overwrites the file even if it exists at the upload destination."),
81
+ description_ja="アップロード先に存在していても上書きします。",
82
+ description_en="Overwrites the file even if it exists at the upload destination."),
83
83
  dict(opt="retry_count", type=Options.T_INT, default=3, required=False, multi=False, hide=True, choice=None,
84
- discription_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
85
- discription_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
84
+ description_ja="Redisサーバーへの再接続回数を指定します。0以下を指定すると永遠に再接続を行います。",
85
+ description_en="Specifies the number of reconnections to the Redis server.If less than 0 is specified, reconnection is forever."),
86
86
  dict(opt="retry_interval", type=Options.T_INT, default=5, required=False, multi=False, hide=True, choice=None,
87
- discription_ja="Redisサーバーに再接続までの秒数を指定します。",
88
- discription_en="Specifies the number of seconds before reconnecting to the Redis server."),
87
+ description_ja="Redisサーバーに再接続までの秒数を指定します。",
88
+ description_en="Specifies the number of seconds before reconnecting to the Redis server."),
89
89
  dict(opt="timeout", type=Options.T_INT, default="15", required=False, multi=False, hide=True, choice=None,
90
- discription_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
91
- discription_en="Specify the maximum waiting time until the server responds."),
90
+ description_ja="サーバーの応答が返ってくるまでの最大待ち時間を指定。",
91
+ description_en="Specify the maximum waiting time until the server responds."),
92
92
  dict(opt="output_json", short="o", type=Options.T_FILE, default=None, required=False, multi=False, hide=True, choice=None, fileio="out",
93
- discription_ja="処理結果jsonの保存先ファイルを指定。",
94
- discription_en="Specify the destination file for saving the processing result json."),
93
+ description_ja="処理結果jsonの保存先ファイルを指定。",
94
+ description_en="Specify the destination file for saving the processing result json."),
95
95
  dict(opt="output_json_append", short="a", type=Options.T_BOOL, default=False, required=False, multi=False, hide=True, choice=[True, False],
96
- discription_ja="処理結果jsonファイルを追記保存します。",
97
- discription_en="Save the processing result json file by appending."),
96
+ description_ja="処理結果jsonファイルを追記保存します。",
97
+ description_en="Save the processing result json file by appending."),
98
98
  dict(opt="stdout_log", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
99
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
100
- discription_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
99
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をConsole logに出力します。",
100
+ description_en="Available only in GUI mode. Outputs standard output during command execution to Console log."),
101
101
  dict(opt="capture_stdout", type=Options.T_BOOL, default=True, required=False, multi=False, hide=True, choice=[True, False],
102
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
103
- discription_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
102
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力をキャプチャーし、実行結果画面に表示します。",
103
+ description_en="Available only in GUI mode. Captures standard output during command execution and displays it on the execution result screen."),
104
104
  dict(opt="capture_maxsize", type=Options.T_INT, default=self.DEFAULT_CAPTURE_MAXSIZE, required=False, multi=False, hide=True, choice=None,
105
- discription_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
106
- discription_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
105
+ description_ja="GUIモードでのみ使用可能です。コマンド実行時の標準出力の最大キャプチャーサイズを指定します。",
106
+ description_en="Available only in GUI mode. Specifies the maximum capture size of standard output when executing commands."),
107
107
  ]
108
108
  )
109
109