-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelop.js
More file actions
181 lines (181 loc) · 7.58 KB
/
Copy pathdevelop.js
File metadata and controls
181 lines (181 loc) · 7.58 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
export default {
'en-us': {
sidemenu: [
{
title: 'User Guide',
children: [
{
title: 'FAQ',
link: '/en-us/docs/developers/user-guide/faq_dev.html',
}
]
},
{
title: 'Contribute Guide',
children: [
{
title: 'New contributor guide',
link: '/en-us/docs/developers/contributor-guide/new-contributor-guide_dev.html',
},
{
title: 'Software donation guide',
link: '/en-us/docs/developers/contributor-guide/software-donation-guide_dev.html',
},
{
title: 'Test coverage guide',
link: '/en-us/docs/developers/contributor-guide/test-coverage-guide_dev.html',
},
{
title: 'Mailing list subscription guide',
link: '/en-us/docs/developers/contributor-guide/mailing-list-subscription-guide_dev.html',
},
{
title: 'CLA Signing Guide',
link: '/en-us/docs/developers/contributor-guide/cla-signing-guide_dev.html',
},
{
title: 'Extension guide',
link: '/en-us/docs/developers/contributor-guide/dubbo-extension-guide_dev.html',
},
{
title: 'How to become a committer',
link: '/en-us/docs/developers/contributor-guide/become-a-committer_dev.html',
},
{
title: 'How to report security issues',
link: '/en-us/docs/developers/contributor-guide/reporting-security-issues_dev.html',
}
]
},
{
title: 'Committer Guide',
children: [
{
title: 'New Committer guide',
link: '/en-us/docs/developers/committer-guide/new-committer-guide_dev.html',
},
{
title: 'Label an Issue',
link: '/en-us/docs/developers/committer-guide/label-an-issue-guide_dev.html',
},
{
title: 'Website Guide',
link: '/en-us/docs/developers/committer-guide/website-guide_dev.html',
},
{
title: 'Apache Dubbo Page Maintenance',
link: '/en-us/docs/developers/committer-guide/apache-dubbo-page_dev.html',
},
{
title: 'Release Guide',
link: '/en-us/docs/developers/committer-guide/release-guide_dev.html',
}
]
},
{
children: [
{
title: 'How to contribute',
link: '/en-us/docs/developers/guide_dev.html', // 开发者文档均以_dev结尾作为文件名,md文件放在docs目录下
},
{
title: 'Developers',
link: '/en-us/docs/developers/developers_dev.html',
},
],
}
],
barText: 'Developers',
},
'zh-cn':
{
sidemenu: [
{
title: '用户向导',
children: [
{
title: 'FAQ',
link: '/zh-cn/docs/developers/user-guide/faq_dev.html',
}
]
},
{
title: '贡献者向导',
children: [
{
title: '新贡献者向导',
link: '/zh-cn/docs/developers/contributor-guide/new-contributor-guide_dev.html',
},
{
title: '软件捐献向导',
link: '/zh-cn/docs/developers/contributor-guide/software-donation-guide_dev.html',
},
{
title: '测试覆盖率向导',
link: '/zh-cn/docs/developers/contributor-guide/test-coverage-guide_dev.html',
},
{
title: '邮件列表订阅向导',
link: '/zh-cn/docs/developers/contributor-guide/mailing-list-subscription-guide_dev.html',
},
{
title: 'CLA签署向导',
link: '/zh-cn/docs/developers/contributor-guide/cla-signing-guide_dev.html',
},
{
title: 'Dubbo Extension向导',
link: '/zh-cn/docs/developers/contributor-guide/dubbo-extension-guide_dev.html',
},
{
title: '如何成为committer',
link: '/zh-cn/docs/developers/contributor-guide/become-a-committer_dev.html',
},
{
title: '如何汇报安全漏洞',
link: '/zh-cn/docs/developers/contributor-guide/reporting-security-issues_dev.html',
}
]
},
{
title: '提交者向导',
children: [
{
title: 'Apache提交者注册流程',
link: '/zh-cn/docs/developers/committer-guide/new-committer-guide_dev.html',
},
{
title: '给问题打标签',
link: '/zh-cn/docs/developers/committer-guide/label-an-issue-guide_dev.html',
},
{
title: '网站向导',
link: '/zh-cn/docs/developers/committer-guide/website-guide_dev.html',
},
{
title: 'Apache Dubbo主页的维护',
link: '/zh-cn/docs/developers/committer-guide/apache-dubbo-page_dev.html',
},
{
title: '版本发布向导',
link: '/zh-cn/docs/developers/committer-guide/release-guide_dev.html',
}
]
},
{
children: [
{
title: '参与贡献',
link: '/zh-cn/docs/developers/guide_dev.html',
},
{
title: '开发人员',
link: '/zh-cn/docs/developers/developers_dev.html',
}
],
}
],
barText:
'开发者',
}
}
;