// 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. Installation Validation Guide
- 3. Getting Started
- 4. Quick Start Cheatsheet
- 5. Setup Quick Start
- 6. Setup System Guide
- 7. Quick Start (Full)
- 8. Prerequisites
- 9. Installation Steps
- 10. First Deployment
- 11. Verification
- 12. Platform Service Configuration
- 13. System Overview
- 14. Architecture Overview
- 15. Design Principles
- 16. Integration Patterns
- 17. Orchestrator Integration Model
- 18. Multi-Repo Architecture
- 19. Multi-Repo Strategy
- 20. Database and Config Architecture
- 21. Ecosystem Integration
- 22. Package and Loader System
- 23. Config Loading Architecture
- 24. Nickel Executable Examples
- 25. Orchestrator Info
- 26. Orchestrator Auth Integration
- 27. Repo Dist Analysis
- 28. TypeDialog Nickel Integration
- 29. ADR-001: Project Structure
- 30. ADR-002: Distribution Strategy
- 31. ADR-003: Workspace Isolation
- 32. ADR-004: Hybrid Architecture
- 33. ADR-005: Extension Framework
- 34. ADR-006: Provisioning CLI Refactoring
- 35. ADR-007: KMS Simplification
- 36. ADR-008: Cedar Authorization
- 37. ADR-009: Security System Complete
- 38. ADR-010: Configuration Format Strategy
- 39. ADR-011: Nickel Migration
- 40. ADR-012: Nushell Nickel Plugin CLI Wrapper
- 41. ADR-013: Typdialog Web UI Backend Integration
- 42. ADR-014: SecretumVault Integration
- 43. ADR-015: AI Integration Architecture
- 44. Overview
- 45. Architecture
- 46. Natural Language Configuration
- 47. AI-Assisted Forms
- 48. AI Agents
- 49. Configuration Generation
- 50. RAG System
- 51. MCP Integration
- 52. Security Policies
- 53. Troubleshooting with AI
- 54. API Reference
- 55. Configuration
- 56. Cost Management
- 57. REST API
- 58. WebSocket
- 59. Extensions
- 60. SDKs
- 61. Integration Examples
- 62. Provider API
- 63. NuShell API
- 64. Path Resolution
- 65. Extension Development
- 66. Infrastructure-Specific Extensions
- 67. Quick Provider Guide
- 68. Command Handler Guide
- 69. Configuration
- 70. Workflow
- 71. Integration
- 72. Build System
- 73. Extensions
- 74. Distribution Process
- 75. Implementation Guide
- 76. TaskServ Developer Guide
- 77. TaskServ Quick Guide
- 78. Project Structure
- 79. Provider Agnostic Architecture
- 80. Ctrl-C Implementation Notes
- 81. Auth Metadata Guide
- 82. Migration Guide
- 83. KMS Simplification
- 84. Migration Example
- 85. Glossary
- 86. Provider Distribution Guide
- 87. TaskServ Categorization
- 88. Extension Registry
- 89. MCP Server
- 90. TypeDialog Platform Config Guide
- 91. Provider Comparison Matrix
- 92. Platform Deployment Guide
- 93. Service Management Guide
- 94. Monitoring & Alerting Setup
- 95. Service Management Quick Reference
- 96. CoreDNS Guide
- 97. Backup Recovery
- 98. Deployment
- 99. Monitoring
- 100. Production Readiness Checklist
- 101. Break Glass Training Guide
- 102. Cedar Policies Production Guide
- 103. MFA Admin Setup Guide
- 104. Orchestrator
- 105. Orchestrator System
- 106. Control Center
- 107. Installer
- 108. Installer System
- 109. Provisioning Server
- 110. Infrastructure Management
- 111. Infrastructure from Code Guide
- 112. Batch Workflow System
- 113. Batch Workflow Multi-Provider Examples
- 114. CLI Architecture
- 115. Configuration System
- 116. Workspace Setup
- 117. Workspace Switching Guide
- 118. Workspace Switching System
- 119. CLI Reference
- 120. Workspace Config Architecture
- 121. Dynamic Secrets Guide
- 122. Mode System Guide
- 123. Workspace Guide
- 124. Workspace Enforcement Guide
- 125. Workspace Infra Reference
- 126. Workspace Config Commands
- 127. Config Rendering Guide
- 128. Configuration
- 129. Authentication Layer Guide
- 130. Config Encryption Guide
- 131. Security System
- 132. RustyVault KMS Guide
- 133. SecretumVault KMS Guide
- 134. SSH Temporal Keys User Guide
- 135. Plugin Integration Guide
- 136. NuShell Plugins Guide
- 137. NuShell Plugins System
- 138. Plugin Usage Guide
- 139. Secrets Management Guide
- 140. Auth Quick Reference
- 141. Config Encryption Quick Reference
- 142. KMS Service
- 143. Gitea Integration Guide
- 144. Service Mesh Ingress Guide
- 145. OCI Registry Guide
- 146. Integrations Quick Start
- 147. Secrets Service Layer Complete
- 148. OCI Registry Platform
- 149. Test Environment Guide
- 150. Test Environment Usage
- 151. Test Environment System
- 152. TaskServ Validation Guide
- 153. Troubleshooting Guide
- 154. From Scratch
- 155. Update Infrastructure
- 156. Customize Infrastructure
- 157. Infrastructure Setup
- 158. Extension Development Quickstart
- 159. Guide System
- 160. Workspace Generation Quick Reference
- 161. Workspace Documentation Migration
- 162. Multi-Provider Deployment Guide
- 163. Multi-Provider Networking with VPN
- 164. DigitalOcean Provider Guide
- 165. Hetzner Provider Guide
- 166. Multi-Provider Web App Workspace
- 167. Multi-Region High Availability Workspace
- 168. Cost-Optimized Multi-Provider Workspace
- 169. Master Index
- 170. Platform Operations Cheatsheet
- 171. General Commands
- 172. JustFile Recipes
- 173. OCI Registry
- 174. Sudo Password Handling
- 175. Config Validation
- 176. 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);