From f6f623eeead4db2c06f4d3bc418df0b354d66212 Mon Sep 17 00:00:00 2001 From: Accusys Date: Tue, 19 May 2026 03:14:18 +0800 Subject: [PATCH] docs: add 13_config to USER_MODULES + regenerate docs --- docs_v1.0/{doc_developer => doc}/13_config.html | 0 docs_v1.0/doc/index.html | 2 +- docs_v1.0/doc_developer/index.html | 2 +- docs_v1.0/doc_wasm/index.html | 1 + scripts/build_docs.py | 3 ++- 5 files changed, 5 insertions(+), 3 deletions(-) rename docs_v1.0/{doc_developer => doc}/13_config.html (100%) diff --git a/docs_v1.0/doc_developer/13_config.html b/docs_v1.0/doc/13_config.html similarity index 100% rename from docs_v1.0/doc_developer/13_config.html rename to docs_v1.0/doc/13_config.html diff --git a/docs_v1.0/doc/index.html b/docs_v1.0/doc/index.html index ae9d116..ffef89b 100644 --- a/docs_v1.0/doc/index.html +++ b/docs_v1.0/doc/index.html @@ -29,7 +29,7 @@ a:hover td { background: #f8f8f8; border-radius: 4px; } Logout

API 參考手冊 — 登入後可瀏覽各模組文件

-
安全認證Authentication
健康檢查Health
檔案註冊File Registration
檔案屬性查詢File Lookup
處理流程Processing
搜尋功能Search
身份識別Identity
智能身份綁定Smart Identity Binding
串流與截圖Streaming & Thumbnails
TMDb 整合TMDb Integration
生產線Pipeline
智慧代理AI Agents
+
安全認證Authentication
健康檢查Health
檔案註冊File Registration
檔案屬性查詢File Lookup
處理流程Processing
搜尋功能Search
身份識別Identity
智能身份綁定Smart Identity Binding
串流與截圖Streaming & Thumbnails
TMDb 整合TMDb Integration
生產線Pipeline
智慧代理AI Agents
系統設定System Config
\ No newline at end of file diff --git a/docs_v1.0/doc_developer/index.html b/docs_v1.0/doc_developer/index.html index c00b21f..033e6da 100644 --- a/docs_v1.0/doc_developer/index.html +++ b/docs_v1.0/doc_developer/index.html @@ -29,7 +29,7 @@ a:hover td { background: #f8f8f8; border-radius: 4px; } Logout

API 參考手冊 — 登入後可瀏覽各模組文件

-
錯誤碼Error Codes
13 Config
+
錯誤碼Error Codes
\ No newline at end of file diff --git a/docs_v1.0/doc_wasm/index.html b/docs_v1.0/doc_wasm/index.html index 04c520f..863236d 100644 --- a/docs_v1.0/doc_wasm/index.html +++ b/docs_v1.0/doc_wasm/index.html @@ -60,6 +60,7 @@ const MODULES = [ ["09_tmdb","TMDb 整合","TMDb Integration"], ["10_pipeline","生產線","Pipeline"], ["12_agent","智慧代理","AI Agents"], + ["13_config","系統設定","System Config"], ]; const el = document.getElementById('content'); diff --git a/scripts/build_docs.py b/scripts/build_docs.py index bf6a075..4840de4 100644 --- a/scripts/build_docs.py +++ b/scripts/build_docs.py @@ -10,7 +10,7 @@ DOC_DEV_DIR = os.path.join(os.path.dirname(__file__), "..", "docs_v1.0", "doc_de USER_MODULES = { "01_auth", "02_health", "03_register", "04_lookup", "05_process", "06_search", "07_identity", "08_identity_agent", "08_media", - "09_tmdb", "10_pipeline", "12_agent", + "09_tmdb", "10_pipeline", "12_agent", "13_config", } @@ -87,6 +87,7 @@ MODULE_LABELS = { "10_pipeline": "生產線|Pipeline", "11_error_codes": "錯誤碼|Error Codes", "12_agent": "智慧代理|AI Agents", + "13_config": "系統設定|System Config", } def build_html(md_text: str, title: str) -> str: