pywebexec 1.1.6__tar.gz → 1.1.7__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.6/pywebexec.egg-info → pywebexec-1.1.7}/PKG-INFO +2 -2
- {pywebexec-1.1.6 → pywebexec-1.1.7}/README.md +1 -1
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/css/style.css +9 -3
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/templates/index.html +1 -1
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/version.py +2 -2
- {pywebexec-1.1.6 → pywebexec-1.1.7/pywebexec.egg-info}/PKG-INFO +2 -2
- {pywebexec-1.1.6 → pywebexec-1.1.7}/.github/workflows/python-publish.yml +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/.gitignore +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/LICENSE +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pyproject.toml +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/__init__.py +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/pywebexec.py +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/images/aborted.svg +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/images/copy.svg +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/images/copy_ok.svg +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/images/failed.svg +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/images/favicon.svg +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/images/running.gif +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/images/success.svg +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/static/js/script.js +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec/templates/__init__.py +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec.egg-info/SOURCES.txt +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec.egg-info/dependency_links.txt +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec.egg-info/entry_points.txt +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec.egg-info/requires.txt +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/pywebexec.egg-info/top_level.txt +0 -0
- {pywebexec-1.1.6 → pywebexec-1.1.7}/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.7
|
|
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
|
|
|
@@ -7,6 +7,7 @@ body {
|
|
|
7
7
|
position: relative;
|
|
8
8
|
border-radius: 10px;
|
|
9
9
|
border: 1px solid #aaa;
|
|
10
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.30);
|
|
10
11
|
}
|
|
11
12
|
table {
|
|
12
13
|
width: 100%;
|
|
@@ -19,7 +20,8 @@ th, td {
|
|
|
19
20
|
white-space: nowrap;
|
|
20
21
|
}
|
|
21
22
|
th {
|
|
22
|
-
background-color: #
|
|
23
|
+
background-color: #444;
|
|
24
|
+
color: #eee;
|
|
23
25
|
position: sticky;
|
|
24
26
|
top: 0;
|
|
25
27
|
z-index: 1;
|
|
@@ -49,7 +51,6 @@ button {
|
|
|
49
51
|
-webkit-border-radius: none;
|
|
50
52
|
appearance: none;
|
|
51
53
|
border-radius: 15px;
|
|
52
|
-
padding: 3px;
|
|
53
54
|
padding-right: 13px;
|
|
54
55
|
border: 1px #555 solid;
|
|
55
56
|
height: 22px;
|
|
@@ -70,6 +71,11 @@ form {
|
|
|
70
71
|
background-repeat: no-repeat;
|
|
71
72
|
vertical-align: middle;
|
|
72
73
|
}
|
|
74
|
+
.title-icon {
|
|
75
|
+
width: 30px;
|
|
76
|
+
height: 30px;
|
|
77
|
+
background-image: url("/static/images/favicon.svg")
|
|
78
|
+
}
|
|
73
79
|
.status-running {
|
|
74
80
|
background-image: url("/static/images/running.gif")
|
|
75
81
|
}
|
|
@@ -108,7 +114,7 @@ input {
|
|
|
108
114
|
height: 15px;
|
|
109
115
|
font-size: 15px;
|
|
110
116
|
outline: none;
|
|
111
|
-
text-indent:
|
|
117
|
+
text-indent: 5px;
|
|
112
118
|
background-color: white;
|
|
113
119
|
}
|
|
114
120
|
.currentcommand {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
|
-
<h2>{{ title }}</h2>
|
|
10
|
+
<h2><span class="status-icon title-icon"></span>{{ title }}</h2>
|
|
11
11
|
<form id="launchForm">
|
|
12
12
|
<label for="commandName">Command</label>
|
|
13
13
|
<select id="commandName" name="commandName"></select>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: pywebexec
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.7
|
|
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
|