pywebexec 1.4.2__py3-none-any.whl → 1.4.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.
- pywebexec/pywebexec.py +18 -20
- pywebexec/static/js/commands.js +11 -5
- pywebexec/version.py +2 -2
- {pywebexec-1.4.2.dist-info → pywebexec-1.4.4.dist-info}/METADATA +1 -1
- {pywebexec-1.4.2.dist-info → pywebexec-1.4.4.dist-info}/RECORD +9 -9
- {pywebexec-1.4.2.dist-info → pywebexec-1.4.4.dist-info}/LICENSE +0 -0
- {pywebexec-1.4.2.dist-info → pywebexec-1.4.4.dist-info}/WHEEL +0 -0
- {pywebexec-1.4.2.dist-info → pywebexec-1.4.4.dist-info}/entry_points.txt +0 -0
- {pywebexec-1.4.2.dist-info → pywebexec-1.4.4.dist-info}/top_level.txt +0 -0
pywebexec/pywebexec.py
CHANGED
@@ -454,27 +454,25 @@ def run_command(command, params, command_id, user):
|
|
454
454
|
update_command_status(command_id, 'running', command=command, params=params, start_time=start_time, user=user)
|
455
455
|
output_file_path = get_output_file_path(command_id)
|
456
456
|
try:
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
457
|
+
with open(output_file_path, 'wb') as fd:
|
458
|
+
p = pexpect.spawn(command, params, ignore_sighup=True, timeout=None)
|
459
|
+
update_command_status(command_id, 'running', pid=p.pid, user=user)
|
460
|
+
p.setwinsize(24, 125)
|
461
|
+
p.logfile = fd
|
462
|
+
p.expect(pexpect.EOF)
|
463
|
+
fd.flush()
|
464
|
+
status = p.wait()
|
465
|
+
end_time = datetime.now().isoformat()
|
466
|
+
# Update the status based on the result
|
467
|
+
if status is None:
|
468
|
+
exit_code = -15
|
469
|
+
update_command_status(command_id, 'aborted', end_time=end_time, exit_code=exit_code, user=user)
|
470
|
+
else:
|
471
|
+
exit_code = status
|
472
|
+
if exit_code == 0:
|
473
|
+
update_command_status(command_id, 'success', end_time=end_time, exit_code=exit_code, user=user)
|
471
474
|
else:
|
472
|
-
exit_code =
|
473
|
-
if exit_code == 0:
|
474
|
-
update_command_status(command_id, 'success', end_time=end_time, exit_code=exit_code, user=user)
|
475
|
-
else:
|
476
|
-
update_command_status(command_id, 'failed', end_time=end_time, exit_code=exit_code, user=user)
|
477
|
-
spawn_tty()
|
475
|
+
update_command_status(command_id, 'failed', end_time=end_time, exit_code=exit_code, user=user)
|
478
476
|
except Exception as e:
|
479
477
|
end_time = datetime.now().isoformat()
|
480
478
|
update_command_status(command_id, 'failed', end_time=end_time, exit_code=1, user=user)
|
pywebexec/static/js/commands.js
CHANGED
@@ -25,7 +25,7 @@ function filterCommands() {
|
|
25
25
|
options[i].style.display = 'none';
|
26
26
|
}
|
27
27
|
}
|
28
|
-
if (nbVisibleItems>1) {
|
28
|
+
if (nbVisibleItems > 1) {
|
29
29
|
commandListSelect.size = Math.min(20, nbVisibleItems);
|
30
30
|
commandListSelect.style.display = 'block';
|
31
31
|
} else {
|
@@ -90,9 +90,11 @@ commandInput.addEventListener('keydown', (event) => {
|
|
90
90
|
} else if (event.key === 'ArrowDown') {
|
91
91
|
/*setCommandListPosition();*/
|
92
92
|
unfilterCommands();
|
93
|
-
commandListSelect.
|
94
|
-
|
95
|
-
|
93
|
+
if (commandListSelect.options.length > 1) {
|
94
|
+
commandListSelect.style.display = 'block';
|
95
|
+
commandListSelect.focus();
|
96
|
+
commandListSelect.selectedIndex = 0;
|
97
|
+
}
|
96
98
|
event.preventDefault();
|
97
99
|
}
|
98
100
|
});
|
@@ -161,11 +163,11 @@ commandInput.addEventListener('blur', (event) => {
|
|
161
163
|
showCommandListButton.addEventListener('click', (event) => {
|
162
164
|
event.preventDefault();
|
163
165
|
setCommandListPosition();
|
166
|
+
unfilterCommands();
|
164
167
|
if (commandListSelect.style.display == 'none')
|
165
168
|
commandListSelect.style.display = 'block';
|
166
169
|
else
|
167
170
|
commandListSelect.style.display = 'none';
|
168
|
-
unfilterCommands();
|
169
171
|
});
|
170
172
|
|
171
173
|
window.addEventListener('click', (event) => {
|
@@ -211,6 +213,10 @@ async function fetchExecutables() {
|
|
211
213
|
alert("Failed to fetch executables");
|
212
214
|
}
|
213
215
|
commandListSelect.size = Math.min(20, commandListSelect.options.length);
|
216
|
+
if (commandListSelect.options.length == 1) {
|
217
|
+
commandInput.value = commandListSelect.options[0].text;
|
218
|
+
showCommandListButton.style.display = 'none';
|
219
|
+
}
|
214
220
|
if (commandListSelect.options.length == 0)
|
215
221
|
document.getElementById('launchForm').style.display = 'none';
|
216
222
|
|
pywebexec/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
pywebexec/__init__.py,sha256=4spIsVaF8RJt8S58AG_wWoORRNkws9Iwqprj27C3ljM,99
|
2
|
-
pywebexec/pywebexec.py,sha256=
|
3
|
-
pywebexec/version.py,sha256=
|
2
|
+
pywebexec/pywebexec.py,sha256=w5XUxh9rJqbVO4Um9fJb4DcBd-VoOGc6cNXBjPVPkm8,26003
|
3
|
+
pywebexec/version.py,sha256=xV-8Yj_iWn4cgetLWs0HBzWrymonMn9cAMsYPhJoE9k,411
|
4
4
|
pywebexec/static/css/Consolas NF.ttf,sha256=DJEOzF0eqZ-kxu3Gs_VE8X0NJqiobBzmxWDGpdgGRxI,1313900
|
5
5
|
pywebexec/static/css/style.css,sha256=b02WQoXwVm00JpedEslvCHjr35txo2Bfjz3Iboco9U8,5500
|
6
6
|
pywebexec/static/css/xterm.css,sha256=gy8_LGA7Q61DUf8ElwFQzHqHMBQnbbEmpgZcbdgeSHI,5383
|
@@ -12,7 +12,7 @@ pywebexec/static/images/failed.svg,sha256=ADZ7IKrUyOXtqpivnz3VcH0-Wru-I5MOi3OJAk
|
|
12
12
|
pywebexec/static/images/favicon.svg,sha256=ti80IfuDZwIvQcmJxkOeUaB1iMsiyOPmQmVO-h0y1IU,1126
|
13
13
|
pywebexec/static/images/running.gif,sha256=iYuzQGkMxrakSIwt6gPieKCImGZoSAHmU5MUNZa7cpw,25696
|
14
14
|
pywebexec/static/images/success.svg,sha256=PJDcCSTevJh7rkfSFLtc7P0pbeh8PVQBS8DaOLQemmc,489
|
15
|
-
pywebexec/static/js/commands.js,sha256=
|
15
|
+
pywebexec/static/js/commands.js,sha256=8JDb3Q55EJOYf2Q9Uy6qEuqAnn1oGjM0RndgQ4aOjqo,7725
|
16
16
|
pywebexec/static/js/script.js,sha256=_Z1P65x-s_heHMwXbVpPHJHqfQKcIZavVhRej6i3DIs,11570
|
17
17
|
pywebexec/static/js/xterm/LICENSE,sha256=EU1P4eXTull-_T9I80VuwnJXubB-zLzUl3xpEYj2T1M,1083
|
18
18
|
pywebexec/static/js/xterm/ansi_up.min.js,sha256=KNGV0vEr30hNqKQimTAvGVy-icD5A1JqMQTtvYtKR2Y,13203
|
@@ -20,9 +20,9 @@ pywebexec/static/js/xterm/xterm-addon-fit.js,sha256=Pprm9pZe4SadVXS5Bc8b9VnC9Ex4
|
|
20
20
|
pywebexec/static/js/xterm/xterm.js,sha256=Bzka76jZwEhVt_LlS0e0qMw7ryGa1p5qfxFyeohphBo,283371
|
21
21
|
pywebexec/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
pywebexec/templates/index.html,sha256=DYtT555wSNhnFtzzHhPMWJireynCJNnAuTytpoORQeE,2321
|
23
|
-
pywebexec-1.4.
|
24
|
-
pywebexec-1.4.
|
25
|
-
pywebexec-1.4.
|
26
|
-
pywebexec-1.4.
|
27
|
-
pywebexec-1.4.
|
28
|
-
pywebexec-1.4.
|
23
|
+
pywebexec-1.4.4.dist-info/LICENSE,sha256=gRJf0JPT_wsZJsUGlWPTS8Vypfl9vQ1qjp6sNbKykuA,1064
|
24
|
+
pywebexec-1.4.4.dist-info/METADATA,sha256=i4YUI4geBmEf-1CGE_YwcZzMIyF0CXZtIMZjHIbus3o,7399
|
25
|
+
pywebexec-1.4.4.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
26
|
+
pywebexec-1.4.4.dist-info/entry_points.txt,sha256=l52GBkPCXRkmlHfEyoVauyfBdg8o-CAtC8qQpOIjJK0,55
|
27
|
+
pywebexec-1.4.4.dist-info/top_level.txt,sha256=vHoHyzngrfGdm_nM7Xn_5iLmaCrf10XO1EhldgNLEQ8,10
|
28
|
+
pywebexec-1.4.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|