mirror of
https://github.com/django-components/django-components.git
synced 2025-09-26 15:39:08 +00:00
Deployed 6253042
to dev with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
parent
2265eb83f7
commit
3783055886
74 changed files with 895 additions and 943 deletions
File diff suppressed because one or more lines are too long
Binary file not shown.
Before Width: | Height: | Size: 33 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
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
BIN
dev/objects.inv
BIN
dev/objects.inv
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
|
@ -1,6 +1,6 @@
|
||||||
"""
|
"""
|
||||||
Generate reference for all the different kinds of public API that we expose,
|
Generate reference for all the different kinds of public API that we expose,
|
||||||
like regular Python imports, middleware, template tags, settings, Django URLs, etc.
|
like regular Python imports, template tags, settings, Django URLs, etc.
|
||||||
|
|
||||||
All pages are generated inside `docs/reference/`.
|
All pages are generated inside `docs/reference/`.
|
||||||
|
|
||||||
|
@ -338,49 +338,6 @@ def _gen_default_settings_section(app_settings_filepath: str) -> str:
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def gen_reference_middlewares():
|
|
||||||
"""
|
|
||||||
Generate documentation for all available middleware of django-components,
|
|
||||||
as listed in module `django_components.middleware`.
|
|
||||||
"""
|
|
||||||
module = import_module("django_components.middleware")
|
|
||||||
|
|
||||||
preface = "<!-- Autogenerated by reference.py -->\n\n"
|
|
||||||
preface += (root / "docs/templates/reference_middlewares.md").read_text()
|
|
||||||
out_file = root / "docs/reference/middlewares.md"
|
|
||||||
|
|
||||||
out_file.parent.mkdir(parents=True, exist_ok=True)
|
|
||||||
with out_file.open("w", encoding="utf-8") as f:
|
|
||||||
f.write(preface + "\n\n")
|
|
||||||
|
|
||||||
for name, obj in inspect.getmembers(module):
|
|
||||||
if not inspect.isclass(obj):
|
|
||||||
continue
|
|
||||||
|
|
||||||
class_name = get_import_path(obj)
|
|
||||||
|
|
||||||
# For each entry, generate a mkdocstrings entry, e.g.
|
|
||||||
# ```
|
|
||||||
# ::: django_components.middleware.ComponentDependencyMiddleware
|
|
||||||
# options:
|
|
||||||
# ...
|
|
||||||
# ```
|
|
||||||
f.write(
|
|
||||||
f"::: {class_name}\n"
|
|
||||||
f" options:\n"
|
|
||||||
f" inherited_members: false\n"
|
|
||||||
f" show_root_heading: true\n"
|
|
||||||
f" show_signature: false\n"
|
|
||||||
f" separate_signature: false\n"
|
|
||||||
f" show_symbol_type_heading: false\n"
|
|
||||||
f" show_symbol_type_toc: false\n"
|
|
||||||
f" show_if_no_docstring: true\n"
|
|
||||||
f" show_labels: false\n"
|
|
||||||
)
|
|
||||||
|
|
||||||
f.write("\n")
|
|
||||||
|
|
||||||
|
|
||||||
def gen_reference_tagformatters():
|
def gen_reference_tagformatters():
|
||||||
"""
|
"""
|
||||||
Generate documentation for all pre-defined TagFormatters included
|
Generate documentation for all pre-defined TagFormatters included
|
||||||
|
@ -1145,7 +1102,6 @@ def gen_reference():
|
||||||
gen_reference_api()
|
gen_reference_api()
|
||||||
gen_reference_exceptions()
|
gen_reference_exceptions()
|
||||||
gen_reference_components()
|
gen_reference_components()
|
||||||
gen_reference_middlewares()
|
|
||||||
gen_reference_settings()
|
gen_reference_settings()
|
||||||
gen_reference_tagformatters()
|
gen_reference_tagformatters()
|
||||||
gen_reference_urls()
|
gen_reference_urls()
|
||||||
|
|
File diff suppressed because one or more lines are too long
136
dev/sitemap.xml
136
dev/sitemap.xml
|
@ -2,270 +2,266 @@
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/</loc>
|
<loc>https://django-components.github.io/django-components/latest/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/migrating_from_safer_staticfiles/</loc>
|
<loc>https://django-components.github.io/django-components/latest/migrating_from_safer_staticfiles/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/release_notes/</loc>
|
<loc>https://django-components.github.io/django-components/latest/release_notes/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_caching/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_caching/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_context_scope/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_context_scope/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_libraries/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_libraries/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_registry/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/component_registry/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/extensions/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/extensions/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/hooks/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/hooks/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/html_fragments/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/html_fragments/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/provide_inject/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/provide_inject/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/rendering_js_css/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/rendering_js_css/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/tag_formatters/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/tag_formatters/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/template_tags/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/template_tags/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/testing/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/advanced/testing/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/autodiscovery/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/autodiscovery/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/component_defaults/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/component_defaults/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/component_views_urls/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/component_views_urls/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_attributes/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_attributes/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_js_css_files/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_js_css_files/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_js_css_variables/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/html_js_css_variables/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/http_request/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/http_request/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/render_api/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/render_api/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/rendering_components/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/rendering_components/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/secondary_js_css_files/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/secondary_js_css_files/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/single_file_components/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/single_file_components/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/slots/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/slots/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/subclassing_components/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/subclassing_components/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/template_tag_syntax/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/template_tag_syntax/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/typing_and_validation/</loc>
|
<loc>https://django-components.github.io/django-components/latest/concepts/fundamentals/typing_and_validation/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/getting_started/adding_js_and_css/</loc>
|
<loc>https://django-components.github.io/django-components/latest/getting_started/adding_js_and_css/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/getting_started/adding_slots/</loc>
|
<loc>https://django-components.github.io/django-components/latest/getting_started/adding_slots/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/getting_started/components_in_templates/</loc>
|
<loc>https://django-components.github.io/django-components/latest/getting_started/components_in_templates/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/getting_started/parametrising_components/</loc>
|
<loc>https://django-components.github.io/django-components/latest/getting_started/parametrising_components/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/getting_started/rendering_components/</loc>
|
<loc>https://django-components.github.io/django-components/latest/getting_started/rendering_components/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/getting_started/your_first_component/</loc>
|
<loc>https://django-components.github.io/django-components/latest/getting_started/your_first_component/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/guides/devguides/dependency_mgmt/</loc>
|
<loc>https://django-components.github.io/django-components/latest/guides/devguides/dependency_mgmt/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/guides/devguides/slot_rendering/</loc>
|
<loc>https://django-components.github.io/django-components/latest/guides/devguides/slot_rendering/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/guides/devguides/slots_and_blocks/</loc>
|
<loc>https://django-components.github.io/django-components/latest/guides/devguides/slots_and_blocks/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/guides/other/troubleshooting/</loc>
|
<loc>https://django-components.github.io/django-components/latest/guides/other/troubleshooting/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/guides/setup/caching/</loc>
|
<loc>https://django-components.github.io/django-components/latest/guides/setup/caching/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/guides/setup/development_server/</loc>
|
<loc>https://django-components.github.io/django-components/latest/guides/setup/development_server/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/code_of_conduct/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/code_of_conduct/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/community/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/community/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/compatibility/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/compatibility/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/contributing/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/contributing/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/development/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/development/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/installation/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/installation/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/license/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/license/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/performance/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/performance/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/security_notes/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/security_notes/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/overview/welcome/</loc>
|
<loc>https://django-components.github.io/django-components/latest/overview/welcome/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/api/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/api/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/commands/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/commands/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/components/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/components/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/exceptions/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/exceptions/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/extension_commands/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/extension_commands/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/extension_hooks/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/extension_hooks/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/extension_urls/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/extension_urls/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/middlewares/</loc>
|
|
||||||
<lastmod>2025-05-04</lastmod>
|
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/settings/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/settings/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/signals/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/signals/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/tag_formatters/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/tag_formatters/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/template_tags/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/template_tags/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/template_vars/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/template_vars/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/testing_api/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/testing_api/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://django-components.github.io/django-components/latest/reference/urls/</loc>
|
<loc>https://django-components.github.io/django-components/latest/reference/urls/</loc>
|
||||||
<lastmod>2025-05-04</lastmod>
|
<lastmod>2025-05-06</lastmod>
|
||||||
</url>
|
</url>
|
||||||
</urlset>
|
</urlset>
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"version": "dev",
|
"version": "dev",
|
||||||
"title": "dev (330578a)",
|
"title": "dev (6253042)",
|
||||||
"aliases": []
|
"aliases": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue