-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.json
4620 lines (4620 loc) · 147 KB
/
menu.json
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "DNN Microservices API Reference",
"key": "api-overview",
"menu": [
{
"title": "Structured Content",
"key": "about-structured-content-apis",
"menu": [
{
"title": "Content Type APIs",
"key": "about-structured-content-content-type-apis",
"menu": [
{
"title": "GET Content Types",
"key": "api-contenttypes-get"
},
{
"title": "GET Content Types with ID",
"key": "api-contenttypes-id-get"
},
{
"title": "POST Content Types",
"key": "api-contenttypes-post"
},
{
"title": "PUT Content Types with ID",
"key": "api-contenttypes-id-put"
},
{
"title": "DELETE Content Types with ID",
"key": "api-contenttypes-id-delete"
}
]
},
{
"title": "Content Item APIs",
"key": "about-structured-content-content-item-apis",
"menu": [
{
"title": "GET Content Items",
"key": "api-contentitems-get"
},
{
"title": "GET Content Items with ID",
"key": "api-contentitems-id-get"
},
{
"title": "POST Content Items",
"key": "api-contentitems-post"
},
{
"title": "PUT Content Items with ID",
"key": "api-contentitems-id-put"
},
{
"title": "DELETE Content Items with ID",
"key": "api-contentitems-id-delete"
}
]
},
{
"title": "Published Content Item APIs",
"key": "about-structured-content-published-content-item-apis",
"menu": [
{
"title": "GET Published Content Items",
"key": "api-publishedcontentitems-get"
},
{
"title": "GET Published Content Items with ID Array",
"key": "api-publishedcontentitems-getbyids-get"
}
]
},
{
"title": "API Responses to GET",
"key": "about-structured-content-api-get-responses"
},
{
"title": "Content Type Fields for POST and PUT",
"key": "about-structured-content-api-post-put-type-fields"
}
]
},
{
"title": "Developer Center",
"key": "developers-overview"
},
{
"title": "Glossary",
"key": "glossary"
}
]
},
{
"title": "Administrators",
"key": "administrators-overview",
"menu": [
{
"title": "What's New in Features",
"key": "whats-new-dnn"
},
{
"title": "Setting Up DNN",
"key": "administrators-setup-overview",
"menu": [
{
"title": "Set Up the DNN Folder",
"key": "set-up-dnn-folder"
},
{
"title": "Set Up IIS",
"key": "set-up-iis"
},
{
"title": "Set Up SQL",
"key": "set-up-sql"
},
{
"title": "Run Installation Wizard",
"key": "run-installation-wizard"
},
{
"title": "Upgrade Evoq",
"key": "upgrade-evoq"
}
]
},
{
"title": "Licensing Evoq",
"key": "administrators-licensing-overview",
"menu": [
{
"title": "Activate Automatically",
"key": "activate-license-automatically"
},
{
"title": "Activate Manually",
"key": "activate-license-manually"
},
{
"title": "FAQ",
"key": "faq-licensing"
},
{
"title": "Troubleshooting",
"key": "troubleshooting-licensing"
}
]
},
{
"title": "Maintaining Your Servers",
"key": "administrators-servers-overview",
"menu": [
{
"title": "Retrieve System Info",
"key": "retrieve-system-info"
},
{
"title": "View Server Logs",
"key": "view-server-logs"
},
{
"title": "Restart Application",
"key": "restart-application"
},
{
"title": "Web Servers",
"key": "about-web-servers",
"menu": [
{
"title": "Enable or Disable Web Server",
"key": "enable-or-disable-web-server"
},
{
"title": "Change URL of Web Server",
"key": "change-url-of-web-server"
},
{
"title": "Assign Web Server to Server Group",
"key": "assign-web-server-to-server-group"
},
{
"title": "Replace Web Request Adapter",
"key": "replace-web-request-adapter"
},
{
"title": "Delete Web Server",
"key": "delete-web-server"
}
]
},
{
"title": "SMTP Servers",
"menu": [
{
"title": "Configure SMTP",
"key": "configure-smtp-server"
},
{
"title": "Test SMTP",
"key": "test-smtp-settings"
}
]
},
{
"title": "Server Performance",
"menu": [
{
"title": "Configure Caching",
"key": "configure-caching"
},
{
"title": "Clear Cache",
"key": "clear-cache"
},
{
"title": "Expire Cached Item in Web Server",
"key": "expire-cached-item-in-web-server"
},
{
"title": "Minify Resource Files",
"key": "minify-resource-files"
}
]
}
]
},
{
"title": "Managing Your Sites",
"key": "administrators-sites-overview",
"menu": [
{
"title": "Sites",
"menu": [
{
"title": "Create Site",
"key": "create-site"
},
{
"title": "Edit Site Properties",
"key": "edit-site-properties"
},
{
"title": "View Site",
"key": "view-site"
},
{
"title": "Delete Site",
"key": "delete-site"
},
{
"title": "Move Site",
"key": "move-site-to-another-server"
}
]
},
{
"title": "Site Groups",
"menu": [
{
"title": "Create Site Group",
"key": "create-site-group"
},
{
"title": "Add or Remove Sites in Group",
"key": "add-or-remove-sites-in-group"
},
{
"title": "Edit Site Group",
"key": "edit-site-group"
},
{
"title": "Delete Site Group",
"key": "delete-site-group"
}
]
},
{
"title": "Import / Export",
"key": "administrators-import-export-overview",
"menu": [
{
"title": "Export Site",
"key": "export-site"
},
{
"title": "Transfer an Export Package",
"key": "transfer-an-export-package"
},
{
"title": "Import Site",
"key": "import-site"
}
]
}
]
},
{
"title": "Configuring Your Site",
"key": "administrators-configuring-your-site-overview",
"menu": [
{
"title": "Update Site Info",
"key": "update-site-info"
},
{
"title": "Assign Key Pages",
"key": "assign-key-pages"
},
{
"title": "Add Metadata to Pages",
"key": "add-metadata-to-pages"
},
{
"title": "Configure Messaging",
"key": "configure-messaging"
},
{
"title": "Access web.config",
"key": "access-web-config"
},
{
"title": "Configure Sites to Check for New Version",
"key": "configure-check-for-new-version"
},
{
"title": "Help Improve DNN",
"key": "participate-in-improvement-program"
},
{
"title": "Configure HTML Editor",
"key": "configure-html-editor"
},
{
"title": "Site Aliases",
"menu": [
{
"title": "Configure URL Mapping for Site Aliases",
"key": "configure-url-mapping-site-aliases"
},
{
"title": "Add Site Alias",
"key": "add-site-alias"
},
{
"title": "Edit Site Alias",
"key": "edit-site-alias"
},
{
"title": "Delete Site Alias",
"key": "delete-site-alias"
},
{
"title": "Change Primary Site Alias",
"key": "change-primary-site-alias"
}
]
},
{
"title": "SEO",
"menu": [
{
"title": "URL Management",
"menu": [
{
"title": "Configure URL Rewriter",
"key": "configure-url-rewriter"
},
{
"title": "Configure URL Redirects",
"key": "configure-url-redirects"
},
{
"title": "Manage URL Providers",
"key": "manage-url-providers"
},
{
"title": "Edit RegEx for URL Management",
"key": "edit-regex-for-url-management"
},
{
"title": "Test URL Generation",
"key": "test-url-generation"
}
]
},
{
"title": "Sitemaps",
"key": "administrators-sitemaps-overview",
"menu": [
{
"title": "Configure Sitemap",
"key": "configure-sitemap"
},
{
"title": "Submit Site to Google Search",
"key": "submit-site-Google-search"
}
]
}
]
},
{
"title": "User Profiles",
"menu": [
{
"title": "Configure User Profile Visibility",
"key": "configure-user-profile-visibility"
},
{
"title": "Configure User Profile Vanity URL",
"key": "configure-user-profile-vanity-url"
},
{
"title": "Add User Profile Field",
"key": "add-user-profile-field"
},
{
"title": "Edit User Profile Field",
"key": "edit-user-profile-field"
},
{
"title": "Delete User Profile Field",
"key": "delete-user-profile-field"
},
{
"title": "Organize User Profile Fields",
"key": "organize-user-profile-fields"
}
]
},
{
"title": "Page/File Versioning",
"key": "page-file-versioning",
"menu": [
{
"title": "Configure Page/File Versioning for Site",
"key": "configure-page-file-versioning-for-site"
}
]
},
{
"title": "Extensions",
"key": "administrators-extensions-overview",
"menu": [
{
"title": "Install an Extension",
"key": "install-extension"
},
{
"title": "Manage a Premium Module",
"key": "manage-premium-module"
},
{
"title": "Allow Module Use",
"key": "allow-module-use"
}
]
},
{
"title": "Connectors",
"key": "administrators-connectors-overview",
"menu": [
{
"title": "Configure Connections to External Services",
"key": "configure-connectors-pb-all"
}
]
},
{
"title": "Microservices",
"menu": [
{
"title": "Enable Microservices",
"key": "enable-microservices-pb-all"
}
]
},
{
"title": "Workflows",
"key": "administrators-workflows-overview",
"menu": [
{
"title": "Create Workflow",
"key": "create-workflow-pb-all"
},
{
"title": "Edit Workflow",
"key": "edit-workflow-pb-all"
},
{
"title": "Delete Workflow",
"key": "delete-workflow-pb-all"
},
{
"title": "Configure Workflow State",
"key": "configure-workflow-state-pb-all"
}
]
},
{
"title": "Search",
"key": "administrators-search-overview",
"menu": [
{
"title": "Configure Search",
"key": "configure-search"
},
{
"title": "Prioritize Search Items",
"key": "prioritize-search-items"
},
{
"title": "Synonyms",
"menu": [
{
"title": "Add Group of Synonyms",
"key": "add-group-of-synonyms"
},
{
"title": "Edit Group of Synonyms",
"key": "edit-group-of-synonyms"
},
{
"title": "Delete Group of Synonyms",
"key": "delete-group-of-synonyms"
}
]
},
{
"title": "Words to Ignore",
"menu": [
{
"title": "Create List of Words to Ignore",
"key": "create-list-of-words-to-ignore"
},
{
"title": "Edit List of Words to Ignore",
"key": "edit-list-of-words-to-ignore"
},
{
"title": "Delete List of Words to Ignore",
"key": "delete-list-of-words-to-ignore"
}
]
},
{
"title": "Crawling Filters",
"menu": [
{
"title": "Add Starting URL to Crawl List",
"key": "add-starting-url-to-crawl-list"
},
{
"title": "Edit Starting URL in Crawl List",
"key": "edit-starting-url-in-crawl-list"
},
{
"title": "Delete Starting URL from Crawl List",
"key": "delete-starting-url-from-crawl-list"
},
{
"title": "Add Directory to Included List",
"key": "add-directory-to-included-list"
},
{
"title": "Delete Directory from Included List",
"key": "delete-directory-from-included-list"
},
{
"title": "Add Directory to Excluded List",
"key": "add-directory-to-excluded-list"
},
{
"title": "Delete Directory from Excluded List",
"key": "delete-directory-from-excluded-list"
},
{
"title": "Add File Extension to Included or Excluded List",
"key": "add-file-extension-to-included-or-excluded-list"
},
{
"title": "Delete File Extension from Included or Excluded List",
"key": "delete-file-extension-from-included-or-excluded-list"
}
]
},
{
"title": "Dynamic Pages",
"menu": [
{
"title": "Add Regex Pattern for Duplicate Pages",
"key": "add-regex-pattern-for-duplicate-pages"
},
{
"title": "Edit Regex Pattern for Duplicate Pages",
"key": "edit-regex-pattern-for-duplicate-pages"
},
{
"title": "Delete Regex Pattern for Duplicate Pages",
"key": "delete-regex-pattern-for-duplicate-pages"
}
]
},
{
"title": "Indexes",
"menu": [
{
"title": "Compress Indexes",
"key": "compress-indexes"
},
{
"title": "Reindex Content",
"key": "reindex-content"
}
]
}
]
},
{
"title": "Vocabularies",
"key": "administrators-vocabularies-overview",
"menu": [
{
"title": "Create Vocabulary",
"key": "create-vocabulary"
},
{
"title": "Edit Vocabulary",
"key": "edit-vocabulary"
},
{
"title": "Delete Vocabulary",
"key": "delete-vocabulary"
},
{
"title": "Add Term to Vocabulary",
"key": "add-term-to-vocabulary"
},
{
"title": "Edit Term in Vocabulary",
"key": "edit-term-in-vocabulary"
},
{
"title": "Delete Term from Vocabulary",
"key": "delete-term-from-vocabulary"
}
]
}
]
},
{
"title": "Securing Your Site",
"key": "administrators-security-overview",
"menu": [
{
"title": "User Accounts",
"key": "administrators-user-accounts-overview",
"menu": [
{
"title": "Create a User",
"key": "create-user-account"
},
{
"title": "Authorize a User",
"key": "authorize-user"
},
{
"title": "Assign User to Multiple Roles",
"key": "assign-user-to-multiple-roles"
},
{
"title": "Remove User from Multiple Roles",
"key": "remove-user-from-multiple-roles"
},
{
"title": "Edit a User",
"key": "edit-user"
},
{
"title": "Manage a User Password",
"key": "manage-user-password"
},
{
"title": "Delete a User",
"key": "delete-user"
},
{
"title": "Delete Unauthorized Users",
"key": "delete-all-unauthorized-users"
},
{
"title": "Restore a Deleted User",
"key": "restore-deleted-user-account"
},
{
"title": "Purge a User Account",
"key": "purge-user-account"
},
{
"title": "Restore Multiple Deleted Users",
"key": "restore-multiple-deleted-users"
},
{
"title": "Purge Multiple Deleted Users",
"key": "purge-multiple-deleted-users"
},
{
"title": "Create a Host",
"key": "create-host-account"
},
{
"title": "Authorize a Host",
"key": "authorize-host"
},
{
"title": "Promote to Host",
"key": "promote-user-to-host"
},
{
"title": "Demote a Host",
"key": "demote-from-host"
},
{
"title": "Manage a Host Password",
"key": "manage-host-password"
},
{
"title": "Delete a Host",
"key": "delete-host"
},
{
"title": "Delete Unauthorized Hosts",
"key": "delete-all-unauthorized-hosts"
},
{
"title": "Restore a Deleted Host",
"key": "restore-deleted-host-account"
},
{
"title": "Purge a Host Account",
"key": "purge-host-account"
}
]
},
{
"title": "Role-Based Access",
"key": "administrators-roles-overview",
"menu": [
{
"title": "Roles",
"menu": [
{
"title": "Create Role",
"key": "create-role"
},
{
"title": "Edit Role",
"key": "edit-role"
},
{
"title": "Delete Role",
"key": "delete-role"
},
{
"title": "Assign Users to Role",
"key": "assign-users-to-role"
},
{
"title": "Edit Date Range for Role Membership",
"key": "edit-date-range-for-role-membership"
},
{
"title": "View Users Assigned to Role",
"key": "view-users-assigned-to-role"
},
{
"title": "Remove Users from Role",
"key": "remove-users-from-role"
}
]
},
{
"title": "Role Groups",
"menu": [
{
"title": "Add Role to New Group",
"key": "add-role-to-new-group"
},
{
"title": "Add Role to Existing Group",
"key": "add-role-to-existing-group"
},
{
"title": "View Roles Included in Group",
"key": "view-roles-included-in-group"
},
{
"title": "Remove Role from Group",
"key": "remove-role-from-group"
},
{
"title": "Edit Custom Role Group",
"key": "edit-custom-role-group"
},
{
"title": "Delete Custom Role Group",
"key": "delete-custom-role-group"
}
]
}
]
},
{
"title": "JWT Authentication",
"key": "administrators-jwt-overview",
"menu": [
{
"title": "Set Up JWT Auth",
"key": "setup-jwt-for-auth"
},
{
"title": "JWT User Credentials",
"key": "jwt-user-credentials"
},
{
"title": "JWT Server Response",
"key": "jwt-server-response"
},
{
"title": "JWT Access Token",
"key": "jwt-access-token"
},
{
"title": "JWT Page Request",
"key": "jwt-page-request"
},
{
"title": "JWT Auth Handler",
"key": "jwt-auth-handler"
}
]
}
]
},
{
"title": "Building Your Site",
"key": "administrators-building-your-site-overview",
"menu": [
{
"title": "Managing Assets",
"key": "administrators-assets-overview",
"menu": [
{
"title": "Assets/Files",
"menu": [
{
"title": "Add Assets",
"key": "add-assets"
},
{
"title": "Edit Asset Properties",
"key": "edit-asset-properties"
},
{
"title": "Edit Asset Permissions",
"key": "edit-asset-permissions"
},
{
"title": "Move Asset",
"key": "move-asset"
},
{
"title": "Copy Asset",
"key": "copy-asset"
},
{
"title": "Download Asset",
"key": "download-asset"
},
{
"title": "Delete Asset",
"key": "delete-asset"
}
]
},
{
"title": "Folders",
"menu": [
{
"title": "Create Folder",
"key": "create-folder"
},
{
"title": "Edit Folder Properties",
"key": "edit-folder-properties"
},
{
"title": "Edit Folder Permissions",
"key": "edit-folder-permissions"
},
{
"title": "Move Folder",
"key": "move-folder"
},
{
"title": "Delete Folder",
"key": "delete-folder"
}
]
},
{
"title": "Asset/File Versioning",
"menu": [
{
"title": "Configure Folder/File Versioning",
"key": "configure-folder-file-versioning"
},
{
"title": "View File Versions",
"key": "view-file-versions"
},
{
"title": "Restore File Version",
"key": "restore-file-version"
},
{
"title": "Delete File Version",
"key": "delete-file-version"
}
]
}
]
},
{
"title": "Managing Pages and Templates",
"key": "administrators-pages-templates-overview",
"menu": [
{
"title": "Pages",
"menu": [
{
"title": "Create Standard Page",
"key": "create-single-page-standard"
},
{
"title": "Create Menu Link to Existing Page",
"key": "create-single-page-existing"
},
{
"title": "Create Menu Link to External URL",
"key": "create-single-page-url"
},
{
"title": "Create Menu Link to Asset (File)",
"key": "create-single-page-file"
},
{
"title": "Create Multiple Pages",
"key": "create-multiple-pages-pb-all"
},
{
"title": "Configure Standard Page",
"key": "configure-page-standard"
},
{
"title": "Configure Menu Link to Existing Page",
"key": "configure-page-existing"
},
{
"title": "Configure Menu Link to External URL",
"key": "configure-page-url"
},
{
"title": "Configure Menu Link to Asset (File)",
"key": "configure-page-file"
},
{
"title": "Copy Page",
"key": "copy-page-pb-all"
},
{
"title": "Edit Page",
"key": "edit-page-pb-all"
},
{
"title": "View Hidden Page",
"key": "view-hidden-page-pb-all"
},
{
"title": "Delete Page",
"key": "delete-page-pb-all"
},
{
"title": "Restore Deleted Pages",
"key": "restore-deleted-pages"
},
{