Skip to content

Commit d9b919a

Browse files
authored
move all index up for one level (#87)
1 parent e7ff4ea commit d9b919a

File tree

11 files changed

+104
-32
lines changed

11 files changed

+104
-32
lines changed

_config.yml

Lines changed: 100 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ title: 'SQLFlow'
22
description: Bridging Data and AI
33

44
permalink: pretty
5-
exclude: ['*.sql', '*.go', '.gitignore', '*.sh', '*.proto', '*.y', '*.py', 'vendor', 'gohive/doc/design.md', 'gohive/docker/README.md', 'pysqlflow/doc/design/client_design_doc.md', 'pysqlflow/doc/design/magic_design_doc.md']
5+
exclude: ['*.sql', '*.go', '.gitignore', '*.sh', '*.proto', '*.y', '*.py', 'vendor', 'gohive/doc/design.md', 'gohive/docker/README.md', 'pysqlflow/doc/design/client_design_doc.md', 'pysqlflow/doc/design/magic_design_doc.md', 'sqlflow/doc/mysql-setup.md', 'sqlflow/doc/tutorial/aspara2019/', 'sqlflow/doc/design/design_ant_xgboost.md', 'sqlflow/doc/design/design_workflow.md', 'sqlflow/python/README.md', 'sqlflow/parser/README.md', 'sqlflow/parser/remote/README.md', 'sqlflow/parser/remote/hiveql/README.md', 'sqlflow/scripts/markdown_link_check/README.md']
66

77
search_enabled: true
88
search_tokenizer_separator: /[\s/]+/
@@ -21,11 +21,39 @@ ga_tracking: UA-17331483-8
2121

2222
defaults:
2323
- scope:
24-
path: "sqlflow"
24+
path: "sqlflow_getstarted"
2525
values:
2626
layout: "doc"
27-
nav_exclude: true
28-
grand_parent: SQLFlow
27+
nav_exclude: false
28+
grand_parent: Get Started
29+
prefix: '/sqlflow/'
30+
- scope:
31+
path: "sqlflow_installation"
32+
values:
33+
layout: "doc"
34+
nav_exclude: false
35+
grand_parent: Installation
36+
prefix: '/sqlflow/'
37+
- scope:
38+
path: "sqlflow_exapmles"
39+
values:
40+
layout: "doc"
41+
nav_exclude: false
42+
grand_parent: Examples
43+
prefix: '/sqlflow/'
44+
- scope:
45+
path: "sqlflow_design"
46+
values:
47+
layout: "doc"
48+
nav_exclude: false
49+
grand_parent: Design
50+
prefix: '/sqlflow/'
51+
- scope:
52+
path: "sqlflow_contributes"
53+
values:
54+
layout: "doc"
55+
nav_exclude: false
56+
grand_parent: Contributes
2957
prefix: '/sqlflow/'
3058
- scope:
3159
path: "models"
@@ -69,30 +97,35 @@ defaults:
6997
values:
7098
nav_exclude: false
7199
parent: Install SQLFlow on Cloud
100+
grand_parent: Installation
72101
nav_order: 1
73102
- scope:
74103
path: "sqlflow/doc/run/kubernetes.md"
75104
values:
76105
nav_exclude: false
77106
parent: Install SQLFlow on Cloud
107+
grand_parent: Installation
78108
nav_order: 2
79109
- scope:
80110
path: "sqlflow/doc/run_with_mysql.md"
81111
values:
82112
nav_exclude: false
83113
parent: Run SQLFlow with SQL Engines
114+
grand_parent: Installation
84115
nav_order: 1
85116
- scope:
86117
path: "sqlflow/doc/run_with_hive.md"
87118
values:
88119
nav_exclude: false
89120
parent: Run SQLFlow with SQL Engines
121+
grand_parent: Installation
90122
nav_order: 2
91123
- scope:
92124
path: "sqlflow/doc/run_with_maxcompute.md"
93125
values:
94126
nav_exclude: false
95127
parent: Run SQLFlow with SQL Engines
128+
grand_parent: Installation
96129
nav_order: 3
97130
- scope:
98131
path: "sqlflow/doc/tutorial/iris-dnn.md"
@@ -125,59 +158,113 @@ defaults:
125158
parent: Examples
126159
nav_order: 6
127160
- scope:
128-
path: "sqlflow/doc/design/design_alps_submitter.md"
161+
path: "sqlflow/doc/design/design_syntax.md"
129162
values:
130163
nav_exclude: false
131164
parent: Design
132165
nav_order: 1
133166
- scope:
134-
path: "sqlflow/doc/design/design_analyzer.md"
167+
path: "sqlflow/doc/design/design_sql_parser.md"
135168
values:
136169
nav_exclude: false
137170
parent: Design
138171
nav_order: 2
139172
- scope:
140-
path: "sqlflow/doc/design/design_xgboost_on_sqlflow.md"
173+
path: "sqlflow/doc/design/design_pipe.md"
141174
values:
142175
nav_exclude: false
143176
parent: Design
144177
nav_order: 3
145178
- scope:
146-
path: "sqlflow/doc/design/design_auth.md"
179+
path: "sqlflow/doc/design/design_intermediate_representation.md"
147180
values:
148181
nav_exclude: false
149182
parent: Design
150183
nav_order: 4
151184
- scope:
152-
path: "sqlflow/doc/design/design_clustermodel.md"
185+
path: "sqlflow/doc/design/design_database_abstraction_layer.md"
153186
values:
154187
nav_exclude: false
155188
parent: Design
156189
nav_order: 5
157190
- scope:
158-
path: "sqlflow/doc/design/design_customized_model.md"
191+
path: "sqlflow/doc/design/design_submitter.md"
192+
values:
193+
nav_exclude: false
194+
parent: Design
195+
nav_order: 2
196+
- scope:
197+
path: "sqlflow/doc/design/design_alps_submitter.md"
159198
values:
160199
nav_exclude: false
161200
parent: Design
162201
nav_order: 6
163202
- scope:
164-
path: "sqlflow/doc/design/design_elasticdl_on_sqlflow.md"
203+
path: "sqlflow/doc/design/design_analyzer.md"
165204
values:
166205
nav_exclude: false
167206
parent: Design
168207
nav_order: 7
169208
- scope:
170-
path: "sqlflow/doc/design/design_feature_derivation.md"
209+
path: "sqlflow/doc/design/design_xgboost_on_sqlflow.md"
171210
values:
172211
nav_exclude: false
173212
parent: Design
174213
nav_order: 8
175214
- scope:
176-
path: "sqlflow/doc/design/design_syntax.md"
215+
path: "sqlflow/doc/design/design_auth.md"
177216
values:
178217
nav_exclude: false
179218
parent: Design
180219
nav_order: 9
220+
- scope:
221+
path: "sqlflow/doc/design/design_clustermodel.md"
222+
values:
223+
nav_exclude: false
224+
parent: Design
225+
nav_order: 10
226+
- scope:
227+
path: "sqlflow/doc/design/design_customized_model.md"
228+
values:
229+
nav_exclude: false
230+
parent: Design
231+
nav_order: 11
232+
- scope:
233+
path: "sqlflow/doc/design/design_elasticdl_on_sqlflow.md"
234+
values:
235+
nav_exclude: false
236+
parent: Design
237+
nav_order: 12
238+
- scope:
239+
path: "sqlflow/doc/design/design_training_and_validation.md"
240+
values:
241+
nav_exclude: false
242+
parent: Design
243+
nav_order: 13
244+
- scope:
245+
path: "sqlflow/doc/design/design_train_parameters.md"
246+
values:
247+
nav_exclude: false
248+
parent: Design
249+
nav_order: 14
250+
- scope:
251+
path: "sqlflow/doc/design/design_support_multiple_sql_statements.md"
252+
values:
253+
nav_exclude: false
254+
parent: Design
255+
nav_order: 15
256+
- scope:
257+
path: "sqlflow/doc/design/design_feature_derivation.md"
258+
values:
259+
nav_exclude: false
260+
parent: Design
261+
nav_order: 16
262+
- scope:
263+
path: "sqlflow/doc/design/design_close_producer_from_consumer.md"
264+
values:
265+
nav_exclude: false
266+
parent: Design
267+
nav_order: 17
181268
- scope:
182269
path: "sqlflow/doc/build.md"
183270
values:

doc_index/sqlflow.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

doc_index/sqlflow_contributes.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ has_children: true
33
title: Contributes
44
nav_order: 5
55
layout: doc
6-
parent: SQLFlow
76
---
87
# Contribute
98

doc_index/sqlflow_design.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ has_children: true
33
title: Design
44
nav_order: 4
55
layout: doc
6-
parent: SQLFlow
76
---
87
# Design

doc_index/sqlflow_exapmles.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ has_children: true
33
title: Examples
44
nav_order: 3
55
layout: doc
6-
parent: SQLFlow
76
---
87
# Examples

doc_index/sqlflow_getstarted.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ has_children: true
33
title: Get Started
44
nav_order: 1
55
layout: doc
6-
parent: SQLFlow
76
---
87
# Get Started

doc_index/sqlflow_installation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: Installation
3-
parent: SQLFlow
43
nav_order: 2
54
layout: default
65
has_children: true

elasticdl

Submodule elasticdl updated 80 files

gohive

0 commit comments

Comments
 (0)