pywebexec 1.1.14__tar.gz → 1.1.16__tar.gz
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-1.1.14/pywebexec.egg-info → pywebexec-1.1.16}/PKG-INFO +2 -2
- {pywebexec-1.1.14 → pywebexec-1.1.16}/README.md +1 -1
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/js/script.js +3 -3
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/version.py +2 -2
- {pywebexec-1.1.14 → pywebexec-1.1.16/pywebexec.egg-info}/PKG-INFO +2 -2
- {pywebexec-1.1.14 → pywebexec-1.1.16}/.github/workflows/python-publish.yml +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/.gitignore +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/LICENSE +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pyproject.toml +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/__init__.py +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/pywebexec.py +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/css/style.css +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/images/aborted.svg +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/images/copy.svg +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/images/copy_ok.svg +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/images/failed.svg +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/images/favicon.svg +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/images/running.gif +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/static/images/success.svg +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/templates/__init__.py +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec/templates/index.html +2 -2
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec.egg-info/SOURCES.txt +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec.egg-info/dependency_links.txt +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec.egg-info/entry_points.txt +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec.egg-info/requires.txt +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/pywebexec.egg-info/top_level.txt +0 -0
- {pywebexec-1.1.14 → pywebexec-1.1.16}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: pywebexec
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.16
|
4
4
|
Summary: Simple Python HTTP Exec Server
|
5
5
|
Home-page: https://github.com/joknarf/pywebexec
|
6
6
|
Author: Franck Jouvanceau
|
@@ -83,7 +83,7 @@ $ pywebexec
|
|
83
83
|
```
|
84
84
|
|
85
85
|
* Launch commands with params/view live output/Status using browser
|
86
|
-

|
87
87
|
|
88
88
|
all commands output / statuses are available in the executables directory in subdirectory `.web_status`
|
89
89
|
|
@@ -21,7 +21,7 @@ $ pywebexec
|
|
21
21
|
```
|
22
22
|
|
23
23
|
* Launch commands with params/view live output/Status using browser
|
24
|
-

|
25
25
|
|
26
26
|
all commands output / statuses are available in the executables directory in subdirectory `.web_status`
|
27
27
|
|
@@ -45,13 +45,13 @@ async function fetchCommands() {
|
|
45
45
|
commandRow.onclick = () => viewOutput(command.command_id);
|
46
46
|
commandRow.innerHTML = `
|
47
47
|
<td class="monospace">
|
48
|
-
${navigator.clipboard == undefined ? `${command.command_id}` : `<span class="copy_clip" onclick="copyToClipboard('${command.command_id
|
48
|
+
${navigator.clipboard == undefined ? `${command.command_id.slice(0, 8)}` : `<span class="copy_clip" onclick="copyToClipboard('${command.command_id}', this, event)">${command.command_id.slice(0, 8)}</span>`}
|
49
49
|
</td>
|
50
|
-
<td><span class="status-icon status-${command.status}"></span>${command.status}</td>
|
51
50
|
<td>${formatTime(command.start_time)}</td>
|
52
51
|
<td>${command.status === 'running' ? formatDuration(command.start_time, new Date().toISOString()) : formatDuration(command.start_time, command.end_time)}</td>
|
53
|
-
<td>${command.exit_code}</td>
|
54
52
|
<td>${command.command.replace(/^\.\//, '')}</td>
|
53
|
+
<td>${command.exit_code}</td>
|
54
|
+
<td><span class="status-icon status-${command.status}"></span>${command.status}</td>
|
55
55
|
<td>
|
56
56
|
${command.status === 'running' ? `<button onclick="stopCommand('${command.command_id}')">Stop</button>` : `<button onclick="relaunchCommand('${command.command_id}')">Run</button>`}
|
57
57
|
</td>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: pywebexec
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.16
|
4
4
|
Summary: Simple Python HTTP Exec Server
|
5
5
|
Home-page: https://github.com/joknarf/pywebexec
|
6
6
|
Author: Franck Jouvanceau
|
@@ -83,7 +83,7 @@ $ pywebexec
|
|
83
83
|
```
|
84
84
|
|
85
85
|
* Launch commands with params/view live output/Status using browser
|
86
|
-

|
87
87
|
|
88
88
|
all commands output / statuses are available in the executables directory in subdirectory `.web_status`
|
89
89
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|