pywebexec 1.9.20__py3-none-any.whl → 2.0.0__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/pywebexec.py +71 -64
- pywebexec/static/css/form.css +6827 -0
- pywebexec/static/css/markdown.css +79 -0
- pywebexec/static/css/style.css +37 -6876
- pywebexec/static/css/swagger-ui.css +3 -0
- pywebexec/static/css/swagger-ui.css.map +1 -0
- pywebexec/static/images/swagger-ui.svg +1 -0
- pywebexec/static/js/executables.js +32 -48
- pywebexec/static/js/js-yaml/LICENSE +21 -0
- pywebexec/static/js/js-yaml/js-yaml.min.js +2 -0
- pywebexec/static/js/schemaform.js +90 -0
- pywebexec/static/js/script.js +3 -3
- pywebexec/static/js/swagger-form.js +95 -0
- pywebexec/static/js/swagger-ui/LICENSE +202 -0
- pywebexec/static/js/swagger-ui/swagger-ui-bundle.js +2 -0
- pywebexec/static/js/swagger-ui/swagger-ui-standalone-preset.js +2 -0
- pywebexec/swagger.yaml +4 -0
- pywebexec/templates/index.html +6 -2
- pywebexec/templates/swagger_ui.html +22 -0
- pywebexec/version.py +2 -2
- {pywebexec-1.9.20.dist-info → pywebexec-2.0.0.dist-info}/METADATA +1 -2
- {pywebexec-1.9.20.dist-info → pywebexec-2.0.0.dist-info}/RECORD +26 -13
- {pywebexec-1.9.20.dist-info → pywebexec-2.0.0.dist-info}/WHEEL +1 -1
- {pywebexec-1.9.20.dist-info → pywebexec-2.0.0.dist-info}/LICENSE +0 -0
- {pywebexec-1.9.20.dist-info → pywebexec-2.0.0.dist-info}/entry_points.txt +0 -0
- {pywebexec-1.9.20.dist-info → pywebexec-2.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
|
2
|
+
.markdown, .swagger-ui .markdown {
|
3
|
+
/* background-color: #e0e0ff; */
|
4
|
+
border: 1px solid #ccc;
|
5
|
+
padding: 0px 8px 8px 8px;
|
6
|
+
font-size: 14px;
|
7
|
+
/* z-index: 1000; */
|
8
|
+
/* white-space: pre; */
|
9
|
+
border-radius: 10px;
|
10
|
+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
11
|
+
/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.40); */
|
12
|
+
|
13
|
+
h1, h2, h3, h4, h5, h6 {
|
14
|
+
margin-top: 4px;
|
15
|
+
}
|
16
|
+
th {
|
17
|
+
background-color: #444;
|
18
|
+
color: #eee;
|
19
|
+
position: sticky;
|
20
|
+
top: 0;
|
21
|
+
z-index: 1;
|
22
|
+
}
|
23
|
+
|
24
|
+
table {
|
25
|
+
border-spacing: 0px;
|
26
|
+
border-collapse: unset;
|
27
|
+
background-color: unset;
|
28
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.50);
|
29
|
+
border-radius: 10px;
|
30
|
+
overflow: hidden;
|
31
|
+
padding: 0;
|
32
|
+
}
|
33
|
+
td, th{
|
34
|
+
margin: 0;
|
35
|
+
padding: 4px 6px !important;
|
36
|
+
border-bottom: 1px solid #ccc;
|
37
|
+
white-space: unset;
|
38
|
+
}
|
39
|
+
ul, ol{
|
40
|
+
margin: 0;
|
41
|
+
padding: 0;
|
42
|
+
padding-left: 30px;
|
43
|
+
}
|
44
|
+
p {
|
45
|
+
margin-bottom: 4px;
|
46
|
+
}
|
47
|
+
th:last-child {
|
48
|
+
border-top-right-radius: 10px;
|
49
|
+
}
|
50
|
+
th:first-child {
|
51
|
+
border-top-left-radius: 10px;
|
52
|
+
}
|
53
|
+
tr:last-child > td:last-child {
|
54
|
+
border-bottom-right-radius: 10px;
|
55
|
+
}
|
56
|
+
tr:last-child > td:first-child {
|
57
|
+
border-bottom-left-radius: 10px;
|
58
|
+
}
|
59
|
+
tr > td:first-child {
|
60
|
+
border-left: 1px solid #aaa;
|
61
|
+
}
|
62
|
+
tr > td:last-child {
|
63
|
+
border-right: 1px solid #aaa;
|
64
|
+
}
|
65
|
+
code, pre {
|
66
|
+
font-size: 14px;
|
67
|
+
color: #333;
|
68
|
+
background-color: #dfdfff;
|
69
|
+
padding: 1px 4px;
|
70
|
+
border-radius: 5px;
|
71
|
+
}
|
72
|
+
pre {
|
73
|
+
padding: 5px 10px;
|
74
|
+
border-radius: 10px;
|
75
|
+
overflow-x: auto;
|
76
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.40);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|