-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsidebars.js
85 lines (84 loc) · 2.82 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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'about',
'getting-started',
'examples',
{
type: 'category',
label: 'Recipes',
link: { type: 'doc', id: 'recipes' },
collapsed: true,
collapsible: true,
items: [
'recipes-leader-latch',
'recipes-leader-election',
'recipes-shared-reentrant-lock',
'recipes-shared-lock',
'recipes-shared-reentrant-read-write-lock',
'recipes-shared-semaphore',
'recipes-multi-shared-lock',
'recipes-barrier',
'recipes-double-barrier',
'recipes-shared-counter',
'recipes-distributed-atomic-long',
'recipes-curator-cache',
'recipes-path-cache',
'recipes-node-cache',
'recipes-tree-cache',
'recipes-persistent-watcher',
'recipes-persistent-node',
'recipes-persistent-ttl-node',
'recipes-group-member',
'recipes-distributed-queue',
'recipes-distributed-id-queue',
'recipes-distributed-priority-queue',
'recipes-distributed-delay-queue',
'recipes-simple-distributed-queue',
],
},
'async',
'modeled',
'migrations',
'schema',
{ type: 'html', defaultStyle: true, value: 'LOW LEVEL' },
'framework',
'utilities',
'client',
{ type: 'html', defaultStyle: true, value: 'DETAILS' },
'errors',
'logging',
{
type: 'category',
label: 'Tech Notes',
link: { type: 'doc', id: 'tech-notes' },
collapsed: true,
collapsible: true,
items: [
'tech-note-01',
'tech-note-02',
'tech-note-03',
'tech-note-04',
'tech-note-05',
'tech-note-06',
'tech-note-07',
'tech-note-08',
'tech-note-09',
'tech-note-10',
'tech-note-11',
'tech-note-12',
'tech-note-13',
'tech-note-14',
'tech-note-15',
],
},
'zk-compatibility-34',
'breaking-changes',
{ type: 'link', label: 'Javadoc', href: 'pathname:///apidocs/' },
{ type: 'link', label: 'Wiki', href: 'https://cwiki.apache.org/confluence/display/CURATOR' },
{ type: 'html', defaultStyle: true, value: 'EXTENSIONS' },
'service-discovery',
'service-discovery-server',
],
};
module.exports = sidebars;