1+ /*
2+ * Licensed to the Apache Software Foundation (ASF) under one
3+ * or more contributor license agreements. See the NOTICE file
4+ * distributed with this work for additional information
5+ * regarding copyright ownership. The ASF licenses this file
6+ * to you under the Apache License, Version 2.0 (the
7+ * "License"); you may not use this file except in compliance
8+ * with the License. You may obtain a copy of the License at
9+ *
10+ * http://www.apache.org/licenses/LICENSE-2.0
11+ *
12+ * Unless required by applicable law or agreed to in writing, software
13+ * distributed under the License is distributed on an "AS IS" BASIS,
14+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ * See the License for the specific language governing permissions and
16+ * limitations under the License.
17+ */
18+
19+ export const enSidebar = {
20+ '/UserGuide/latest/' : [
21+ {
22+ text : 'IoTDB User Guide (V1.3.3)' ,
23+ children : [ ] ,
24+ } ,
25+ {
26+ text : 'Quick Start' ,
27+ link : 'QuickStart/QuickStart_apache' ,
28+ } ,
29+ {
30+ text : 'Deployment & Maintenance' ,
31+ collapsible : true ,
32+ prefix : 'Deployment-and-Maintenance/' ,
33+ // children: 'structure',
34+ children : [
35+ { text : 'Deployment form' , link : 'Deployment-form_apache' } ,
36+ { text : 'Obtain TimechoDB' , link : 'IoTDB-Package_apache' } ,
37+ { text : 'Database Resources' , link : 'Database-Resources' } ,
38+ { text : 'Environment Requirements' , link : 'Environment-Requirements' } ,
39+ {
40+ text : 'Stand-Alone Deployment' ,
41+ link : 'Stand-Alone-Deployment_apache' ,
42+ } ,
43+ { text : 'Cluster Deployment' , link : 'Cluster-Deployment_apache' } ,
44+ {
45+ text : 'Dual Active Deployment' ,
46+ link : 'Dual-Active-Deployment_apache' ,
47+ } ,
48+ { text : 'Docker Deployment' , link : 'Docker-Deployment_apache' } ,
49+ {
50+ text : 'Monitoring Panel Deployment' ,
51+ link : 'Monitoring-panel-deployment' ,
52+ } ,
53+ ] ,
54+ } ,
55+ {
56+ text : 'Basic Functions' ,
57+ collapsible : true ,
58+ prefix : 'Basic-Concept/' ,
59+ // children: 'structure',
60+ children : [
61+ {
62+ text : 'Data Modeling' ,
63+ collapsible : true ,
64+ children : [
65+ { text : 'Database Management' , link : 'Database-Management' } ,
66+ { text : 'Table Management' , link : 'Table-Management' } ,
67+ { text : 'Write&Updata Data' , link : 'Write-Updata-Data' } ,
68+ { text : 'Query Data' , link : 'Query-Data' } ,
69+ {
70+ text : 'Delete Data' ,
71+ collapsible : true ,
72+ children : [
73+ { text : 'Delete Data' , link : 'Delete-Data' } ,
74+ { text : 'TTL Delete Data' , link : 'TTL-Delete-Data' } ,
75+ ] ,
76+ } ,
77+ ] ,
78+ } ,
79+
80+ {
81+ text : 'Maintenance SQL' ,
82+ collapsible : true ,
83+ children : [
84+ { text : 'Query Performance Analysis' , link : 'Query-Performance-Analysis' } ,
85+ { text : 'Load Balance' , link : 'Load-Balance' } ,
86+ { text : 'Data Recovery' , link : 'Data-Recovery' } ,
87+ ] ,
88+ } ,
89+ ] ,
90+ } ,
91+ {
92+ text : 'Tools System' ,
93+ collapsible : true ,
94+ prefix : 'Tools-System/' ,
95+ // children: 'structure',
96+ children : [
97+ { text : 'CLI' , link : 'CLI' } ,
98+ ] ,
99+ } ,
100+ {
101+ text : 'SQL Manual' ,
102+ collapsible : true ,
103+ prefix : 'SQL-Manual/' ,
104+ // children: 'structure',
105+ children : [
106+ { text : 'Identifier' , link : 'Identifier' } ,
107+ { text : 'Keywords' , link : 'Keywords' } ,
108+ {
109+ text : 'Query statement' ,
110+ collapsible : true ,
111+ children : [
112+ { text : 'overview' , link : 'overview' } ,
113+ { text : 'SELECT Clause' , link : 'Select-Clause' } ,
114+ { text : 'FROM&JOIN Clause' , link : 'From-Join-Clause' } ,
115+ { text : 'WHERE Clause' , link : 'Where-Clause' } ,
116+ { text : 'GROUP BY Clause' , link : 'GroupBy-Clause' } ,
117+ { text : 'HAVING Clause' , link : 'Having-Clause' } ,
118+ { text : 'FILL Clause' , link : 'Fill-Clause' } ,
119+ { text : 'ORDER BY Clause' , link : 'OrderBy-Clause' } ,
120+ { text : 'LIMIT&OFFSET Clause' , link : 'Limit-Offset-Clause' } ,
121+ ] ,
122+ } ,
123+ ] ,
124+ } ,
125+ {
126+ text : 'Reference' ,
127+ collapsible : true ,
128+ prefix : 'Reference/' ,
129+ // children: 'structure',
130+ children : [
131+ { text : 'Config Manual' , link : 'System-Config-Manual' } ,
132+ { text : 'Sample Data' , link : 'Sample-Data' } ,
133+ ] ,
134+ } ,
135+ ] ,
136+ } ;
0 commit comments