nautobot 2.2.5__py3-none-any.whl → 2.2.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of nautobot might be problematic. Click here for more details.

Files changed (345) hide show
  1. nautobot/apps/api.py +2 -0
  2. nautobot/apps/models.py +2 -0
  3. nautobot/core/api/fields.py +13 -0
  4. nautobot/core/api/mixins.py +6 -1
  5. nautobot/core/api/schema.py +3 -1
  6. nautobot/core/api/serializers.py +7 -1
  7. nautobot/core/celery/__init__.py +1 -1
  8. nautobot/core/management/commands/generate_test_data.py +128 -158
  9. nautobot/core/models/fields.py +15 -0
  10. nautobot/core/tests/runner.py +10 -0
  11. nautobot/core/tests/test_utils.py +48 -1
  12. nautobot/core/utils/git.py +121 -49
  13. nautobot/core/utils/module_loading.py +10 -2
  14. nautobot/dcim/factory.py +1 -1
  15. nautobot/dcim/tests/test_models.py +2 -0
  16. nautobot/extras/datasources/git.py +133 -135
  17. nautobot/extras/datasources/utils.py +3 -0
  18. nautobot/extras/filters/__init__.py +1 -0
  19. nautobot/extras/forms/forms.py +16 -3
  20. nautobot/extras/jobs.py +9 -1
  21. nautobot/extras/migrations/0107_laxurlfield.py +28 -0
  22. nautobot/extras/migrations/0108_jobbutton_enabled.py +17 -0
  23. nautobot/extras/models/datasources.py +6 -4
  24. nautobot/extras/models/groups.py +9 -2
  25. nautobot/extras/models/jobs.py +30 -0
  26. nautobot/extras/models/models.py +2 -4
  27. nautobot/extras/tables.py +3 -0
  28. nautobot/extras/templates/extras/jobbutton_retrieve.html +6 -2
  29. nautobot/extras/templatetags/job_buttons.py +2 -2
  30. nautobot/extras/tests/git_data/01-valid-files/__init__.py +0 -0
  31. nautobot/extras/tests/git_data/01-valid-files/config_context_schemas/schema-1.yaml +18 -0
  32. nautobot/extras/tests/git_data/01-valid-files/config_contexts/context.yaml +12 -0
  33. nautobot/extras/tests/git_data/01-valid-files/config_contexts/devices/test-device.json +3 -0
  34. nautobot/extras/tests/git_data/01-valid-files/config_contexts/locations/Test Location.json +7 -0
  35. nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template.j2 +3 -0
  36. nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template2.html +4 -0
  37. nautobot/extras/tests/git_data/01-valid-files/export_templates/ipam/vlan/template.j2 +3 -0
  38. nautobot/extras/tests/git_data/01-valid-files/jobs/__init__.py +5 -0
  39. nautobot/extras/tests/git_data/01-valid-files/jobs/my_job.py +16 -0
  40. nautobot/extras/tests/git_data/02-invalid-files/__init__.py +0 -0
  41. nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema1.json +2 -0
  42. nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema2.json +1 -0
  43. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext1.json +2 -0
  44. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext2.json +1 -0
  45. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext3.json +3 -0
  46. nautobot/extras/tests/git_data/02-invalid-files/config_contexts/devices/nosuchdevice.json +1 -0
  47. nautobot/extras/tests/git_data/02-invalid-files/dcim/template.j2 +0 -0
  48. nautobot/extras/tests/git_data/02-invalid-files/devices/template.j2 +0 -0
  49. nautobot/extras/tests/git_data/02-invalid-files/export_templates/dcim/nosuchmodel/template.j2 +3 -0
  50. nautobot/extras/tests/git_data/02-invalid-files/export_templates/nosuchapp/device/template.j2 +3 -0
  51. nautobot/extras/tests/git_data/02-invalid-files/jobs/__init__.py +2 -0
  52. nautobot/extras/tests/git_data/02-invalid-files/jobs/importerror.py +1 -0
  53. nautobot/extras/tests/git_data/02-invalid-files/jobs/syntaxerror.py +1 -0
  54. nautobot/extras/tests/git_helper.py +76 -0
  55. nautobot/extras/tests/test_api.py +28 -11
  56. nautobot/extras/tests/test_datasources.py +94 -276
  57. nautobot/extras/tests/test_dynamicgroups.py +8 -1
  58. nautobot/extras/tests/test_models.py +8 -3
  59. nautobot/extras/tests/test_views.py +21 -7
  60. nautobot/extras/views.py +1 -1
  61. nautobot/ipam/api/serializers.py +46 -16
  62. nautobot/ipam/api/views.py +29 -16
  63. nautobot/ipam/filters.py +9 -1
  64. nautobot/ipam/forms.py +8 -0
  65. nautobot/ipam/tables.py +1 -1
  66. nautobot/ipam/tests/test_api.py +15 -20
  67. nautobot/ipam/tests/test_filters.py +15 -0
  68. nautobot/project-static/docs/404.html +83 -8
  69. nautobot/project-static/docs/apps/index.html +96 -10
  70. nautobot/project-static/docs/apps/nautobot-apps.html +96 -10
  71. nautobot/project-static/docs/assets/app-icons/icon-CapacityMetrics.svg +1 -0
  72. nautobot/project-static/docs/assets/app-icons/icon-CircuitMaintenance.png +0 -0
  73. nautobot/project-static/docs/assets/javascripts/{bundle.ebd0bdb7.min.js → bundle.fe8b6f2b.min.js} +4 -4
  74. nautobot/project-static/docs/assets/javascripts/{bundle.ebd0bdb7.min.js.map → bundle.fe8b6f2b.min.js.map} +3 -3
  75. nautobot/project-static/docs/assets/javascripts/glightbox.min.js +1 -0
  76. nautobot/project-static/docs/assets/stylesheets/glightbox.min.css +1 -0
  77. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +96 -10
  78. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +96 -10
  79. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +96 -10
  80. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +96 -10
  81. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +96 -10
  82. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +96 -10
  83. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +96 -10
  84. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +96 -10
  85. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +96 -10
  86. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +96 -10
  87. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +96 -10
  88. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +96 -10
  89. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +96 -10
  90. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +96 -10
  91. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +156 -12
  92. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +96 -10
  93. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +96 -10
  94. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +96 -10
  95. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +106 -11
  96. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +96 -10
  97. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +96 -10
  98. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +143 -11
  99. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +96 -10
  100. nautobot/project-static/docs/development/apps/api/configuration-view.html +96 -10
  101. nautobot/project-static/docs/development/apps/api/database-backend-config.html +96 -10
  102. nautobot/project-static/docs/development/apps/api/models/django-admin.html +96 -10
  103. nautobot/project-static/docs/development/apps/api/models/global-search.html +96 -10
  104. nautobot/project-static/docs/development/apps/api/models/graphql.html +96 -10
  105. nautobot/project-static/docs/development/apps/api/models/index.html +96 -10
  106. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +96 -10
  107. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +96 -10
  108. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +96 -10
  109. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +96 -10
  110. nautobot/project-static/docs/development/apps/api/platform-features/index.html +96 -10
  111. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +96 -10
  112. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +96 -10
  113. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +96 -10
  114. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +96 -10
  115. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +96 -10
  116. nautobot/project-static/docs/development/apps/api/prometheus.html +96 -10
  117. nautobot/project-static/docs/development/apps/api/setup.html +96 -10
  118. nautobot/project-static/docs/development/apps/api/testing.html +96 -10
  119. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +96 -10
  120. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +96 -10
  121. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +96 -10
  122. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +96 -10
  123. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +96 -10
  124. nautobot/project-static/docs/development/apps/api/views/base-template.html +96 -10
  125. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +96 -10
  126. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +96 -10
  127. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +96 -10
  128. nautobot/project-static/docs/development/apps/api/views/index.html +96 -10
  129. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +96 -10
  130. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +96 -10
  131. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +96 -10
  132. nautobot/project-static/docs/development/apps/api/views/notes.html +96 -10
  133. nautobot/project-static/docs/development/apps/api/views/rest-api.html +96 -10
  134. nautobot/project-static/docs/development/apps/api/views/urls.html +96 -10
  135. nautobot/project-static/docs/development/apps/index.html +96 -10
  136. nautobot/project-static/docs/development/apps/migration/code-updates.html +97 -11
  137. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +96 -10
  138. nautobot/project-static/docs/development/apps/migration/from-v1.html +96 -10
  139. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +96 -10
  140. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +96 -10
  141. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +96 -10
  142. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +96 -10
  143. nautobot/project-static/docs/development/apps/porting-from-netbox.html +96 -10
  144. nautobot/project-static/docs/development/core/application-registry.html +96 -10
  145. nautobot/project-static/docs/development/core/best-practices.html +96 -10
  146. nautobot/project-static/docs/development/core/bootstrap-ui.html +96 -10
  147. nautobot/project-static/docs/development/core/caching.html +96 -10
  148. nautobot/project-static/docs/development/core/controllers.html +96 -10
  149. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +96 -10
  150. nautobot/project-static/docs/development/core/generic-views.html +96 -10
  151. nautobot/project-static/docs/development/core/getting-started.html +98 -13
  152. nautobot/project-static/docs/development/core/homepage.html +96 -10
  153. nautobot/project-static/docs/development/core/index.html +96 -10
  154. nautobot/project-static/docs/development/core/model-checklist.html +96 -10
  155. nautobot/project-static/docs/development/core/model-features.html +96 -10
  156. nautobot/project-static/docs/development/core/natural-keys.html +96 -10
  157. nautobot/project-static/docs/development/core/navigation-menu.html +96 -10
  158. nautobot/project-static/docs/development/core/release-checklist.html +96 -10
  159. nautobot/project-static/docs/development/core/role-internals.html +96 -10
  160. nautobot/project-static/docs/development/core/settings.html +96 -10
  161. nautobot/project-static/docs/development/core/style-guide.html +96 -10
  162. nautobot/project-static/docs/development/core/templates.html +96 -10
  163. nautobot/project-static/docs/development/core/testing.html +109 -11
  164. nautobot/project-static/docs/development/core/user-preferences.html +96 -10
  165. nautobot/project-static/docs/development/index.html +96 -10
  166. nautobot/project-static/docs/development/jobs/index.html +96 -10
  167. nautobot/project-static/docs/development/jobs/migration/from-v1.html +96 -10
  168. nautobot/project-static/docs/index.html +13 -8362
  169. nautobot/project-static/docs/objects.inv +0 -0
  170. nautobot/project-static/docs/overview/application_stack.html +8229 -0
  171. nautobot/project-static/docs/overview/design_philosophy.html +8158 -0
  172. nautobot/project-static/docs/overview/index.html +8230 -0
  173. nautobot/project-static/docs/release-notes/index.html +96 -10
  174. nautobot/project-static/docs/release-notes/version-1.0.html +96 -10
  175. nautobot/project-static/docs/release-notes/version-1.1.html +96 -10
  176. nautobot/project-static/docs/release-notes/version-1.2.html +96 -10
  177. nautobot/project-static/docs/release-notes/version-1.3.html +96 -10
  178. nautobot/project-static/docs/release-notes/version-1.4.html +96 -10
  179. nautobot/project-static/docs/release-notes/version-1.5.html +96 -10
  180. nautobot/project-static/docs/release-notes/version-1.6.html +96 -10
  181. nautobot/project-static/docs/release-notes/version-2.0.html +96 -10
  182. nautobot/project-static/docs/release-notes/version-2.1.html +96 -10
  183. nautobot/project-static/docs/release-notes/version-2.2.html +516 -131
  184. nautobot/project-static/docs/requirements.txt +2 -1
  185. nautobot/project-static/docs/search/search_index.json +1 -1
  186. nautobot/project-static/docs/sitemap.xml +268 -258
  187. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  188. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +96 -10
  189. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +96 -10
  190. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +96 -10
  191. nautobot/project-static/docs/user-guide/administration/configuration/index.html +96 -10
  192. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +96 -10
  193. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +96 -10
  194. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +96 -10
  195. nautobot/project-static/docs/user-guide/administration/guides/caching.html +96 -10
  196. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +96 -10
  197. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +96 -10
  198. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +96 -10
  199. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +96 -10
  200. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +96 -10
  201. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +96 -10
  202. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +96 -10
  203. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +96 -10
  204. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +96 -10
  205. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +96 -10
  206. nautobot/project-static/docs/user-guide/administration/installation/index.html +96 -10
  207. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +96 -10
  208. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +96 -10
  209. nautobot/project-static/docs/user-guide/administration/installation/services.html +96 -10
  210. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +96 -10
  211. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +96 -10
  212. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +96 -10
  213. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +96 -10
  214. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +96 -10
  215. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +96 -10
  216. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +96 -10
  217. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +96 -10
  218. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +96 -10
  219. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +96 -10
  220. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +96 -10
  221. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +96 -10
  222. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +96 -10
  223. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +96 -10
  224. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +1 -1
  225. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +97 -11
  226. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +96 -10
  227. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +96 -10
  228. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +96 -10
  229. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +96 -10
  230. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +96 -10
  231. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +96 -10
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +96 -10
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +96 -10
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +96 -10
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +96 -10
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +96 -10
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +96 -10
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +96 -10
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +96 -10
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +96 -10
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +96 -10
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +96 -10
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +96 -10
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +96 -10
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +96 -10
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +96 -10
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +96 -10
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +96 -10
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +96 -10
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +96 -10
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +96 -10
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +96 -10
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +96 -10
  254. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +96 -10
  255. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +96 -10
  256. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +96 -10
  257. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +96 -10
  258. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +96 -10
  259. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +96 -10
  260. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +96 -10
  261. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +96 -10
  262. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +96 -10
  263. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +96 -10
  264. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +96 -10
  265. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +96 -10
  266. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +96 -10
  267. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +96 -10
  268. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +96 -10
  269. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +96 -10
  270. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +96 -10
  271. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +96 -10
  272. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +96 -10
  273. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +96 -10
  274. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +96 -10
  275. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +96 -10
  276. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +96 -10
  277. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +96 -10
  278. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +96 -10
  279. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +96 -10
  280. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +96 -10
  281. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +96 -10
  282. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +96 -10
  283. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +96 -10
  284. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +96 -10
  285. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +96 -10
  286. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +96 -10
  287. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +96 -10
  288. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +96 -10
  289. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +96 -10
  290. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +96 -10
  291. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +96 -10
  292. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +96 -10
  293. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +96 -10
  294. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +96 -10
  295. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +96 -10
  296. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +96 -10
  297. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +96 -10
  298. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +96 -10
  299. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +96 -10
  300. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +96 -10
  301. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +96 -10
  302. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +96 -10
  303. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +96 -10
  304. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +96 -10
  305. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +96 -10
  306. nautobot/project-static/docs/user-guide/index.html +99 -13
  307. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +96 -10
  308. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +96 -10
  309. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +96 -10
  310. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +96 -10
  311. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +96 -10
  312. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +96 -10
  313. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +96 -10
  314. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +96 -10
  315. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +96 -10
  316. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +96 -10
  317. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +96 -10
  318. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +97 -11
  319. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +96 -10
  320. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +101 -14
  321. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +96 -10
  322. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +96 -10
  323. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +96 -10
  324. nautobot/project-static/docs/user-guide/platform-functionality/note.html +96 -10
  325. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +96 -10
  326. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +96 -10
  327. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +96 -10
  328. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +96 -10
  329. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +96 -10
  330. nautobot/project-static/docs/user-guide/platform-functionality/role.html +96 -10
  331. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +96 -10
  332. nautobot/project-static/docs/user-guide/platform-functionality/status.html +96 -10
  333. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +96 -10
  334. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +96 -10
  335. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +96 -10
  336. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +96 -10
  337. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +96 -10
  338. nautobot/project-static/js/connection_toggles.js +7 -6
  339. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/METADATA +2 -2
  340. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/RECORD +344 -311
  341. nautobot/extras/tests/test_git.py +0 -23
  342. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/LICENSE.txt +0 -0
  343. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/NOTICE +0 -0
  344. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/WHEEL +0 -0
  345. {nautobot-2.2.5.dist-info → nautobot-2.2.7.dist-info}/entry_points.txt +0 -0
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../../../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.23">
21
+ <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.28">
22
22
 
