ConfluenceWiki_SystemComponents.jinja 935 B

12345678910111213141516171819202122232425
  1. {####
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. ####-#}
  8. {#- This module requires the following additional arguments:
  9. # --parentdoc <name> : Name of the parent doc containing the Serialize Context information
  10. # --issplit <true|false> : Whether or not the parent doc is one document or split over multiple files.
  11. -#}
  12. {%- import 'ConfluenceWiki_Utilities.jinja' as Utils -%}
  13. {info}
  14. This document is automatically generated using the template '{{ self._TemplateReference__context.name }}'
  15. {info}
  16. h1. System Components:
  17. {% for uuid, class in SerializeContext.items()|sort(attribute='1.Name') %}
  18. {% if class.IsSystemComponent %}
  19. * {{ Utils.PrintNamedLink(SerializeContext, uuid, class, Config.issplit, Config.parentdoc) -}}
  20. {% endif %}
  21. {% endfor %}