pywebexec 1.1.4__tar.gz → 1.1.6__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.
Files changed (28) hide show
  1. {pywebexec-1.1.4/pywebexec.egg-info → pywebexec-1.1.6}/PKG-INFO +1 -1
  2. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/css/style.css +30 -7
  3. pywebexec-1.1.6/pywebexec/static/images/running.gif +0 -0
  4. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/version.py +2 -2
  5. {pywebexec-1.1.4 → pywebexec-1.1.6/pywebexec.egg-info}/PKG-INFO +1 -1
  6. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec.egg-info/SOURCES.txt +1 -1
  7. pywebexec-1.1.4/pywebexec/static/images/running.svg +0 -1
  8. {pywebexec-1.1.4 → pywebexec-1.1.6}/.github/workflows/python-publish.yml +0 -0
  9. {pywebexec-1.1.4 → pywebexec-1.1.6}/.gitignore +0 -0
  10. {pywebexec-1.1.4 → pywebexec-1.1.6}/LICENSE +0 -0
  11. {pywebexec-1.1.4 → pywebexec-1.1.6}/README.md +0 -0
  12. {pywebexec-1.1.4 → pywebexec-1.1.6}/pyproject.toml +0 -0
  13. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/__init__.py +0 -0
  14. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/pywebexec.py +0 -0
  15. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/images/aborted.svg +0 -0
  16. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/images/copy.svg +0 -0
  17. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/images/copy_ok.svg +0 -0
  18. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/images/failed.svg +0 -0
  19. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/images/favicon.svg +0 -0
  20. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/images/success.svg +0 -0
  21. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/static/js/script.js +0 -0
  22. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/templates/__init__.py +0 -0
  23. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec/templates/index.html +0 -0
  24. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec.egg-info/dependency_links.txt +0 -0
  25. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec.egg-info/entry_points.txt +0 -0
  26. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec.egg-info/requires.txt +0 -0
  27. {pywebexec-1.1.4 → pywebexec-1.1.6}/pywebexec.egg-info/top_level.txt +0 -0
  28. {pywebexec-1.1.4 → pywebexec-1.1.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pywebexec
3
- Version: 1.1.4
3
+ Version: 1.1.6
4
4
  Summary: Simple Python HTTP Exec Server
5
5
  Home-page: https://github.com/joknarf/pywebexec
6
6
  Author: Franck Jouvanceau
@@ -1,23 +1,44 @@
1
- body { font-family: Arial, sans-serif; }
2
- .table-container { height: 270px; overflow-y: auto; position: relative; }
3
- table { width: 100%; border-collapse: collapse; }
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
+ }
11
+ table {
12
+ width: 100%;
13
+ border-collapse: collapse;
14
+ }
4
15
  th, td {
5
16
  padding: 8px;
6
17
  text-align: left;
7
18
  border-bottom: 1px solid #ddd;
8
19
  white-space: nowrap;
9
20
  }
10
- th { background-color: #f2f2f2; position: sticky; top: 0; z-index: 1; }
21
+ th {
22
+ background-color: #f2f2f2;
23
+ position: sticky;
24
+ top: 0;
25
+ z-index: 1;
26
+ }
11
27
  .outcol {
12
28
  width: 100%;
13
29
  }
30
+ select { /* Safari bug */
31
+ font-size: 15px;
32
+ border: #aaa solid 1px;
33
+ border-radius: 5px;
34
+ }
14
35
  .output {
15
36
  white-space: pre-wrap;
16
37
  background: #f0f0f0;
17
38
  padding: 10px;
18
39
  border: 1px solid #ccc;
19
40
  font-family: monospace;
20
- border-radius: 15px;
41
+ border-radius: 10px;
21
42
  overflow-y: auto;
22
43
  }
23
44
  .copy-icon { cursor: pointer; }
@@ -50,7 +71,7 @@ form {
50
71
  vertical-align: middle;
51
72
  }
52
73
  .status-running {
53
- background-image: url("/static/images/running.svg")
74
+ background-image: url("/static/images/running.gif")
54
75
  }
55
76
  .status-success {
56
77
  background-image: url("/static/images/success.svg")
@@ -96,6 +117,7 @@ input {
96
117
  .resizer {
97
118
  width: 100%;
98
119
  height: 5px;
120
+ border-radius: 5px;
99
121
  background: #aaa;
100
122
  cursor: ns-resize;
101
123
  position: absolute;
@@ -105,7 +127,8 @@ input {
105
127
  .resizer-container {
106
128
  position: relative;
107
129
  height: 5px;
108
- margin-bottom: 10px;
130
+ margin: 5px;
131
+ /*margin-bottom: 10px;*/
109
132
  }
110
133
  tr.clickable-row {
111
134
  cursor: pointer;
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '1.1.4'
16
- __version_tuple__ = version_tuple = (1, 1, 4)
15
+ __version__ = version = '1.1.6'
16
+ __version_tuple__ = version_tuple = (1, 1, 6)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pywebexec
3
- Version: 1.1.4
3
+ Version: 1.1.6
4
4
  Summary: Simple Python HTTP Exec Server
5
5
  Home-page: https://github.com/joknarf/pywebexec
6
6
  Author: Franck Jouvanceau
@@ -19,7 +19,7 @@ pywebexec/static/images/copy.svg
19
19
  pywebexec/static/images/copy_ok.svg
20
20
  pywebexec/static/images/failed.svg
21
21
  pywebexec/static/images/favicon.svg
22
- pywebexec/static/images/running.svg
22
+ pywebexec/static/images/running.gif
23
23
  pywebexec/static/images/success.svg
24
24
  pywebexec/static/js/script.js
25
25
  pywebexec/templates/__init__.py
@@ -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
File without changes