23
23
 
24
24
 
@@ -67,7 +67,16 @@
67
67
 
68
68
 
69
69
 
70
- </head>
70
+ <link href="../../../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
71
+ html.glightbox-open { overflow: initial; height: 100%; }
72
+ .gslide-title { margin-top: 0px; user-select: text; }
73
+ .gslide-desc { color: #666; user-select: text; }
74
+ .gslide-image img { background: white; }
75
+ .gscrollbar-fixer { padding-right: 15px; }
76
+ .gdesc-inner { font-size: 0.75rem; }
77
+ body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
78
+ body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
79
+ body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../../../assets/javascripts/glightbox.min.js"></script></head>
71
80
 
72
81
 
73
82
 
@@ -102,7 +111,7 @@
102
111
 
103
112
  <header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
104
113
  <nav class="md-header__inner md-grid" aria-label="Header">
105
- <a href="../../../index.html" title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
114
+ <a href="../../.." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
106
115
 
107
116
  <img src="../../../assets/nautobot_logo.svg" alt="logo">
108
117
 
@@ -191,7 +200,7 @@
191
200
 
192
201
  </form>
193
202
  <div class="md-search__output">
194
- <div class="md-search__scrollwrap" data-md-scrollfix>
203
+ <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
195
204
  <div class="md-search-result" data-md-component="search-result">
196
205
  <div class="md-search-result__meta">
197
206
  Initializing search
@@ -229,7 +238,7 @@
229
238
 
230
239
 
231
240
  <li class="md-tabs__item">
232
- <a href="../../../index.html" class="md-tabs__link">
241
+ <a href="../../../overview/index.html" class="md-tabs__link">
233
242
 
234
243
 
235
244
 
@@ -356,7 +365,7 @@
356
365
 
357
366
  <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
358
367
  <label class="md-nav__title" for="__drawer">
359
- <a href="../../../index.html" title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
368
+ <a href="../../.." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
360
369
 
361
370
  <img src="../../../assets/nautobot_logo.svg" alt="logo">
362
371
 
@@ -384,17 +393,92 @@
384
393
 
385
394
 
386
395
 
387
- <li class="md-nav__item">
388
- <a href="../../../index.html" class="md-nav__link">
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+ <li class="md-nav__item md-nav__item--nested">
404
+
405
+
406
+
407
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
389
408
 
409
+
410
+
411
+ <div class="md-nav__link md-nav__container">
412
+ <a href="../../../overview/index.html" class="md-nav__link ">
413
+
390
414
 
391
415
  <span class="md-ellipsis">
392
416
  Overview
393
417
  </span>
394
418
 
395
419
 
420
+ </a>
421
+
422
+
423
+ <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
424
+ <span class="md-nav__icon md-icon"></span>
425
+ </label>
426
+
427
+ </div>
428
+
429
+ <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
430
+ <label class="md-nav__title" for="__nav_1">
431
+ <span class="md-nav__icon md-icon"></span>
432
+ Overview
433
+ </label>
434
+ <ul class="md-nav__list" data-md-scrollfix>
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+ <li class="md-nav__item">
443
+ <a href="../../../overview/design_philosophy.html" class="md-nav__link">
444
+
445
+
446
+ <span class="md-ellipsis">
447
+ Design Philosophy
448
+ </span>
449
+
450
+
451
+ </a>
452
+ </li>
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+ <li class="md-nav__item">
464
+ <a href="../../../overview/application_stack.html" class="md-nav__link">
465
+
466
+
467
+ <span class="md-ellipsis">
468
+ Application Stack
469
+ </span>
470
+
471
+
396
472
  </a>
397
473
  </li>
474
+
475
+
476
+
477
+
478
+ </ul>
479
+ </nav>
480
+
481
+ </li>
398
482
 
399
483
 
400
484
 
@@ -8165,10 +8249,12 @@
8165
8249
  <script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8166
8250
 
8167
8251
 
8168
- <script src="../../../assets/javascripts/bundle.ebd0bdb7.min.js"></script>
8252
+ <script src="../../../assets/javascripts/bundle.fe8b6f2b.min.js"></script>
8169
8253
 
8170
8254
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
8171
8255
 
8172
8256
 
8173
- </body>
8257
+ <script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
8258
+ document$.subscribe(() => { lightbox.reload() });
8259
+ </script></body>
8174
8260
  </html>
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../../../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.23">
21
+ <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.28">
22
22
 
23
23
 
24
24
 
@@ -67,7 +67,16 @@
67
67
 
68
68
 
69
69
 
70
- </head>
70
+ <link href="../../../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
71
+ html.glightbox-open { overflow: initial; height: 100%; }
72
+ .gslide-title { margin-top: 0px; user-select: text; }
73
+ .gslide-desc { color: #666; user-select: text; }
74
+ .gslide-image img { background: white; }
75
+ .gscrollbar-fixer { padding-right: 15px; }
76
+ .gdesc-inner { font-size: 0.75rem; }
77
+ body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
78
+ body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
79
+ body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../../../assets/javascripts/glightbox.min.js"></script></head>
71
80
 
72
81
 
73
82
 
@@ -102,7 +111,7 @@
102
111
 
103
112
  <header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
104
113
  <nav class="md-header__inner md-grid" aria-label="Header">
105
- <a href="../../../index.html" title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
114
+ <a href="../../.." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
106
115
 
107
116
  <img src="../../../assets/nautobot_logo.svg" alt="logo">
108
117
 
@@ -191,7 +200,7 @@
191
200
 
192
201
  </form>
193
202
  <div class="md-search__output">
194
- <div class="md-search__scrollwrap" data-md-scrollfix>
203
+ <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
195
204
  <div class="md-search-result" data-md-component="search-result">
196
205
  <div class="md-search-result__meta">
197
206
  Initializing search
@@ -229,7 +238,7 @@
229
238
 
230
239
 
231
240
  <li class="md-tabs__item">
232
- <a href="../../../index.html" class="md-tabs__link">
241
+ <a href="../../../overview/index.html" class="md-tabs__link">
233
242
 
234
243
 
235
244
 
@@ -356,7 +365,7 @@
356
365
 
357
366
  <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
358
367
  <label class="md-nav__title" for="__drawer">
359
- <a href="../../../index.html" title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
368
+ <a href="../../.." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
360
369
 
361
370
  <img src="../../../assets/nautobot_logo.svg" alt="logo">
362
371
 
@@ -384,17 +393,92 @@
384
393
 
385
394
 
386
395
 
387
- <li class="md-nav__item">
388
- <a href="../../../index.html" class="md-nav__link">
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+ <li class="md-nav__item md-nav__item--nested">
404
+
405
+
406
+
407
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
389
408
 
409
+
410
+
411
+ <div class="md-nav__link md-nav__container">
412
+ <a href="../../../overview/index.html" class="md-nav__link ">
413
+
390
414
 
391
415
  <span class="md-ellipsis">
392
416
  Overview
393
417
  </span>
394
418
 
395
419
 
420
+ </a>
421
+
422
+
423
+ <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
424
+ <span class="md-nav__icon md-icon"></span>
425
+ </label>
426
+
427
+ </div>
428
+
429
+ <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
430
+ <label class="md-nav__title" for="__nav_1">
431
+ <span class="md-nav__icon md-icon"></span>
432
+ Overview
433
+ </label>
434
+ <ul class="md-nav__list" data-md-scrollfix>
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+ <li class="md-nav__item">
443
+ <a href="../../../overview/design_philosophy.html" class="md-nav__link">
444
+
445
+
446
+ <span class="md-ellipsis">
447
+ Design Philosophy
448
+ </span>
449
+
450
+
451
+ </a>
452
+ </li>
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+ <li class="md-nav__item">
464
+ <a href="../../../overview/application_stack.html" class="md-nav__link">
465
+
466
+
467
+ <span class="md-ellipsis">
468
+ Application Stack
469
+ </span>
470
+
471
+
396
472
  </a>
397
473
  </li>
474
+
475
+
476
+
477
+
478
+ </ul>
479
+ </nav>
480
+
481
+ </li>
398
482
 
399
483
 
400
484
 
@@ -8006,10 +8090,12 @@
8006
8090
  <script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8007
8091
 
8008
8092
 
8009
- <script src="../../../assets/javascripts/bundle.ebd0bdb7.min.js"></script>
8093
+ <script src="../../../assets/javascripts/bundle.fe8b6f2b.min.js"></script>
8010
8094
 
8011
8095
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
8012
8096
 
8013
8097
 
8014
- </body>
8098
+ <script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
8099
+ document$.subscribe(() => { lightbox.reload() });
8100
+ </script></body>
8015
8101
  </html>
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../../../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.23">
21
+ <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.28">
22
22
 
23
23
 
24
24
 
@@ -67,7 +67,16 @@
67
67
 
68
68
 
69
69
 
70
- </head>
70
+ <link href="../../../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
71
+ html.glightbox-open { overflow: initial; height: 100%; }
72
+ .gslide-title { margin-top: 0px; user-select: text; }
73
+ .gslide-desc { color: #666; user-select: text; }
74
+ .gslide-image img { background: white; }
75
+ .gscrollbar-fixer { padding-right: 15px; }
76
+ .gdesc-inner { font-size: 0.75rem; }
77
+ body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
78
+ body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
79
+ body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../../../assets/javascripts/glightbox.min.js"></script></head>
71
80
 
72
81
 
73
82
 
@@ -102,7 +111,7 @@
102
111
 
103
112
  <header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
104
113
  <nav class="md-header__inner md-grid" aria-label="Header">
105
- <a href="../../../index.html" title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
114
+ <a href="../../.." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
106
115
 
107
116
  <img src="../../../assets/nautobot_logo.svg" alt="logo">
108
117
 
@@ -191,7 +200,7 @@
191
200
 
192
201
  </form>
193
202
  <div class="md-search__output">
194
- <div class="md-search__scrollwrap" data-md-scrollfix>
203
+ <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
195
204
  <div class="md-search-result" data-md-component="search-result">
196
205
  <div class="md-search-result__meta">
197
206
  Initializing search
@@ -229,7 +238,7 @@
229
238
 
230
239
 
231
240
  <li class="md-tabs__item">
232
- <a href="../../../index.html" class="md-tabs__link">
241
+ <a href="../../../overview/index.html" class="md-tabs__link">
233
242
 
234
243
 
235
244
 
@@ -356,7 +365,7 @@
356
365
 
357
366
  <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
358
367
  <label class="md-nav__title" for="__drawer">
359
- <a href="../../../index.html" title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
368
+ <a href="../../.." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
360
369
 
361
370
  <img src="../../../assets/nautobot_logo.svg" alt="logo">
362
371
 
@@ -384,17 +393,92 @@
384
393
 
385
394
 
386
395
 
387
- <li class="md-nav__item">
388
- <a href="../../../index.html" class="md-nav__link">
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+ <li class="md-nav__item md-nav__item--nested">
404
+
405
+
406
+
407
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
389
408
 
409
+
410
+
411
+ <div class="md-nav__link md-nav__container">
412
+ <a href="../../../overview/index.html" class="md-nav__link ">
413
+
390
414
 
391
415
  <span class="md-ellipsis">
392
416
  Overview
393
417
  </span>
394
418
 
395
419
 
420
+ </a>
421
+
422
+
423
+ <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
424
+ <span class="md-nav__icon md-icon"></span>
425
+ </label>
426
+
427
+ </div>
428
+
429
+ <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
430
+ <label class="md-nav__title" for="__nav_1">
431
+ <span class="md-nav__icon md-icon"></span>
432
+ Overview
433
+ </label>
434
+ <ul class="md-nav__list" data-md-scrollfix>
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+ <li class="md-nav__item">
443
+ <a href="../../../overview/design_philosophy.html" class="md-nav__link">
444
+
445
+
446
+ <span class="md-ellipsis">
447
+ Design Philosophy
448
+ </span>
449
+
450
+
451
+ </a>
452
+ </li>
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+ <li class="md-nav__item">
464
+ <a href="../../../overview/application_stack.html" class="md-nav__link">
465
+
466
+
467
+ <span class="md-ellipsis">
468
+ Application Stack
469
+ </span>
470
+
471
+
396
472
  </a>
397
473
  </li>
474
+
475
+
476
+
477
+
478
+ </ul>
479
+ </nav>
480
+
481
+ </li>
398
482
 
399
483
 
400
484
 
@@ -7960,10 +8044,12 @@
7960
8044
  <script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
7961
8045
 
7962
8046
 
7963
- <script src="../../../assets/javascripts/bundle.ebd0bdb7.min.js"></script>
8047
+ <script src="../../../assets/javascripts/bundle.fe8b6f2b.min.js"></script>
7964
8048
 
7965
8049
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
7966
8050
 
7967
8051
 
7968
- </body>
8052
+ <script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
8053
+ document$.subscribe(() => { lightbox.reload() });
8054
+ </script></body>
7969
8055
  </html>