pywebexec 1.1.5__py3-none-any.whl → 1.1.7__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/static/css/style.css +33 -9
- pywebexec/static/images/running.gif +0 -0
- pywebexec/templates/index.html +1 -1
- pywebexec/version.py +2 -2
- {pywebexec-1.1.5.dist-info → pywebexec-1.1.7.dist-info}/METADATA +2 -2
- {pywebexec-1.1.5.dist-info → pywebexec-1.1.7.dist-info}/RECORD +10 -10
- pywebexec/static/images/running.svg +0 -1
- {pywebexec-1.1.5.dist-info → pywebexec-1.1.7.dist-info}/LICENSE +0 -0
- {pywebexec-1.1.5.dist-info → pywebexec-1.1.7.dist-info}/WHEEL +0 -0
- {pywebexec-1.1.5.dist-info → pywebexec-1.1.7.dist-info}/entry_points.txt +0 -0
- {pywebexec-1.1.5.dist-info → pywebexec-1.1.7.dist-info}/top_level.txt +0 -0
pywebexec/static/css/style.css
CHANGED
|
@@ -1,13 +1,31 @@
|
|
|
1
|
-
body {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
body {
|
|
2
|
+
font-family: Arial, sans-serif;
|
|
3
|
+
}
|
|
4
|
+
.table-container {
|
|
5
|
+
height: 270px;
|
|
6
|
+
overflow-y: auto;
|
|
7
|
+
position: relative;
|
|
8
|
+
border-radius: 10px;
|
|
9
|
+
border: 1px solid #aaa;
|
|
10
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.30);
|
|
11
|
+
}
|
|
12
|
+
table {
|
|
13
|
+
width: 100%;
|
|
14
|
+
border-collapse: collapse;
|
|
15
|
+
}
|
|
4
16
|
th, td {
|
|
5
17
|
padding: 8px;
|
|
6
18
|
text-align: left;
|
|
7
19
|
border-bottom: 1px solid #ddd;
|
|
8
20
|
white-space: nowrap;
|
|
9
21
|
}
|
|
10
|
-
th {
|
|
22
|
+
th {
|
|
23
|
+
background-color: #444;
|
|
24
|
+
color: #eee;
|
|
25
|
+
position: sticky;
|
|
26
|
+
top: 0;
|
|
27
|
+
z-index: 1;
|
|
28
|
+
}
|
|
11
29
|
.outcol {
|
|
12
30
|
width: 100%;
|
|
13
31
|
}
|
|
@@ -22,7 +40,7 @@ select { /* Safari bug */
|
|
|
22
40
|
padding: 10px;
|
|
23
41
|
border: 1px solid #ccc;
|
|
24
42
|
font-family: monospace;
|
|
25
|
-
border-radius:
|
|
43
|
+
border-radius: 10px;
|
|
26
44
|
overflow-y: auto;
|
|
27
45
|
}
|
|
28
46
|
.copy-icon { cursor: pointer; }
|
|
@@ -33,7 +51,6 @@ button {
|
|
|
33
51
|
-webkit-border-radius: none;
|
|
34
52
|
appearance: none;
|
|
35
53
|
border-radius: 15px;
|
|
36
|
-
padding: 3px;
|
|
37
54
|
padding-right: 13px;
|
|
38
55
|
border: 1px #555 solid;
|
|
39
56
|
height: 22px;
|
|
@@ -54,8 +71,13 @@ form {
|
|
|
54
71
|
background-repeat: no-repeat;
|
|
55
72
|
vertical-align: middle;
|
|
56
73
|
}
|
|
74
|
+
.title-icon {
|
|
75
|
+
width: 30px;
|
|
76
|
+
height: 30px;
|
|
77
|
+
background-image: url("/static/images/favicon.svg")
|
|
78
|
+
}
|
|
57
79
|
.status-running {
|
|
58
|
-
background-image: url("/static/images/running.
|
|
80
|
+
background-image: url("/static/images/running.gif")
|
|
59
81
|
}
|
|
60
82
|
.status-success {
|
|
61
83
|
background-image: url("/static/images/success.svg")
|
|
@@ -92,7 +114,7 @@ input {
|
|
|
92
114
|
height: 15px;
|
|
93
115
|
font-size: 15px;
|
|
94
116
|
outline: none;
|
|
95
|
-
text-indent:
|
|
117
|
+
text-indent: 5px;
|
|
96
118
|
background-color: white;
|
|
97
119
|
}
|
|
98
120
|
.currentcommand {
|
|
@@ -101,6 +123,7 @@ input {
|
|
|
101
123
|
.resizer {
|
|
102
124
|
width: 100%;
|
|
103
125
|
height: 5px;
|
|
126
|
+
border-radius: 5px;
|
|
104
127
|
background: #aaa;
|
|
105
128
|
cursor: ns-resize;
|
|
106
129
|
position: absolute;
|
|
@@ -110,7 +133,8 @@ input {
|
|
|
110
133
|
.resizer-container {
|
|
111
134
|
position: relative;
|
|
112
135
|
height: 5px;
|
|
113
|
-
margin
|
|
136
|
+
margin: 5px;
|
|
137
|
+
/*margin-bottom: 10px;*/
|
|
114
138
|
}
|
|
115
139
|
tr.clickable-row {
|
|
116
140
|
cursor: pointer;
|
|
Binary file
|
pywebexec/templates/index.html
CHANGED
|
@@ -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>
|
pywebexec/version.py
CHANGED
|
@@ -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
|
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
pywebexec/__init__.py,sha256=4spIsVaF8RJt8S58AG_wWoORRNkws9Iwqprj27C3ljM,99
|
|
2
2
|
pywebexec/pywebexec.py,sha256=yGx5OkTNFovjsludN5hdX43qoHb7W3FoxmDuJzlq2CU,21229
|
|
3
|
-
pywebexec/version.py,sha256=
|
|
4
|
-
pywebexec/static/css/style.css,sha256=
|
|
3
|
+
pywebexec/version.py,sha256=ob_T_OgPz6CVrt23qLmMWVP7iCzz-_1Y1nAwNnu1aVw,411
|
|
4
|
+
pywebexec/static/css/style.css,sha256=_WrN0deHXugf3xkOr2E2ptBzKYo9GoiaYJ4trzPn6ec,2902
|
|
5
5
|
pywebexec/static/images/aborted.svg,sha256=_mP43hU5QdRLFZIknBgjx-dIXrHgQG23-QV27ApXK2A,381
|
|
6
6
|
pywebexec/static/images/copy.svg,sha256=d9OwtGh5GzzZHzYcDrLfNxZYLth1Q64x7bRyYxu4Px0,622
|
|
7
7
|
pywebexec/static/images/copy_ok.svg,sha256=mEqUVUhSq8xaJK2msQkxRawnz_KwlCZ-tok8QS6hJ3g,451
|
|
8
8
|
pywebexec/static/images/failed.svg,sha256=ADZ7IKrUyOXtqpivnz3VcH0-Wru-I5MOi3OJAkI3hxk,1439
|
|
9
9
|
pywebexec/static/images/favicon.svg,sha256=ti80IfuDZwIvQcmJxkOeUaB1iMsiyOPmQmVO-h0y1IU,1126
|
|
10
|
-
pywebexec/static/images/running.
|
|
10
|
+
pywebexec/static/images/running.gif,sha256=iYuzQGkMxrakSIwt6gPieKCImGZoSAHmU5MUNZa7cpw,25696
|
|
11
11
|
pywebexec/static/images/success.svg,sha256=PJDcCSTevJh7rkfSFLtc7P0pbeh8PVQBS8DaOLQemmc,489
|
|
12
12
|
pywebexec/static/js/script.js,sha256=RrlozMlUx_7MJTf7IG98rzJsLgwEMyEV9bSW6QpQdZw,7088
|
|
13
13
|
pywebexec/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
pywebexec/templates/index.html,sha256=
|
|
15
|
-
pywebexec-1.1.
|
|
16
|
-
pywebexec-1.1.
|
|
17
|
-
pywebexec-1.1.
|
|
18
|
-
pywebexec-1.1.
|
|
19
|
-
pywebexec-1.1.
|
|
20
|
-
pywebexec-1.1.
|
|
14
|
+
pywebexec/templates/index.html,sha256=7dFHAmHXGMrK1-M6PIAbMS0bv7Pi5-6vDoyUk3irnQc,1346
|
|
15
|
+
pywebexec-1.1.7.dist-info/LICENSE,sha256=gRJf0JPT_wsZJsUGlWPTS8Vypfl9vQ1qjp6sNbKykuA,1064
|
|
16
|
+
pywebexec-1.1.7.dist-info/METADATA,sha256=7xSuhpJshzZHZnHGBDVXOvpUzRsoUpXB9gt-MbzmIbg,6770
|
|
17
|
+
pywebexec-1.1.7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
18
|
+
pywebexec-1.1.7.dist-info/entry_points.txt,sha256=l52GBkPCXRkmlHfEyoVauyfBdg8o-CAtC8qQpOIjJK0,55
|
|
19
|
+
pywebexec-1.1.7.dist-info/top_level.txt,sha256=vHoHyzngrfGdm_nM7Xn_5iLmaCrf10XO1EhldgNLEQ8,10
|
|
20
|
+
pywebexec-1.1.7.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M661.333333 170.666667l253.866667 34.133333-209.066667 209.066667zM362.666667 853.333333L108.8 819.2l209.066667-209.066667zM170.666667 362.666667L204.8 108.8l209.066667 209.066667z" fill="#4949d1"></path><path d="M198.4 452.266667l-89.6 17.066666c-2.133333 14.933333-2.133333 27.733333-2.133333 42.666667 0 98.133333 34.133333 192 98.133333 264.533333l64-55.466666C219.733333 663.466667 192 588.8 192 512c0-19.2 2.133333-40.533333 6.4-59.733333zM512 106.666667c-115.2 0-217.6 49.066667-292.266667 125.866666l59.733334 59.733334C339.2 230.4 420.266667 192 512 192c19.2 0 40.533333 2.133333 59.733333 6.4l14.933334-83.2C563.2 108.8 537.6 106.666667 512 106.666667zM825.6 571.733333l89.6-17.066666c2.133333-14.933333 2.133333-27.733333 2.133333-42.666667 0-93.866667-32-185.6-91.733333-258.133333l-66.133333 53.333333c46.933333 57.6 72.533333 130.133333 72.533333 202.666667 0 21.333333-2.133333 42.666667-6.4 61.866666zM744.533333 731.733333C684.8 793.6 603.733333 832 512 832c-19.2 0-40.533333-2.133333-59.733333-6.4l-14.933334 83.2c25.6 4.266667 51.2 6.4 74.666667 6.4 115.2 0 217.6-49.066667 292.266667-125.866667l-59.733334-57.6z" fill="#4949d1"></path><path d="M853.333333 661.333333l-34.133333 253.866667-209.066667-209.066667z" fill="#4949d1"></path></g></svg>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|