Skip to content

Commit 0f6d3f5

Browse files
Deployed e372341 to 2.13.1 with MkDocs 1.6.1 and mike 2.1.3
1 parent 0567bd6 commit 0f6d3f5

File tree

149 files changed

+43280
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+43280
-3
lines changed

2.13.1/404.html

Lines changed: 1837 additions & 0 deletions
Large diffs are not rendered by default.

2.13.1/API/index.html

Lines changed: 1046 additions & 0 deletions
Large diffs are not rendered by default.

2.13.1/API/swagger-82aafcbc.html

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>Swagger UI</title>
7+
<link rel="stylesheet" type="text/css" href="../assets/stylesheets/swagger-ui.css" />
8+
<link rel="stylesheet" type="text/css" id="slate-css" media="none" href="../assets/stylesheets/swagger-ui-dark.css" />
9+
10+
</head>
11+
12+
<body style="overflow:hidden;background: ;">
13+
<div id="swagger-ui"></div>
14+
<script src="../assets/javascripts/swagger-ui-bundle.js" charset="UTF-8"> </script>
15+
<script src="../assets/javascripts/swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
16+
<script>
17+
window.onload = function () {
18+
window.ui = SwaggerUIBundle({
19+
dom_id: "#swagger-ui",
20+
onComplete: onComplete,
21+
presets: [
22+
SwaggerUIBundle.presets.apis,
23+
SwaggerUIStandalonePreset
24+
],
25+
26+
url: "../openapi-spec/maintainerr_api_specs.yaml",
27+
28+
29+
"oauth2RedirectUrl": new URL("../assets/swagger-ui/oauth2-redirect.html",window.location.href).href,
30+
31+
"validatorUrl": "none",
32+
33+
"docExpansion": "list",
34+
"filter": false,
35+
"tryItOutEnabled": false,
36+
"supportedSubmitMethods": [],
37+
"validatorUrl": "none",
38+
"extra_css": [],
39+
"dark_scheme_name": "slate",
40+
"syntaxHighlight.theme": "agate"
41+
42+
})
43+
44+
45+
46+
const scheme = parent.scheme
47+
if (scheme === "slate") {
48+
enable_dark_mode();
49+
}
50+
}
51+
52+
enable_dark_mode = function(){
53+
document.getElementById("slate-css").media = ""
54+
}
55+
56+
disable_dark_mode = function(){
57+
document.getElementById("slate-css").media = "none"
58+
}
59+
60+
const resize_ob = new ResizeObserver(function(entries) {
61+
parent.update_swagger_ui_iframe_height("82aafcbc");
62+
});
63+
64+
// start observing for resizing
65+
resize_ob.observe(document.querySelector("body"));
66+
67+
// authorize modal position
68+
var modal_top = 0;
69+
70+
const mutation_ob = new MutationObserver(function (mutations) {
71+
if(mutations && mutations[0].addedNodes && mutations[0].addedNodes.length > 0){
72+
update_modal_top()
73+
}
74+
});
75+
76+
onComplete = function(){
77+
// start observing for auth-wrapper after Swagger UI loaded
78+
const div = document.querySelector("div.auth-wrapper");
79+
if(div){
80+
mutation_ob.observe(div, {
81+
childList: true,
82+
});
83+
}
84+
}
85+
86+
update_top_val = function(top){
87+
modal_top = top
88+
update_modal_top()
89+
}
90+
91+
update_modal_top = function(){
92+
let modal_list = document.getElementsByClassName('modal-ux')
93+
if(modal_list.length > 0){
94+
let modal = modal_list.item(0)
95+
const modal_height = modal.offsetHeight
96+
const padding = 60
97+
min = parseInt(modal_height/2 + padding)
98+
max = document.body.scrollHeight - min + padding
99+
if (modal_top < min) {
100+
modal.style.top = `${min}px`
101+
} else if (modal_top > max) {
102+
modal.style.top = `${max}px`
103+
} else {
104+
modal.style.top = `${modal_top}px`
105+
}
106+
}
107+
}
108+
</script>
109+
</body>
110+
111+
</html>

2.13.1/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs.maintainerr.info

0 commit comments

Comments
 (0)