Skip to content

Commit 4a91987

Browse files
authored
Merge pull request #91 from datasharingframework/dsf.dev_restructuring_2.0
changed directory structure
2 parents 06a2c42 + c384bdd commit 4a91987

File tree

298 files changed

+69
-1625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

298 files changed

+69
-1625
lines changed

docs/src/.vuepress/sidebar/operations-v1.ts

Lines changed: 18 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ export function generate_v1_latest_sidebar() {
22
return [
33

44
{
5-
text: "Maintain a DSF instance",
5+
text: "Get Started",
66
icon: "tool",
7-
prefix: "maintain/",
8-
link: "maintain/",
9-
children: ["install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", "root-certificates", "passwords-secrets", {
7+
link: "./",
8+
},
9+
"install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", "root-certificates", "passwords-secrets", {
1010
text: "FHIR Reverse Proxy",
1111
icon: "module",
1212
prefix: "fhir-reverse-proxy/",
@@ -67,21 +67,20 @@ export function generate_v1_latest_sidebar() {
6767
text: "Install Plugins",
6868
icon: "plugin",
6969
link: "install-plugins"
70-
}],
71-
},
72-
];
70+
}]
7371
}
7472

7573

7674
export function generate_v1_gt_eq_1_7_0_sidebar() {
7775
return [
7876

7977
{
80-
text: "Maintain a DSF instance",
78+
text: "Get Started",
8179
icon: "tool",
82-
prefix: "maintain/",
83-
link: "maintain/",
84-
children: ["install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", "root-certificates", "passwords-secrets", {
80+
link: "./"
81+
82+
},
83+
"install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", "root-certificates", "passwords-secrets", {
8584
text: "FHIR Reverse Proxy",
8685
icon: "module",
8786
prefix: "fhir-reverse-proxy/",
@@ -142,20 +141,17 @@ export function generate_v1_gt_eq_1_7_0_sidebar() {
142141
text: "Install Plugins",
143142
icon: "plugin",
144143
link: "install-plugins"
145-
}],
146-
}
147-
];
144+
}]
148145
}
149146

150147
export function generate_v1_gt_eq_1_5_0_sidebar() {
151148
return [
152149

153150
{
154-
text: "Maintain a DSF instance",
151+
text: "Get Started",
155152
icon: "tool",
156-
prefix: "maintain/",
157-
link: "maintain/",
158-
children: ["install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", {
153+
link: "./",
154+
}, "install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", {
159155
text: "FHIR Reverse Proxy",
160156
icon: "module",
161157
prefix: "fhir-reverse-proxy/",
@@ -216,28 +212,19 @@ export function generate_v1_gt_eq_1_5_0_sidebar() {
216212
text: "Install Plugins",
217213
icon: "plugin",
218214
link: "install-plugins"
219-
}],
220215
},
221-
{
222-
text: "Develop process plugins",
223-
icon: "plugin",
224-
prefix: "develop/",
225-
link: "develop/",
226-
children: ["create", "upgrade-from-0" ],
227-
},
228-
];
216+
]
229217
}
230218

231219

232220
export function generate_v1_gt_eq_1_0_0_sidebar() {
233221
return [
234222

235223
{
236-
text: "Maintain a DSF instance",
224+
text: "Get Started",
237225
icon: "tool",
238-
prefix: "maintain/",
239-
link: "maintain/",
240-
children: ["install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", {
226+
link: "./",
227+
}, "install", "upgrade-from-1", "upgrade-from-0", "allowList-mgm", {
241228
text: "FHIR Reverse Proxy",
242229
icon: "module",
243230
prefix: "fhir-reverse-proxy/",
@@ -280,14 +267,6 @@ export function generate_v1_gt_eq_1_0_0_sidebar() {
280267
text: "Install Plugins",
281268
icon: "plugin",
282269
link: "install-plugins"
283-
}],
284-
},
285-
{
286-
text: "Develop process plugins",
287-
icon: "plugin",
288-
prefix: "develop/",
289-
link: "develop/",
290-
children: ["create", "upgrade-from-0" ],
291270
},
292271
];
293272
}

docs/src/.vuepress/styles/index.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,12 @@ h1, h2, h3, h4, h5 {
3636
.page-category-item {
3737
color: black !important;
3838
background: #63C7A6 !important;
39+
}
40+
41+
.vp-sidebar > .vp-sidebar-links > li > .vp-sidebar-link {
42+
line-height: 0.8em;
43+
}
44+
45+
.vp-sidebar {
46+
font-size: 85%;
3947
}

docs/src/.vuepress/theme.ts

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,7 @@ export default hopeTheme({
3737
text: "Process Development",
3838
icon: "plugin",
3939
prefix: "/process-development/",
40-
children: [
41-
{
42-
text: "API v1",
43-
children: [
44-
"api-v1/readme.md",
45-
"api-v1/get-started.md"
46-
]
47-
},
48-
{
49-
text: "API v2",
50-
children: [
51-
"api-v2/readme.md",
52-
"api-v2/get-started.md"
53-
]
54-
}
55-
]
40+
children: [ "api-v1/", "api-v2/" ]
5641
},
5742
{
5843
text: "DSF Development",

docs/src/explore/concepts/allow-list.md

Lines changed: 1 addition & 1 deletion

docs/src/operations/v1.0.0/develop/README.md

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

docs/src/operations/v1.0.0/develop/create.md

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

docs/src/operations/v1.0.0/develop/upgrade-from-0.md

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

docs/src/operations/v1.0.0/index.md

Lines changed: 2 additions & 6 deletions

docs/src/operations/v1.0.0/maintain/README.md

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

docs/src/operations/v1.1.0/develop/README.md

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

docs/src/operations/v1.1.0/develop/create.md

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

docs/src/operations/v1.1.0/develop/upgrade-from-0.md

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

docs/src/operations/v1.1.0/index.md

Lines changed: 3 additions & 7 deletions

docs/src/operations/v1.1.0/maintain/README.md

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

docs/src/operations/v1.2.0/develop/README.md

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

docs/src/operations/v1.2.0/develop/create.md

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

docs/src/operations/v1.2.0/develop/upgrade-from-0.md

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

docs/src/operations/v1.2.0/index.md

Lines changed: 3 additions & 7 deletions

docs/src/operations/v1.2.0/maintain/README.md

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

docs/src/operations/v1.3.0/develop/README.md

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

docs/src/operations/v1.3.0/develop/create.md

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

docs/src/operations/v1.3.0/develop/upgrade-from-0.md

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

0 commit comments

Comments
 (0)