// Populate the sidebar
//
// This is a script, and not included directly in the page, to control the total size of the book.
// The TOC contains an entry for each page, so if each page includes a copy of the TOC,
// the total size of the page becomes O(n**2).
class MDBookSidebarScrollbox extends HTMLElement {
constructor() {
super();
}
connectedCallback() {
this.innerHTML = '
- Home
- 1. Installation Guide
- 2. Getting Started
- 3. Quick Start Cheatsheet
- 4. Setup Quick Start
- 5. Setup System Guide
- 6. Quick Start (Full)
- 7. Prerequisites
- 8. Installation Steps
- 9. First Deployment
- 10. Verification
- 11. Platform Service Configuration
- 12. System Overview
- 13. Architecture Overview
- 14. Design Principles
- 15. Integration Patterns
- 16. Orchestrator Integration Model
- 17. Multi-Repo Architecture
- 18. Multi-Repo Strategy
- 19. Database and Config Architecture
- 20. Ecosystem Integration
- 21. Package and Loader System
- 22. Nickel vs KCL Comparison
- 23. Nickel Executable Examples
- 24. Orchestrator Info
- 25. Orchestrator Auth Integration
- 26. Repo Dist Analysis
- 27. TypeDialog Nickel Integration
- 28. ADR-001: Project Structure
- 29. ADR-002: Distribution Strategy
- 30. ADR-003: Workspace Isolation
- 31. ADR-004: Hybrid Architecture
- 32. ADR-005: Extension Framework
- 33. ADR-006: Provisioning CLI Refactoring
- 34. ADR-007: KMS Simplification
- 35. ADR-008: Cedar Authorization
- 36. ADR-009: Security System Complete
- 37. ADR-010: Configuration Format Strategy
- 38. ADR-011: Nickel Migration
- 39. ADR-012: Nushell Nickel Plugin CLI Wrapper
- 40. REST API
- 41. WebSocket
- 42. Extensions
- 43. SDKs
- 44. Integration Examples
- 45. Provider API
- 46. NuShell API
- 47. Path Resolution
- 48. Extension Development
- 49. Infrastructure-Specific Extensions
- 50. Quick Provider Guide
- 51. Command Handler Guide
- 52. Configuration
- 53. Workflow
- 54. Integration
- 55. Build System
- 56. Extensions
- 57. Distribution Process
- 58. Implementation Guide
- 59. TaskServ Developer Guide
- 60. TaskServ Quick Guide
- 61. Project Structure
- 62. Provider Agnostic Architecture
- 63. Ctrl-C Implementation Notes
- 64. Auth Metadata Guide
- 65. Migration Guide
- 66. KMS Simplification
- 67. Migration Example
- 68. Glossary
- 69. Provider Distribution Guide
- 70. TaskServ Categorization
- 71. Extension Registry
- 72. MCP Server
- 73. TypeDialog Platform Config Guide
- 74. Platform Deployment Guide
- 75. Service Management Guide
- 76. Monitoring & Alerting Setup
- 77. Service Management Quick Reference
- 78. CoreDNS Guide
- 79. Backup Recovery
- 80. Deployment
- 81. Monitoring
- 82. Production Readiness Checklist
- 83. Break Glass Training Guide
- 84. Cedar Policies Production Guide
- 85. MFA Admin Setup Guide
- 86. Orchestrator
- 87. Orchestrator System
- 88. Control Center
- 89. Installer
- 90. Installer System
- 91. Provisioning Server
- 92. Infrastructure Management
- 93. Infrastructure from Code Guide
- 94. Batch Workflow System
- 95. CLI Architecture
- 96. Configuration System
- 97. Workspace Setup
- 98. Workspace Switching Guide
- 99. Workspace Switching System
- 100. CLI Reference
- 101. Workspace Config Architecture
- 102. Dynamic Secrets Guide
- 103. Mode System Guide
- 104. Workspace Guide
- 105. Workspace Enforcement Guide
- 106. Workspace Infra Reference
- 107. Workspace Config Commands
- 108. Config Rendering Guide
- 109. Configuration
- 110. Authentication Layer Guide
- 111. Config Encryption Guide
- 112. Security System
- 113. RustyVault KMS Guide
- 114. SecretumVault KMS Guide
- 115. SSH Temporal Keys User Guide
- 116. Plugin Integration Guide
- 117. NuShell Plugins Guide
- 118. NuShell Plugins System
- 119. Plugin Usage Guide
- 120. Secrets Management Guide
- 121. Auth Quick Reference
- 122. Config Encryption Quick Reference
- 123. KMS Service
- 124. Gitea Integration Guide
- 125. Service Mesh Ingress Guide
- 126. OCI Registry Guide
- 127. Integrations Quick Start
- 128. Secrets Service Layer Complete
- 129. OCI Registry Platform
- 130. Test Environment Guide
- 131. Test Environment Usage
- 132. Test Environment System
- 133. TaskServ Validation Guide
- 134. Troubleshooting Guide
- 135. From Scratch
- 136. Update Infrastructure
- 137. Customize Infrastructure
- 138. Extension Development Quickstart
- 139. Guide System
- 140. Workspace Generation Quick Reference
- 141. Master Index
- 142. Platform Operations Cheatsheet
- 143. General Commands
- 144. JustFile Recipes
- 145. OCI Registry
- 146. Sudo Password Handling
- 147. Config Validation
- 148. Workspace Config Architecture
';
// Set the current, active page, and reveal it if it's hidden
let current_page = document.location.href.toString().split("#")[0].split("?")[0];
if (current_page.endsWith("/")) {
current_page += "index.html";
}
var links = Array.prototype.slice.call(this.querySelectorAll("a"));
var l = links.length;
for (var i = 0; i < l; ++i) {
var link = links[i];
var href = link.getAttribute("href");
if (href && !href.startsWith("#") && !/^(?:[a-z+]+:)?\/\//.test(href)) {
link.href = path_to_root + href;
}
// The "index" page is supposed to alias the first chapter in the book.
if (link.href === current_page || (i === 0 && path_to_root === "" && current_page.endsWith("/index.html"))) {
link.classList.add("active");
var parent = link.parentElement;
if (parent && parent.classList.contains("chapter-item")) {
parent.classList.add("expanded");
}
while (parent) {
if (parent.tagName === "LI" && parent.previousElementSibling) {
if (parent.previousElementSibling.classList.contains("chapter-item")) {
parent.previousElementSibling.classList.add("expanded");
}
}
parent = parent.parentElement;
}
}
}
// Track and set sidebar scroll position
this.addEventListener('click', function(e) {
if (e.target.tagName === 'A') {
sessionStorage.setItem('sidebar-scroll', this.scrollTop);
}
}, { passive: true });
var sidebarScrollTop = sessionStorage.getItem('sidebar-scroll');
sessionStorage.removeItem('sidebar-scroll');
if (sidebarScrollTop) {
// preserve sidebar scroll position when navigating via links within sidebar
this.scrollTop = sidebarScrollTop;
} else {
// scroll sidebar to current active section when navigating via "next/previous chapter" buttons
var activeSection = document.querySelector('#sidebar .active');
if (activeSection) {
activeSection.scrollIntoView({ block: 'center' });
}
}
// Toggle buttons
var sidebarAnchorToggles = document.querySelectorAll('#sidebar a.toggle');
function toggleSection(ev) {
ev.currentTarget.parentElement.classList.toggle('expanded');
}
Array.from(sidebarAnchorToggles).forEach(function (el) {
el.addEventListener('click', toggleSection);
});
}
}
window.customElements.define("mdbook-sidebar-scrollbox", MDBookSidebarScrollbox);