Deployed 5fd45ab
to dev with MkDocs 1.6.1 and mike 2.1.3
0
dev/__init__.py
Normal file
BIN
dev/assets/images/social/devguides/dependency_mgmt.png
Normal file
After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 26 KiB |
BIN
dev/assets/images/social/reference/django_components/util/cache/index.png
vendored
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 26 KiB |
BIN
dev/assets/images/social/reference/docs/index.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
dev/assets/images/social/reference/docs/scripts/index.png
Normal file
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 28 KiB |
83
dev/devguides/dependency_mgmt/index.html
Normal file
137
dev/devguides/slot_rendering/index.html
Normal file
3181
dev/index.html
BIN
dev/objects.inv
150
dev/reference/django_components/autodiscovery/index.html
Normal file
236
dev/reference/django_components/dependencies/index.html
Normal file
1
dev/reference/django_components/urls/index.html
Normal file
79
dev/reference/django_components/util/cache/index.html
vendored
Normal file
77
dev/reference/django_components/util/html/index.html
Normal file
716
dev/reference/django_components/util/index.html
Normal file
354
dev/reference/django_components/util/loader/index.html
Normal file
136
dev/reference/django_components/util/logger/index.html
Normal file
37
dev/reference/django_components/util/misc/index.html
Normal file
1
dev/reference/django_components/util/nanoid/index.html
Normal file
35
dev/reference/django_components/util/types/index.html
Normal file
1
dev/reference/docs/index.html
Normal file
1
dev/reference/docs/scripts/index.html
Normal file
1
dev/reference/docs/scripts/reference/index.html
Normal file
0
dev/scripts/__init__.py
Normal file
47
dev/scripts/reference.py
Normal 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)])
|
152
dev/sitemap.xml
|
@ -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>
|
|
@ -1,7 +1,7 @@
|
|||
[
|
||||
{
|
||||
"version": "dev",
|
||||
"title": "dev (9f89145)",
|
||||
"title": "dev (5fd45ab)",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
|
|