mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-04-15 22:26:25 +02:00
Deployed 117675d to 1.2 with MkDocs 1.0.0 and mike 2.1.4
This commit is contained in:
1267
1.2/404.html
Normal file
1267
1.2/404.html
Normal file
File diff suppressed because it is too large
Load Diff
BIN
1.2/assets/images/favicon.png
Normal file
BIN
1.2/assets/images/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
29
1.2/assets/javascripts/LICENSE
Normal file
29
1.2/assets/javascripts/LICENSE
Normal file
@@ -0,0 +1,29 @@
|
||||
-------------------------------------------------------------------------------
|
||||
Third-Party licenses
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Package: clipboard@2.0.11
|
||||
License: MIT
|
||||
Copyright: Zeno Rocha
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Package: escape-html@1.0.3
|
||||
License: MIT
|
||||
Copyright: 2012-2013 TJ Holowaychuk
|
||||
2015 Andreas Lubbe
|
||||
2015 Tiancheng "Timothy" Gu
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Package: focus-visible@5.2.1
|
||||
License: W3C
|
||||
Copyright: WICG
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Package: rxjs@7.8.2
|
||||
License: Apache-2.0
|
||||
Copyright: 2015-2018 Google, Inc.,
|
||||
2015-2018 Netflix, Inc.,
|
||||
2015-2018 Microsoft Corp. and contributors
|
||||
3
1.2/assets/javascripts/bundle.5fcf0de6.min.js
vendored
Normal file
3
1.2/assets/javascripts/bundle.5fcf0de6.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
1.2/assets/javascripts/workers/search.e2d2d235.min.js
vendored
Normal file
1
1.2/assets/javascripts/workers/search.e2d2d235.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
1.2/assets/stylesheets/classic/main.d9d44b50.min.css
vendored
Normal file
1
1.2/assets/stylesheets/classic/main.d9d44b50.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
1.2/assets/stylesheets/classic/palette.7dc9a0ad.min.css
vendored
Normal file
1
1.2/assets/stylesheets/classic/palette.7dc9a0ad.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
1.2/assets/stylesheets/modern/main.1e989742.min.css
vendored
Normal file
1
1.2/assets/stylesheets/modern/main.1e989742.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
1.2/assets/stylesheets/modern/palette.dfe2e883.min.css
vendored
Normal file
1
1.2/assets/stylesheets/modern/palette.dfe2e883.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1872
1.2/examples/pagination-search/index.html
Normal file
1872
1.2/examples/pagination-search/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1574
1.2/index.html
Normal file
1574
1.2/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1632
1.2/module/cli/index.html
Normal file
1632
1.2/module/cli/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2218
1.2/module/crud/index.html
Normal file
2218
1.2/module/crud/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1646
1.2/module/db/index.html
Normal file
1646
1.2/module/db/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1547
1.2/module/dependencies/index.html
Normal file
1547
1.2/module/dependencies/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1656
1.2/module/exceptions/index.html
Normal file
1656
1.2/module/exceptions/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1725
1.2/module/fixtures/index.html
Normal file
1725
1.2/module/fixtures/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1536
1.2/module/logger/index.html
Normal file
1536
1.2/module/logger/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1699
1.2/module/metrics/index.html
Normal file
1699
1.2/module/metrics/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1648
1.2/module/pytest/index.html
Normal file
1648
1.2/module/pytest/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1603
1.2/module/schemas/index.html
Normal file
1603
1.2/module/schemas/index.html
Normal file
File diff suppressed because it is too large
Load Diff
BIN
1.2/objects.inv
Normal file
BIN
1.2/objects.inv
Normal file
Binary file not shown.
21
1.2/overrides/main.html
Normal file
21
1.2/overrides/main.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block extrahead %}
|
||||
<script
|
||||
defer
|
||||
src="https://analytics.d3vyce.fr/script.js"
|
||||
data-website-id="338b8816-7b99-4c6a-82f3-15595be3fd47"
|
||||
></script>
|
||||
{{ super() }}
|
||||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
{% if config.extra.version %}
|
||||
<script>
|
||||
var __cfg = JSON.parse(document.getElementById("__config").textContent);
|
||||
__cfg.version = {{ config.extra.version | tojson }};
|
||||
document.getElementById("__config").textContent = JSON.stringify(__cfg);
|
||||
</script>
|
||||
{% endif %}
|
||||
{{ super() }}
|
||||
{% endblock %}
|
||||
69
1.2/overrides/partials/header.html
Normal file
69
1.2/overrides/partials/header.html
Normal file
@@ -0,0 +1,69 @@
|
||||
{#-
|
||||
Override of partials/header.html — adds version selector slot missing in Zensical.
|
||||
-#}
|
||||
{% set class = "md-header" %}
|
||||
{% if "navigation.tabs.sticky" in features %}
|
||||
{% set class = class ~ " md-header--shadow md-header--lifted" %}
|
||||
{% elif "navigation.tabs" not in features %}
|
||||
{% set class = class ~ " md-header--shadow" %}
|
||||
{% endif %}
|
||||
<header class="{{ class }}" data-md-component="header">
|
||||
<nav class="md-header__inner md-grid" aria-label="{{ lang.t('header') }}">
|
||||
<a href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}" title="{{ config.site_name | e }}" class="md-header__button md-logo" aria-label="{{ config.site_name }}" data-md-component="logo">
|
||||
{% include "partials/logo.html" %}
|
||||
</a>
|
||||
<label class="md-header__button md-icon" for="__drawer">
|
||||
{% set icon = config.theme.icon.menu or "material/menu" %}
|
||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||
</label>
|
||||
<div class="md-header__title" data-md-component="header-title">
|
||||
<div class="md-header__ellipsis">
|
||||
<div class="md-header__topic">
|
||||
<span class="md-ellipsis">
|
||||
{{ config.site_name }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="md-header__topic" data-md-component="header-topic">
|
||||
<span class="md-ellipsis">
|
||||
{% if page.meta and page.meta.title %}
|
||||
{{ page.meta.title }}
|
||||
{% else %}
|
||||
{{ page.title }}
|
||||
{% endif %}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% if config.theme.palette %}
|
||||
{% if not config.theme.palette is mapping %}
|
||||
{% include "partials/palette.html" %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if not config.theme.palette is mapping %}
|
||||
{% include "partials/javascripts/palette.html" %}
|
||||
{% endif %}
|
||||
{% if config.extra.alternate %}
|
||||
{% include "partials/alternate.html" %}
|
||||
{% endif %}
|
||||
{% if "search" in config.plugins %}
|
||||
{% set search = config.plugins["search"] | attr("config") %}
|
||||
{% if search.enabled %}
|
||||
<label class="md-header__button md-icon" for="__search">
|
||||
{% set icon = config.theme.icon.search or "material/magnify" %}
|
||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||
</label>
|
||||
{% include "partials/search.html" %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
<div class="md-header__source">
|
||||
{% if config.repo_url %}
|
||||
{% include "partials/source.html" %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</nav>
|
||||
{% if "navigation.tabs.sticky" in features %}
|
||||
{% if "navigation.tabs" in features %}
|
||||
{% include "partials/tabs.html" %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</header>
|
||||
1885
1.2/reference/cli/index.html
Normal file
1885
1.2/reference/cli/index.html
Normal file
File diff suppressed because it is too large
Load Diff
4720
1.2/reference/crud/index.html
Normal file
4720
1.2/reference/crud/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2281
1.2/reference/db/index.html
Normal file
2281
1.2/reference/db/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1807
1.2/reference/dependencies/index.html
Normal file
1807
1.2/reference/dependencies/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2779
1.2/reference/exceptions/index.html
Normal file
2779
1.2/reference/exceptions/index.html
Normal file
File diff suppressed because it is too large
Load Diff
3169
1.2/reference/fixtures/index.html
Normal file
3169
1.2/reference/fixtures/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1706
1.2/reference/logger/index.html
Normal file
1706
1.2/reference/logger/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2107
1.2/reference/metrics/index.html
Normal file
2107
1.2/reference/metrics/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2391
1.2/reference/pytest/index.html
Normal file
2391
1.2/reference/pytest/index.html
Normal file
File diff suppressed because it is too large
Load Diff
2089
1.2/reference/schemas/index.html
Normal file
2089
1.2/reference/schemas/index.html
Normal file
File diff suppressed because it is too large
Load Diff
1
1.2/search.json
Normal file
1
1.2/search.json
Normal file
File diff suppressed because one or more lines are too long
69
1.2/sitemap.xml
Normal file
69
1.2/sitemap.xml
Normal file
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/examples/pagination-search/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/cli/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/crud/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/db/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/dependencies/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/exceptions/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/fixtures/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/logger/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/metrics/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/pytest/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/module/schemas/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/cli/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/crud/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/db/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/dependencies/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/exceptions/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/fixtures/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/logger/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/metrics/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/pytest/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fastapi-toolsets.d3vyce.fr/reference/schemas/</loc>
|
||||
</url>
|
||||
</urlset>
|
||||
100
1.2/stylesheets/version.css
Normal file
100
1.2/stylesheets/version.css
Normal file
@@ -0,0 +1,100 @@
|
||||
/* Version selector styles for Zensical modern theme (backported from classic theme).
|
||||
The JS appends .md-version into .md-header__topic, so we make that flex. */
|
||||
.md-header__topic:has(.md-version) {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
:root {
|
||||
--md-version-icon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="currentColor" d="M140.3 376.8c12.6 10.2 31.1 9.5 42.8-2.2l128-128c9.2-9.2 11.9-22.9 6.9-34.9S301.4 192 288.5 192h-256c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 7 34.8l128 128z"/></svg>');
|
||||
}
|
||||
|
||||
.md-version {
|
||||
flex-shrink: 0;
|
||||
font-size: .8rem;
|
||||
height: 2.4rem;
|
||||
}
|
||||
|
||||
[dir=ltr] .md-version__current { margin-left: 1.4rem; margin-right: .4rem; }
|
||||
[dir=rtl] .md-version__current { margin-left: .4rem; margin-right: 1.4rem; }
|
||||
|
||||
.md-version__current {
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
position: relative;
|
||||
top: .05rem;
|
||||
}
|
||||
|
||||
[dir=ltr] .md-version__current:after { margin-left: .4rem; }
|
||||
[dir=rtl] .md-version__current:after { margin-right: .4rem; }
|
||||
|
||||
.md-version__current:after {
|
||||
background-color: currentcolor;
|
||||
content: "";
|
||||
display: inline-block;
|
||||
height: .6rem;
|
||||
-webkit-mask-image: var(--md-version-icon);
|
||||
mask-image: var(--md-version-icon);
|
||||
-webkit-mask-position: center;
|
||||
mask-position: center;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
width: .4rem;
|
||||
}
|
||||
|
||||
.md-version__alias {
|
||||
margin-left: .3rem;
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.md-version__list {
|
||||
background-color: var(--md-default-bg-color);
|
||||
border-radius: .1rem;
|
||||
box-shadow: var(--md-shadow-z2);
|
||||
color: var(--md-default-fg-color);
|
||||
list-style-type: none;
|
||||
margin: .2rem .8rem;
|
||||
max-height: 0;
|
||||
opacity: 0;
|
||||
overflow: auto;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
scroll-snap-type: y mandatory;
|
||||
top: .15rem;
|
||||
transition: max-height 0ms .5s, opacity .25s .25s;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.md-version:focus-within .md-version__list,
|
||||
.md-version:hover .md-version__list {
|
||||
max-height: 10rem;
|
||||
opacity: 1;
|
||||
transition: max-height 0ms, opacity .25s;
|
||||
}
|
||||
|
||||
.md-version:hover .md-version__list { animation: hoverfix .25s forwards; }
|
||||
.md-version:focus-within .md-version__list { animation: none; }
|
||||
|
||||
.md-version__item { line-height: 1.8rem; }
|
||||
|
||||
[dir=ltr] .md-version__link { padding-left: .6rem; padding-right: 1.2rem; }
|
||||
[dir=rtl] .md-version__link { padding-left: 1.2rem; padding-right: .6rem; }
|
||||
|
||||
.md-version__link {
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
outline: none;
|
||||
scroll-snap-align: start;
|
||||
transition: color .25s, background-color .25s;
|
||||
white-space: nowrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.md-version__link:focus,
|
||||
.md-version__link:hover { color: var(--md-accent-fg-color); }
|
||||
|
||||
.md-version__link:focus { background-color: var(--md-default-fg-color--lightest); }
|
||||
@@ -1,4 +1,9 @@
|
||||
[
|
||||
{
|
||||
"version": "1.2",
|
||||
"title": "1.2",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"version": "1.1",
|
||||
"title": "1.1",
|
||||
|
||||
Reference in New Issue
Block a user