forked from essif-lab/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
139 lines (138 loc) · 4.02 KB
/
sidebars.js
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
134
135
136
137
138
139
const sidebars = {
essifLabSideBar: [
{ label: 'eSSIF-Lab',
type: 'category',
link: {type: 'doc', id: 'essifLab'},
collapsed: false,
items: [
'essifLab-vision',
'essifLab-objectives',
'essifLab-principles',
'essifLab-collaborative-understanding',
'ssi-standards',
'essifLab-project',
{ label: 'Mental Models',
type: 'category',
link: {type: 'doc', id: 'essifLab-pattern-list'},
collapsed: true,
items: [
{ label: 'Stable models',
type: 'category',
collapsed: false,
items:
[ 'terms/pattern-party-actor-action',
'terms/pattern-jurisdiction',
'terms/pattern-guardianship',
]
},
{ label: 'Reviewable models',
type: 'category',
collapsed: true,
items:
[ 'terms/pattern-terminology',
'terms/pattern-identity',
'terms/pattern-identification',
'terms/pattern-identifier',
'terms/pattern-party-representation',
'terms/pattern-governance-and-management',
'terms/pattern-decentralized-grc',
]
},
{ label: 'Envisaged models',
type: 'category',
collapsed: true,
items:
[ 'terms/pattern-world-model',
'terms/pattern-semantics',
'terms/pattern-trust',
'terms/pattern-decision-making',
'terms/pattern-mandates-delegation-hiring',
'terms/pattern-duties-and-rights',
]
},
],
},
'essifLab-glossary',
],
},
{ label: 'Miscellaneous',
type: 'category',
link: {type: 'doc', id: 'miscellaneous'},
collapsed: true,
items: [
'essifLab-fw-governance',
'essifLab-fw-bus-arch',
'essifLab-fw-func-arch',
'essifLab-fw-backlog',
],
},
],
tev2SideBar: [
'tev2/tev2-overview' ,
{ type: 'category',
label: 'Purpose',
link: {type: 'doc', id: 'tev2/manuals/purpose'},
items:
[ { type: 'category',
label: 'Contributor Manuals',
link: {type: 'doc', id: 'tev2/manuals/contributor'},
items:
[ 'tev2/manuals/contributors-wiki',
, 'tev2/manuals/contributors-repo',
, 'tev2/manuals/contributors-latex',
],
},
{ type: 'category',
label: 'Curator Manuals',
link: {type: 'doc', id: 'tev2/manuals/curator'},
items:
[ 'tev2/manuals/tev2-installation',
'tev2/manuals/terminology-construction',
],
},
{ type: 'doc', id: 'tev2/manuals/author'},
],
},
{ type: 'category',
label: 'Mental Models',
items: [ { type: 'autogenerated', dirName: 'tev2/terms/patterns' } ]
},
{ type: 'category',
label: 'File Specs (for Curators)',
items:
[ 'tev2/spec-ctexts/ctext-spec',
'tev2/spec-ctexts/ctext-concept',
'tev2/spec-ctexts/ctext-pattern',
],
},
{ type: 'category',
label: 'File Specs (for Developers)',
items:
[ { type: 'autogenerated', dirName: 'tev2/spec-files' } ]
},
{ type: 'category',
label: 'Syntax Specs',
items:
[ { type: 'autogenerated', dirName: 'tev2/spec-syntax' },
'tev2/manuals/terminology-construction',
]
},
{ type: 'category',
label: 'The Toolbox (specs)',
items: [ { type: 'autogenerated', dirName: 'tev2/spec-tools' } ]
},
{ type: 'category',
label: 'TEv2 Glossary',
items: [ { type: 'autogenerated', dirName: 'tev2/terms' } ]
},
{ type: 'category',
label: 'Miscellaneous',
items:
[ 'tev2/tev2-backlog',
'tev2/various-identifiers',
'tev2/toip-terminology-toolbox',
],
},
],
};
module.exports = sidebars;