Deployed 5fd45ab to dev with MkDocs 1.6.1 and mike 2.1.3

This commit is contained in:
github-actions 2024-11-25 08:43:02 +00:00
parent 86e2a956f0
commit e6335c9a16
89 changed files with 18350 additions and 9086 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

0
dev/__init__.py Normal file
View file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View file

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

0
dev/scripts/__init__.py Normal file
View file

47
dev/scripts/reference.py Normal file
View file

@ -0,0 +1,47 @@
# Adapted from https://github.com/mkdocstrings/python/blob/main/scripts/gen_ref_nav.py
# License: ISC License - Copyright (c) 2021, Timothée Mazzucotelli
"""Generate the code reference pages and navigation.
No need to run this script manually, it is called by mkdocs-material during the build process.
You can run it manually to test the output.
"""
from pathlib import Path
import mkdocs_gen_files
nav = mkdocs_gen_files.Nav()
mod_symbol = '<code class="doc-symbol doc-symbol-nav doc-symbol-module"></code>'
root = Path(__file__).parent.parent.parent.parent
src = root / "src"
for path in sorted(src.rglob("*.py")):
module_path = path.relative_to(src).with_suffix("")
if module_path.parts[-1] == "__init__":
module_path = module_path.parent
doc_path = path.relative_to(src).with_suffix("")
if doc_path.parts[-1] == "__init__":
doc_path = doc_path.parent
full_doc_path = Path("reference", doc_path)
parts = tuple(module_path.parts)
doc_path = doc_path / "index.md"
full_doc_path = full_doc_path / "index.md"
nav_parts = [f"{mod_symbol} {part}" for part in parts]
nav[tuple(nav_parts)] = doc_path.as_posix()
if parts[-1] == "__init__":
parts = parts[:-1]
with mkdocs_gen_files.open(full_doc_path, "w") as fd:
ident = ".".join(parts)
fd.write(f"::: {ident}")
mkdocs_gen_files.set_edit_path(full_doc_path, ".." / path.relative_to(root))
with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file:
nav_file.writelines([line.replace(" ", " ").removeprefix(" ") for line in nav.build_literate_nav(indentation=2)])

File diff suppressed because one or more lines are too long

View file

@ -2,166 +2,222 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/CHANGELOG/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/CODE_OF_CONDUCT/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/SUMMARY/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/license/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/migrating_from_safer_staticfiles/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/slot_rendering/</loc>
<lastmod>2024-11-24</lastmod>
<loc>https://emilstenstrom.github.io/django-components/latest/devguides/dependency_mgmt/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/slots_and_blocks/</loc>
<lastmod>2024-11-24</lastmod>
<loc>https://emilstenstrom.github.io/django-components/latest/devguides/slot_rendering/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/devguides/slots_and_blocks/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/SUMMARY/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/app_settings/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/apps/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/attributes/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/autodiscover/</loc>
<lastmod>2024-11-24</lastmod>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/autodiscovery/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/component/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/component_media/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/component_registry/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/components/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/components/dynamic/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/context/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/dependencies/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/expression/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/finders/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/library/</loc>
<lastmod>2024-11-24</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/logger/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/management/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/management/commands/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/management/commands/startcomponent/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/management/commands/upgradecomponent/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/middleware/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/node/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/provide/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/slots/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/tag_formatter/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/template/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/template_loader/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/template_parser/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/templatetags/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/templatetags/component_tags/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/types/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/utils/</loc>
<lastmod>2024-11-24</lastmod>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/urls/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/cache/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/html/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/loader/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/logger/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/misc/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/nanoid/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/tag_parser/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/types/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components/util/validation/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/django_components_js/build/</loc>
<lastmod>2024-11-24</lastmod>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/docs/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/docs/scripts/</loc>
<lastmod>2024-11-25</lastmod>
</url>
<url>
<loc>https://emilstenstrom.github.io/django-components/latest/reference/docs/scripts/reference/</loc>
<lastmod>2024-11-25</lastmod>
</url>
</urlset>

Binary file not shown.

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
[
{
"version": "dev",
"title": "dev (9f89145)",
"title": "dev (5fd45ab)",
"aliases": []
},
{