From 64401c4040e84c32f2cd4e430cb1b11e06bf95e6 Mon Sep 17 00:00:00 2001 From: Thomas Moraine Date: Tue, 23 Jun 2026 09:41:13 +0200 Subject: [PATCH] docs: make a more logical doc structure for xo6 (#9972) This commit creates a new, refreshed tree structure for the XO 6 documentation, which we intend to be more helpful for readers and XO 6 users. New sections are created, to be completed later. Additionnally, the ACLv2/RBAC page has been moved from the Support section to the Security section. Signed-off-by: Thomas Moraine --- docs/docs/xo6/backups.md | 1 + docs/docs/xo6/coreconcepts.md | 1 + docs/docs/xo6/gettingstarted.md | 1 + docs/docs/xo6/management.md | 1 + docs/docs/xo6/whatsnew.md | 4 +++ docs/docs/xo6/xo6vsxo5.md | 4 +++ docs/sidebars.ts | 64 ++++++++++++++++++++++++++++++++- 7 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 docs/docs/xo6/backups.md create mode 100644 docs/docs/xo6/coreconcepts.md create mode 100644 docs/docs/xo6/gettingstarted.md create mode 100644 docs/docs/xo6/management.md create mode 100644 docs/docs/xo6/whatsnew.md create mode 100644 docs/docs/xo6/xo6vsxo5.md diff --git a/docs/docs/xo6/backups.md b/docs/docs/xo6/backups.md new file mode 100644 index 0000000000..8c0c04ce24 --- /dev/null +++ b/docs/docs/xo6/backups.md @@ -0,0 +1 @@ +# Backups \ No newline at end of file diff --git a/docs/docs/xo6/coreconcepts.md b/docs/docs/xo6/coreconcepts.md new file mode 100644 index 0000000000..701bc8bcf0 --- /dev/null +++ b/docs/docs/xo6/coreconcepts.md @@ -0,0 +1 @@ +# Core concepts \ No newline at end of file diff --git a/docs/docs/xo6/gettingstarted.md b/docs/docs/xo6/gettingstarted.md new file mode 100644 index 0000000000..3d7219c52a --- /dev/null +++ b/docs/docs/xo6/gettingstarted.md @@ -0,0 +1 @@ +# Getting started \ No newline at end of file diff --git a/docs/docs/xo6/management.md b/docs/docs/xo6/management.md new file mode 100644 index 0000000000..669db3f430 --- /dev/null +++ b/docs/docs/xo6/management.md @@ -0,0 +1 @@ +# Management \ No newline at end of file diff --git a/docs/docs/xo6/whatsnew.md b/docs/docs/xo6/whatsnew.md new file mode 100644 index 0000000000..12ce1dd473 --- /dev/null +++ b/docs/docs/xo6/whatsnew.md @@ -0,0 +1,4 @@ +--- +id: whatsnew +title: What's new +--- \ No newline at end of file diff --git a/docs/docs/xo6/xo6vsxo5.md b/docs/docs/xo6/xo6vsxo5.md new file mode 100644 index 0000000000..51c0075a15 --- /dev/null +++ b/docs/docs/xo6/xo6vsxo5.md @@ -0,0 +1,4 @@ +--- +id: xo6vsxo5 +title: XO 6 vs. XO 5 +--- \ No newline at end of file diff --git a/docs/sidebars.ts b/docs/sidebars.ts index 42aa3f8184..0597b889e6 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -44,6 +44,69 @@ export default { collapsible: true, collapsed: false, items:[ + { + type: 'category', + label: 'What\'s new in XO6', + collapsible: true, + collapsed: true, + items:[ + 'xo6/whatsnew', + 'xo6/xo6vsxo5', + ], + }, + { + type: 'category', + label: 'Getting started', + collapsible: true, + collapsed: true, + items:[ + 'xo6/gettingstarted', + ], + }, + { + type: 'category', + label: 'Core concepts', + collapsible: true, + collapsed: true, + items:[ + 'xo6/coreconcepts', + ], + }, + { + type: 'category', + label: 'Management', + collapsible: true, + collapsed: true, + items:[ + 'xo6/management', + ], + }, + { + type: 'category', + label: 'Backups', + collapsible: true, + collapsed: true, + items:[ + 'xo6/backups', + ], + }, + { + type: 'category', + label: 'Security', + collapsible: true, + collapsed: true, + items:[ + { + type: 'category', + label: 'User management', + collapsible: true, + collapsed: true, + items:[ + 'xo6/acl-v2', + ], + }, + ], + }, { type: 'category', label: 'Support', @@ -51,7 +114,6 @@ export default { collapsed: true, items: [ 'xo6/intro_support', - 'xo6/acl-v2', 'xo6/purchase', 'xo6/community' ],