-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
484 lines (402 loc) · 13.7 KB
/
config.toml
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
baseURL = "https://gemfire.github.io/gemfire-developer-website/"
title = "VMware GemFire"
publishDir = "public"
contentDir = "content"
canonifyURLs = false
enableRobotsTXT = true
removePathAccents = true
# Continue build even if we hit GitHub API rate limit
# This only affects code sample page READMEs
ignoreErrors = ["error-remote-getjson"]
# Hugo allows theme composition (and inheritance). The precedence is from left to right.
theme = ["docsy"]
# Will give values to .Lastmod etc.
enableGitInfo = true
#disableKinds = ["taxonomy", "taxonomyTerm"]
[taxonomies]
featured = "featured"
topicgroup = "topicgroups"
tag = "tags"
team = "team"
# Configure how URLs look like per section.
[permalinks]
blog = "/:section/:slug/"
# Image processing configuration.
[imaging]
resampleFilter = "CatmullRom"
quality = 75
anchor = "smart"
[services]
[services.googleAnalytics]
# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
#id = ""
# Language settings
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
# Useful when translating.
enableMissingTranslationPlaceholders = true
[languages]
[languages.en]
contentDir = 'content'
languageName = "English"
weight = 1
# Language configuration
#[languages]
#[languages.en]
#title = "Goldydocs"
#description = "A Docsy example site"
#languageName ="English"
# Weight used for sorting.
#weight = 1
#[languages.no]
#title = "Goldydocs"
#description = "Docsy er operativsystem for skyen"
#languageName ="Norsk"
#contentDir = "content/no"
#time_format_default = "02.01.2006"
#time_format_blog = "02.01.2006"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
# Highlighting config
[markup.highlight]
codeFences = true
noClasses = false
# lineNos = true
# style = "monokai"
[markup.tableOfContents]
endLevel = 2
# Everything below this are Site Params
[params]
# Date and RSS settings
time_format_blog = "Monday, January 02, 2006"
time_format_default = "January 2, 2006"
# Sections to publish in the main RSS feed.
rss_sections = ["blog","tv-episode"]
copyright = "Broadcom"
privacy_policy = "https://www.vmware.com/help/privacy.html"
terms_of_use = "https://www.vmware.com/help/legal.html"
california_privacy_rights = "https://www.vmware.com/help/privacy/california-privacy-rights.html"
# Flag used in the "version-banner" partial to decide whether to display a
# banner on every page indicating that this is an archived version of the docs.
# Set this flag to "true" if you want to display the banner.
archived_version = false
# The version number for the version of the docs represented in this doc set.
# Used in the "version-banner" partial to display a version number for the
# current doc set.
# version = "0.0"
# A link to latest version of the docs. Used in the "version-banner" partial to
# point people to the main doc site.
#url_latest_version = "https://example.com"
# Repository configuration (URLs for in-page links to opening issues and suggesting changes)
#github_repo = "https://github.com/google/docsy-example"
# An optional link to a related project repo. For example, the sibling repository where your product code lives.
#github_project_repo = "https://github.com/google/docsy"
# Specify a value here if your content directory is not in your repo's root directory
# github_subdir = ""
#Main Nav Bar Menu Items
[menu]
[[menu.main]]
identifier = "download"
name = "Download"
weight = 10
[[menu.main]]
identifier = "install"
name = "Install"
weight = 20
[[menu.main]]
identifier = "quickstart"
name = "Quick Start"
weight = 30
[[menu.main]]
identifier = "learn"
name = "Learn"
weight = 40
[[menu.main]]
identifier = "documentation"
name = "Documentation"
weight = 50
#Quick Start Menu Items
[[menu.main]]
identifier = "java"
name = "Java"
parent = "quickstart"
weight = 10
url = "/quickstart/java"
[[menu.main]]
identifier = "spring"
name = "Spring"
parent = "quickstart"
weight = 20
url = "/quickstart/spring/"
[[menu.main]]
identifier = "dotnet"
name = ".NET"
parent = "quickstart"
weight = 40
url = "/quickstart/dotnet/"
[[menu.main]]
identifier = "cpp"
name = "C++"
parent = "quickstart"
weight = 50
url = "/quickstart/cpp/"
[[menu.main]]
identifier = "docker"
name = "Docker"
parent = "quickstart"
weight = 60
url = "/quickstart/docker/"
#Learn Menu Items
[[menu.main]]
identifier = "tutorials"
name = "Tutorials"
parent = "learn"
weight = 10
url = "/tutorials/"
[[menu.main]]
identifier = "blogs"
name = "Blog"
parent = "learn"
weight = 20
url = "/blog/"
[[menu.main]]
identifier = "videos"
name = "Videos"
parent = "learn"
weight = 30
url = "/videos/"
[[menu.main]]
identifier = "examples"
name = "Examples"
parent = "learn"
weight = 40
url = "/examples/"
#Install Menu Items
[[menu.main]]
identifier = "gfinstall"
name = "GemFire"
parent = "install"
weight = 10
url = "https://docs.vmware.com/en/VMware-GemFire/10.1/gf/getting_started-installation-install_intro.html"
[[menu.main]]
identifier = "gf4tasinstall"
name = "GemFire for TAS"
parent = "install"
weight = 20
url = "https://docs.vmware.com/en/VMware-GemFire-for-Tanzu-Application-Service/2.1/gf-tas/content-operator.html"
[[menu.main]]
identifier = "gf4k8sinstall"
name = "GemFire for Kubernetes"
parent = "install"
weight = 30
url = "https://docs.vmware.com/en/VMware-GemFire-for-Kubernetes/2.1/gf-k8s/supported-configurations.html"
#Documentation Menu Items
[[menu.main]]
id = "gfdoc"
name = "GemFire"
parent = "documentation"
weight = 10
url = "https://docs.vmware.com/en/VMware-GemFire/index.html"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
id = "gf4tasdoc"
name = "GemFire for TAS"
parent = "documentation"
weight = 20
url = "https://docs.vmware.com/en/VMware-GemFire-for-Tanzu-Application-Service/index.html"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
id = "gf4k8sdoc"
name = "GemFire for Kubernetes"
parent = "documentation"
weight = 30
url = "https://docs.vmware.com/en/VMware-GemFire-for-Kubernetes/index.html"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
Name = "GemFire Management Console"
parent = "documentation"
weight = 35
url = "https://docs.vmware.com/en/VMware-GemFire-Management-Console/1.2/gfmc/index.html"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
name = "Spring Boot for GemFire"
parent = "documentation"
weight = 40
url = "https://docs.vmware.com/en/Spring-Boot-for-VMware-GemFire/1.0/sbgf/index.html"
[menu.main.params]
topicgroups = "Clients"
[[menu.main]]
name = "Spring Data for GemFire"
parent = "documentation"
weight = 50
url = "https://docs.vmware.com/en/Spring-Data-for-VMware-GemFire/1.0/sdgf/index.html"
[menu.main.params]
topicgroups = "Clients"
[[menu.main]]
name = "Spring Session for GemFire"
parent = "documentation"
weight = 50
url = "https://docs.vmware.com/en/Spring-Session-for-VMware-GemFire/1.0/ssgf/index.html"
[menu.main.params]
topicgroups = "Clients"
[[menu.main]]
name = "Spring Cloud Data Flow for GemFire"
parent = "documentation"
weight = 51
url = "https://docs.vmware.com/en/Spring-Cloud-Data-Flow-for-VMware-GemFire/1.0/scdf/index.html"
[menu.main.params]
topicgroups = "Clients"
[[menu.main]]
name = "Spring Integration for GemFire"
parent = "documentation"
weight = 52
url = "https://docs.vmware.com/en/Spring-Integration-for-VMware-GemFire/1.0/sigf/index.html"
[menu.main.params]
topicgroups = "Clients"
[[menu.main]]
name = "Native Client"
parent = "documentation"
weight = 60
url = "https://docs.vmware.com/en/Native-Client-for-VMware-GemFire/index.html"
[menu.main.params]
topicgroups = "Clients"
[[menu.main]]
Name = "GemFire Search"
parent = "documentation"
weight = 80
url = "https://docs.vmware.com/en/VMware-GemFire-Search/1.1/gemfire-search/search_landing.html"
[menu.main.params]
topicgroups = "Extensions"
[[menu.main]]
Name = "GemFire Vector Database"
parent = "documentation"
weight = 85
url = "https://docs.vmware.com/en/VMware-GemFire-VectorDB/1.1/gemfire-vectordb/overview.html"
[menu.main.params]
topicgroups = "Extensions"
[[menu.main]]
Name = "GemFire Session Management"
parent = "documentation"
weight = 90
url = "https://docs.vmware.com/en/VMware-GemFire-Session-Management/1.0/gsm/chapter_overview.html"
[menu.main.params]
topicgroups = "Extensions"
[[menu.main]]
id = "apidoc"
name = "API Documentation"
parent = "documentation"
weight = 100
url = "/api/"
[menu.main.params]
topicgroups = "APIs"
#Download Menu Items
[[menu.main]]
identifier = "gfdownload"
Name = "GemFire"
parent = "download"
weight = 10
url = "https://support.broadcom.com/group/ecx/productfiles?subFamily=VMware%20Tanzu%20GemFire&displayGroup=VMware%20Tanzu%20GemFire&release=10.1.1&os=&servicePk=310413&language=EN"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
identifier = "gf4tasdownload"
Name = "GemFire for TAS"
parent = "download"
weight = 20
url = "https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware%20Tanzu%20GemFire%20on%20Cloud%20Foundry"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
identifier = "gf4k8sdownload"
Name = "GemFire for Kubernetes"
parent = "download"
weight = 30
url = "https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware%20Tanzu%20GemFire%20on%20Kubernetes"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
identifier = "mgmtconsoledownload"
Name = "GemFire Management Console"
parent = "download"
weight = 35
url = "https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware%20Tanzu%20GemFire%20Management%20Console"
[menu.main.params]
topicgroups = "Products"
[[menu.main]]
identifier = "nativeclientdl"
Name = "Native Client"
parent = "download"
weight = 40
url = "https://support.broadcom.com/group/ecx/productfiles?subFamily=VMware%20Tanzu%20GemFire&displayGroup=VMware%20Tanzu%20GemFire&release=Native%20Client%2010.4.4&os=&servicePk=521899&language=EN"
[menu.main.params]
topicgroups = "Clients"
[[menu.main]]
identifier = "gfsearchdownload"
Name = "GemFire Search"
parent = "download"
weight = 60
url = "https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware%20Tanzu%20GemFire%20Search"
[menu.main.params]
topicgroups = "Extensions"
[[menu.main]]
identifier = "gfvectorDB"
Name = "GemFire Vector Database"
parent = "download"
weight = 65
url = "https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware%20Tanzu%20GemFire%20Vector%20Database"
[menu.main.params]
topicgroups = "Extensions"
[[menu.main]]
identifier = "gfsessionmanagement"
Name = "GemFire Session Management"
parent = "download"
weight = 70
url = "https://support.broadcom.com/group/ecx/productfiles?subFamily=VMware%20Tanzu%20GemFire&displayGroup=VMware%20Tanzu%20GemFire&release=Session%20Management%201.0.0&os=&servicePk=310328&language=EN"
[menu.main.params]
topicgroups = "Extensions"
# Menu title if your navbar has a versions selector to access old versions of your site.
# This menu appears only if you have at least one [params.versions] set.
#version_menu = "Get Started"
# User interface configuration
[params.ui]
# Enable to show the side bar menu in its compact state.
sidebar_menu_compact = false
# Set to true to disable breadcrumb navigation.
breadcrumb_disable = false
# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar
navbar_logo = true
# Set to true to disable the About link in the site footer
footer_about_disable = false
# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events.
# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set.
# If you want this feature, but occasionally need to remove the "Feedback" section from a single page,
# add "hide_feedback: true" to the page's front matter.
[params.ui.feedback]
enable = false
# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful).
yes = 'Glad to hear it! Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.'
no = 'Sorry to hear that. Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.'
[params.links]
# End user relevant links. These will show up on left side of footer and in the community page if you have one.
# Developer relevant links. These will show up on right side of footer and in the community page if you have one.
[frontmatter]
lastmod = ["lastmod", ":git", "date"]
# See https://github.com/gohugoio/hugo/releases/tag/v0.91.0
[security]
enableInlineShortcodes = false
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$', '^git$']
osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM)$']
[security.funcs]
getenv = ['^HUGO_', '^COMMIT_', '^CONTEXT']
[security.http]
methods = ['(?i)GET|POST']
urls = ['.*']
[outputs]
home = ["HTML", "RSS"]