pywebexec 1.1.17__tar.gz → 1.1.18__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.17/pywebexec.egg-info → pywebexec-1.1.18}/PKG-INFO +1 -1
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/css/style.css +2 -1
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/js/script.js +1 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/version.py +2 -2
- {pywebexec-1.1.17 → pywebexec-1.1.18/pywebexec.egg-info}/PKG-INFO +1 -1
- {pywebexec-1.1.17 → pywebexec-1.1.18}/.github/workflows/python-publish.yml +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/.gitignore +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/LICENSE +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/README.md +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pyproject.toml +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/__init__.py +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/pywebexec.py +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/images/aborted.svg +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/images/copy.svg +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/images/copy_ok.svg +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/images/failed.svg +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/images/favicon.svg +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/images/running.gif +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/static/images/success.svg +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/templates/__init__.py +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec/templates/index.html +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec.egg-info/SOURCES.txt +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec.egg-info/dependency_links.txt +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec.egg-info/entry_points.txt +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec.egg-info/requires.txt +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/pywebexec.egg-info/top_level.txt +0 -0
- {pywebexec-1.1.17 → pywebexec-1.1.18}/setup.cfg +0 -0
@@ -74,7 +74,8 @@ form {
|
|
74
74
|
.title-icon {
|
75
75
|
width: 30px;
|
76
76
|
height: 30px;
|
77
|
-
background-image: url("/static/images/favicon.svg")
|
77
|
+
background-image: url("/static/images/favicon.svg");
|
78
|
+
vertical-align: bottom;
|
78
79
|
}
|
79
80
|
.status-running {
|
80
81
|
background-image: url("/static/images/running.gif")
|
@@ -17,6 +17,7 @@ document.getElementById('launchForm').addEventListener('submit', async (event) =
|
|
17
17
|
throw new Error('Failed to launch command');
|
18
18
|
}
|
19
19
|
const data = await response.json();
|
20
|
+
await new Promise(r => setTimeout(r, 200));
|
20
21
|
fetchCommands();
|
21
22
|
viewOutput(data.command_id);
|
22
23
|
} catch (error) {
|
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
|
File without changes
|