-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
133 lines (133 loc) · 5.17 KB
/
sidebars.js
File metadata and controls
133 lines (133 loc) · 5.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
module.exports = {
mainSidebar: [
"index",
{
type: "category",
label: "Guide",
link: {
type: "generated-index",
title: "Guide",
description: "General guide for application developers.",
},
collapsed: false,
items: [
{
type: "category",
label: "Satellite",
link: {type: "doc", id: "guide/satellite/index"},
items: [
"guide/satellite/dialogs",
{
"type": "category",
"label": "Network",
link: {type: "doc", id: "guide/satellite/network/index"},
items: [
"guide/satellite/network/index"
]
},
"guide/satellite/comms-handler",
"guide/satellite/exits",
]
},
{
type: "category",
label: "Assembly Runtime",
link: {type: "doc", id: "guide/kernel/assembly"},
items: [
"guide/kernel/assembly",
"guide/kernel/assembly-integration",
]
},
{
type: "category",
label: "Filesystem",
link: {type: "doc", id: "guide/fs/intro"},
items: [
{
type: "category",
label: "Drivers",
link: {type: "doc", id: "guide/fs/drivers/index"},
items: [
"guide/fs/drivers/idb",
"guide/fs/drivers/ram"
]
},
{
type: "category",
label: "Operations",
link: {type: "doc", id: "guide/fs/operations/index"},
items: [
"guide/fs/operations/init",
"guide/fs/operations/read",
"guide/fs/operations/readDir",
"guide/fs/operations/readMetadata",
"guide/fs/operations/write",
"guide/fs/operations/mkDir",
"guide/fs/operations/delete",
"guide/fs/operations/deleteDir",
"guide/fs/operations/exists",
"guide/fs/operations/mv",
"guide/fs/operations/cp",
"guide/fs/operations/getFreeSpace",
"guide/fs/operations/getName",
]
},
{
type: "category",
label: "Security",
link: {type: "doc", id: "guide/fs/security/index"},
items: [
"guide/fs/security/index"
]
}
],
},
"guide/design/xui",
{
type: "category",
label: "Kernel",
link: {type: "doc", id: "guide/kernel/index"},
items: [
"guide/kernel/41worker",
{
type: "category",
label: "Communication",
link: {type: "doc", id: "guide/kernel/communication/index"},
items: [
"guide/kernel/communication/calls",
"guide/kernel/communication/streamed-events",
]
},
]
},
]
},
{
type: "category",
label: "Package Manager",
items: [
"packman/repository",
"packman/manifest",
"packman/submitting-app"
]
},
"terminology"
],
platformSidebar: [
"platform/index",
"platform/versioning",
{
type: "category",
label: "Bundled programs and libraries",
description: "On Supernova, you can bundle your applications, programs, and libraries into the Supernova system.\n" +
"This allows you to create a seamless experience for your users, who can access your applications directly from the Supernova webtop without any extra online installation required.",
items: [
"platform/bundled/create",
]
}
],
xuiSidebar: [
"guide/design/index",
"guide/design/xui"
]
};