-
Notifications
You must be signed in to change notification settings - Fork 17
/
browse_pages.html
3546 lines (2317 loc) · 104 KB
/
browse_pages.html
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content=" ">
<title> | Samvera Community Knowledge Base</title>
<link rel="stylesheet" href="/css/syntax.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!--<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">-->
<link rel="stylesheet" href="/css/modern-business.css">
<link rel="stylesheet" href="/css/lavish-bootstrap.css">
<link rel="stylesheet" href="/css/customstyles.css">
<link rel="stylesheet" href="/css/theme-samvera.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="/js/jquery.navgoco.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/2.0.0/anchor.min.js"></script>
<script src="/js/toc.js"></script>
<script src="/js/customscripts.js"></script>
<link rel="shortcut icon" href="/images/favicon.ico">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
$(document).ready(function() {
// Initialize navgoco with default options
$("#mysidebar").navgoco({
caretHtml: '',
accordion: true,
openClass: 'active', // open
save: false, // leave false or nav highlighting doesn't work right
cookie: {
name: 'navgoco',
expires: false,
path: '/'
},
slide: {
duration: 400,
easing: 'swing'
}
});
$("#collapseAll").click(function(e) {
e.preventDefault();
$("#mysidebar").navgoco('toggle', false);
});
$("#expandAll").click(function(e) {
e.preventDefault();
$("#mysidebar").navgoco('toggle', true);
});
});
</script>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container topnavlinks">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://samvera.github.io/index.html" title="Samvera Community Knowledge Base">
<img alt="Samvera TM Logo" src="/images/company_logo.png">
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<!-- entries without drop-downs appear here -->
<li class="active"><a href="/browse_pages.html">Browse Pages</a></li>
<li><a href="/get-help.html">Contact</a></li>
<!-- entries with drop-downs appear here -->
<!-- conditional logic to control which topnav appears for the audience defined in the configuration file.-->
<li>
<div id="search-demo-container">
<form role="search" method="get" action="http://samvera.github.io/search/" id="search-input">
<input id="searchString" name="searchString"
placeholder="Search..." type="text">
<button type="submit" title="Search for keywords"><i class="fa fa-search" name="googleSearchName"value="Search"></i></button>
</form>
</div>
</li>
</ul>
</div>
</div>
<!-- /.container -->
</nav>
<!-- Page Content -->
<div class="container">
<div class="col-lg-12"> </div>
<!-- Content Row -->
<div class="row">
<!-- Sidebar Column -->
<div class="col-md-3">
<ul id="mysidebar" class="nav">
<li class="sidebarTitle"> </li>
<li>
<a href="#">New? Start Here</a>
<ul>
<li><a href="http://samvera.github.io/introduction.html">Introduction</a></li>
<li><a href="http://samvera.github.io/formalities.html">Formalities</a></li>
<li class="subfolders">
<a href="#">Training Slideshows</a>
<ul>
<li><a href="http://samvera.github.io/deeper_samvera_index.html">Dive Deeper Into Samvera (Slideshow)</a></li>
<li><a href="http://samvera.github.io/touring_samvera_index.html">Samvera Design Patterns (Slideshow)</a></li>
</ul>
</li>
<li><a href="http://samvera.github.io/our_technology_stack.html">Our Technology Stack</a></li>
<li><a href="http://samvera.github.io/get-help.html">How to Ask for Help</a></li>
<li><a href="http://samvera.github.io/getting_started.html">Up and Running</a></li>
<li><a href="http://samvera.github.io/other-getting-started.html">Other Helpful Getting Started Docs</a></li>
<li><a href="http://samvera.github.io/hyku-vs-hyrax.html">Hyku vs Hyrax</a></li>
<li><a href="http://samvera.github.io/blacklight-plugins.html">Blacklight Plugins</a></li>
</ul>
<li>
<a href="#">Developer Community</a>
<ul>
<li><a href="http://samvera.github.io/communication.html">Communication</a></li>
<li class="subfolders">
<a href="#">Samvera Organizations</a>
<ul>
<li><a href="http://samvera.github.io/samvera_labs.html">Samvera Labs</a></li>
<li><a href="http://samvera.github.io/core_components.html">Core Components</a></li>
<li><a href="http://samvera.github.io/deprecation.html">Deprecation</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Contributing Code</a>
<ul>
<li><a href="http://samvera.github.io/issues.html">Creating Issues</a></li>
<li><a href="http://samvera.github.io/code.html">Code Guidelines</a></li>
<li><a href="http://samvera.github.io/best-practices-coding-styles.html">Coding Style with RuboCop</a></li>
<li><a href="http://samvera.github.io/how-to-pr.html">Contributing to the Project</a></li>
<li><a href="http://samvera.github.io/review.html">Code Review Process</a></li>
<li><a href="http://samvera.github.io/pr-checklist.html">Pull Request Checklist</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Releases</a>
<ul>
<li><a href="http://samvera.github.io/release_process.html">Release Process</a></li>
<li><a href="http://samvera.github.io/release_testing.html">Release Testing</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Feature Guides</a>
<ul>
<li><a href="http://samvera.github.io/intro-to.html">Introduction</a></li>
<li class="subfolders">
<a href="#">Hyrax Version 2.1</a>
<ul>
<li><a href="http://samvera.github.io/configuration-2.1.html">Configuring the Repository</a></li>
<li><a href="http://samvera.github.io/create-works-2.1.html">Creating a Work</a></li>
<li><a href="http://samvera.github.io/edit-works-2.1.html">Editing a Work</a></li>
<li><a href="http://samvera.github.io/collections-2.1.html">Collections</a></li>
<li><a href="http://samvera.github.io/batch-ops-2.1.html">Batch Operations</a></li>
<li><a href="http://samvera.github.io/lease-embargoes-2.1.html">Leases and Embargoes</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Hyrax Version 2.0</a>
<ul>
<li><a href="http://samvera.github.io/configuration-2.0.html">Configuring the Repository</a></li>
<li><a href="http://samvera.github.io/create-works-2.0.html">Creating a Work</a></li>
<li><a href="http://samvera.github.io/edit-works-2.0.html">Editing a Work</a></li>
<li><a href="http://samvera.github.io/admin-sets-2.0.html">Administrative Sets</a></li>
<li><a href="http://samvera.github.io/collections-2.0.html">Collections</a></li>
<li><a href="http://samvera.github.io/batch-works-2.0.html">Batch Operations</a></li>
<li><a href="http://samvera.github.io/lease-embargoes-2.0.html">Leases and Embargoes</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Hyrax Version 1.0</a>
<ul>
<li><a href="http://samvera.github.io/create-works-1.0.html">Creating a Work</a></li>
<li><a href="http://samvera.github.io/edit-works-1.0.html">Editing a Work</a></li>
<li><a href="http://samvera.github.io/batch-works-1.0.html">Batch Operations</a></li>
</ul>
</li>
</ul>
<li>
<a href="#">Development Resources</a>
<ul>
<li><a href="http://samvera.github.io/access-controls.html">Access Controls and Visibility</a></li>
<li class="subfolders">
<a href="#">Creating User Groups</a>
<ul>
<li><a href="http://samvera.github.io/groups.html">Default Setup</a></li>
<li><a href="http://samvera.github.io/admin-users.html">Database-backed Setup</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Collections and Admin Sets</a>
<ul>
<li><a href="http://samvera.github.io/collection-overview.html">Overview</a></li>
<li><a href="http://samvera.github.io/collection-types.html">Collection Types</a></li>
<li><a href="http://samvera.github.io/admin-sets-as-collections-faq.html">Admin Sets as Collections FAQ</a></li>
<li><a href="http://samvera.github.io/admin-set-participants.html">Admin Set Participants</a></li>
<li><a href="http://samvera.github.io/collection-type-participants.html">Collection Type Participants</a></li>
<li><a href="http://samvera.github.io/collection-sharing.html">Collection Sharing</a></li>
<li><a href="http://samvera.github.io/collection-nesting-faq.html">Collection Nesting FAQ</a></li>
<li><a href="http://samvera.github.io/collection-discovery-faq.html">Collection Discovery FAQ</a></li>
<li><a href="http://samvera.github.io/collection-metadata-faq.html">Collection Metadata FAQ</a></li>
<li><a href="http://samvera.github.io/nested-indexing.html">Collection Indexing</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Customizing Metadata Tutorial</a>
<ul>
<li><a href="http://samvera.github.io/customize-metadata-generate-work-type.html">Prereq: Generating a Work Type</a></li>
<li><a href="http://samvera.github.io/customize-metadata-controlled-vocabulary.html">Prereq: Defining a Controlled Vocabulary</a></li>
<li><a href="http://samvera.github.io/metadata_application_profile.html">Metadata Application Profile</a></li>
<li><a href="http://samvera.github.io/customize-metadata-labels.html">Labels and Help Text</a></li>
<li><a href="http://samvera.github.io/customize-metadata-controller.html">Understanding the Controller</a></li>
<li><a href="http://samvera.github.io/customize-metadata-model.html">Defining Metadata in the Model</a></li>
<li><a href="http://samvera.github.io/customize-metadata-edit-form.html">Modifying the Edit Form</a></li>
<li><a href="http://samvera.github.io/customize-metadata-show-page.html">Modifying the Show Page</a></li>
<li><a href="http://samvera.github.io/customize-metadata-discovery.html">Configuring Discovery</a></li>
<li><a href="http://samvera.github.io/customize-metadata-other-customizations.html">Other Metadata Customizations</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Depositing Works</a>
<ul>
<li><a href="http://samvera.github.io/what-happens-deposit-1.0.html">What Happens (1.0)</a></li>
<li><a href="http://samvera.github.io/what-happens-deposit-2.0.html">What Happens (2.0)</a></li>
</ul>
</li>
<li><a href="http://samvera.github.io/toggle-features.html">Enabling Features</a></li>
<li class="subfolders">
<a href="#">Managing Hyrax Notifications</a>
<ul>
<li><a href="http://samvera.github.io/email_notifications.html">Email Notifications</a></li>
<li><a href="http://samvera.github.io/how-to-disable-notifications.html">How-To Disable User Notifications v</a></li>
</ul>
</li>
<li class="subfolders">
<a href="#">Samvera Design Patterns</a>
<ul>
<li><a href="http://samvera.github.io/patterns-overview.html">Overview</a></li>
<li><a href="http://samvera.github.io/patterns-presenters.html">Presenters</a></li>
<li><a href="http://samvera.github.io/actor_stack.html">Actor Stack</a></li>
<li><a href="http://samvera.github.io/building-searches.html">Search Builders</a></li>
</ul>
</li>
<li><a href="http://samvera.github.io/external_binaries.html">Storing Binaries Externally</a></li>
<li><a href="http://samvera.github.io/troubleshooting_riiif.html">Troubleshooting RIIIF</a></li>
<li><a href="http://samvera.github.io/workflow_and_mediated_deposit.html">Workflow and Mediated Deposit</a></li>
</ul>
<li>
<a href="#">Running in Production</a>
<ul>
<li><a href="http://samvera.github.io/service-stack.html">Samvera Services Stack</a></li>
<li><a href="http://samvera.github.io/campus-auth-integrating.html">Campus Authentication with Shibboleth</a></li>
<li><a href="http://samvera.github.io/troubleshooting-production.html">Troubleshooting Production</a></li>
</ul>
<!-- if you aren't using the accordion, uncomment this block:
<p class="external">
<a href="#" id="collapseAll">Collapse All</a> | <a href="#" id="expandAll">Expand All</a>
</p>
-->
</li>
<li>
<a href="http://samvera.github.io/glossary-2.1.html">Glossary</a>
</li>
</ul>
<!-- this highlights the active parent class in the navgoco sidebar. this is critical so that the parent expands when you're viewing a page. This must appear below the sidebar code above. Otherwise, if placed inside customscripts.js, the script runs before the sidebar code runs and the class never gets inserted.-->
<script>$("li.active").parents('li').toggleClass("active");</script>
</div>
<!-- Content Column -->
<div class="col-md-9">
<div class="post-header">
<h1 class="post-title-main"></h1>
</div>
<div class="post-content">
<!-- this handles the automatic toc. use ## for subheads to auto-generate the on-page minitoc. if you use html tags, you must supply an ID for the heading element in order for it to appear in the minitoc. -->
<script>
$( document ).ready(function() {
// Handler for .ready() called.
$('#toc').toc({ minimumHeaders: 0, listType: 'ul', showSpeed: 0, headers: 'h2,h3,h4' });
/* this offset helps account for the space taken up by the floating toolbar. */
$('#toc').on('click', 'a', function() {
var target = $(this.getAttribute('href'))
, scroll_target = target.offset().top
$(window).scrollTop(scroll_target - 10);
return false
})
});
</script>
<div id="toc"></div>
<!-- <link rel="stylesheet" href="http://samvera.github.io/css/browse_pages.css"> -->
<link rel="stylesheet" href="/css/browse_pages.css">
<div id="page_lists">
<h1>Browse pages by:
<span class="select_page_list">
<button class="select_page_list active" value="title">Title</button>
<button class="select_page_list" value="keyword">Keyword</button>
</span>
</h1>
<dl class="page_list by_title" data-pages_listed_by="title">
<dt><a class="page_title" href="index.html">A Guide For The Samvera Community</a></dt>
<dt><a class="page_title" href="admin-sets-as-collections-faq.html">Admin Sets as Collections FAQ</a></dt>
<dt><a class="page_title" href="admin-sets-2.0.html">Administrative Sets</a></dt>
<dt><a class="page_title" href="batch-ops-2.1.html">Batch Operations</a></dt>
<dt><a class="page_title" href="code.html">Code Guidelines</a></dt>
<dt><a class="page_title" href="review.html">Code Review</a></dt>
<dt><a class="page_title" href="best-practices-coding-styles.html">Coding Style with RuboCop</a></dt>
<dt><a class="page_title" href="collection-discovery-faq.html">Collection Discovery FAQ</a></dt>
<dt><a class="page_title" href="collection-metadata-faq.html">Collection Metadata FAQ</a></dt>
<dt><a class="page_title" href="collection-nesting-faq.html">Collection Nesting FAQ</a></dt>
<dt><a class="page_title" href="collections-2.0.html">Collections (2.0)</a></dt>
<dt><a class="page_title" href="collections-2.1.html">Collections (2.1)</a></dt>
<dt><a class="page_title" href="communication.html">Communication</a></dt>
<dt><a class="page_title" href="how-to-disable-notifications.html">Configure Hyrax 1 User Polling Notifications</a></dt>
<dt><a class="page_title" href="customize-metadata-discovery.html">Configuring Discovery</a></dt>
<dt><a class="page_title" href="configuration-2.0.html">Configuring the Repository (2.0)</a></dt>
<dt><a class="page_title" href="configuration-2.1.html">Configuring the Repository (2.1)</a></dt>
<dt><a class="page_title" href="core_components.html">Core Samvera Code Repository</a></dt>
<dt><a class="page_title" href="create-works-1.0.html">Creating a Work (1.0)</a></dt>
<dt><a class="page_title" href="create-works-2.0.html">Creating a Work (2.0)</a></dt>
<dt><a class="page_title" href="create-works-2.1.html">Creating a Work (2.1)</a></dt>
<dt><a class="page_title" href="groups.html">Creating User Groups</a></dt>
<dt><a class="page_title" href="admin-users.html">Creating User Groups with a Database</a></dt>
<dt><a class="page_title" href="batch-works-1.0.html">Creating Works in a Batch (1.0)</a></dt>
<dt><a class="page_title" href="batch-works-2.0.html">Creating Works in a Batch (2.0)</a></dt>
<dt><a class="page_title" href="customize-metadata-model.html">Defining Metadata in the Model</a></dt>
<dt><a class="page_title" href="deprecation.html">Deprecation</a></dt>
<dt><a class="page_title" href="tag_community.html">Development Community</a></dt>
<dt><a class="page_title" href="tag_development_resources.html">Development Resources</a></dt>
<dt><a class="page_title" href="/deeper_samvera_index.html">Dive Deeper into Samvera (slideshow)</a></dt>
<dt><a class="page_title" href="edit-works-1.0.html">Editing a Work (1.0)</a></dt>
<dt><a class="page_title" href="edit-works-2.0.html">Editing a Work (2.0)</a></dt>
<dt><a class="page_title" href="edit-works-2.1.html">Editing a Work (2.1)</a></dt>
<dt><a class="page_title" href="email_notifications.html">Email Notifications</a></dt>
<dt><a class="page_title" href="external_binaries.html">External Binaries</a></dt>
<dt><a class="page_title" href="formalities.html">Formalities</a></dt>
<dt><a class="page_title" href="getting_started.html">Get up and running</a></dt>
<dt><a class="page_title" href="tag_getting_started.html">Getting started pages</a></dt>
<dt><a class="page_title" href="glossary-2.1.html">Glossary of Terms</a></dt>
<dt><a class="page_title" href="get-help.html">Help Resources</a></dt>
<dt><a class="page_title" href="building-searches.html">How Do I Build Searches?</a></dt>
<dt><a class="page_title" href="release_testing.html">How to Coordinate Testing for a Release</a></dt>
<dt><a class="page_title" href="toggle-features.html">How to Enable and Disable Features</a></dt>
<dt><a class="page_title" href="how-to-pr.html">How to Submit Pull Requests</a></dt>
<dt><a class="page_title" href="hyku-vs-hyrax.html">Hyku vs Hyrax?</a></dt>
<dt><a class="page_title" href="intro-to.html">Hyrax Feature Guides</a></dt>
<dt><a class="page_title" href="release_process.html">Hyrax Testing and Release Process</a></dt>
<dt><a class="page_title" href="campus-auth-integrating.html">Integrating with Campus Authorization</a></dt>
<dt><a class="page_title" href="introduction.html">Introduction to Samvera</a></dt>
<dt><a class="page_title" href="issues.html">Issues</a></dt>
<dt><a class="page_title" href="customize-metadata-labels.html">Labels and Help Text</a></dt>
<dt><a class="page_title" href="lease-embargoes-2.0.html">Managing Leases and Embargoes (2.0)</a></dt>
<dt><a class="page_title" href="lease-embargoes-2.1.html">Managing Leases and Embargoes (2.1)</a></dt>
<dt><a class="page_title" href="metadata_application_profile.html">Metadata Application Profile</a></dt>
<dt><a class="page_title" href="customize-metadata-edit-form.html">Modifying the Edit Form</a></dt>
<dt><a class="page_title" href="customize-metadata-show-page.html">Modifying the Show Page</a></dt>
<dt><a class="page_title" href="nested-indexing.html">Nested Indexing</a></dt>
<dt><a class="page_title" href="blacklight-plugins.html">Other Blacklight Plugins</a></dt>
<dt><a class="page_title" href="/other-getting-started.html">Other Helpful Getting Started Docs</a></dt>
<dt><a class="page_title" href="customize-metadata-other-customizations.html">Other Metadata Customizations</a></dt>
<dt><a class="page_title" href="patterns-overview.html">Overview of Design Pattern</a></dt>
<dt><a class="page_title" href="pr-checklist.html">PR Checklist</a></dt>
<dt><a class="page_title" href="customize-metadata-controlled-vocabulary.html">Prereq: Defining a Controlled Vocabulary</a></dt>
<dt><a class="page_title" href="customize-metadata-generate-work-type.html">Prereq: Generating a Work Type</a></dt>
<dt><a class="page_title" href="patterns-presenters.html">Presenters Design Pattern</a></dt>
<dt><a class="page_title" href="tag_running_in_production.html">Running in Production</a></dt>
<dt><a class="page_title" href="/touring_samvera_index.html">Samvera Design Patterns (slideshow)</a></dt>
<dt><a class="page_title" href="samvera_labs.html">Samvera Labs</a></dt>
<dt><a class="page_title" href="/js/mydoc_scroll.html">Scroll layout</a></dt>
<dt><a class="page_title" href="/search/">Search</a></dt>
<dt><a class="page_title" href="/search.json">search</a></dt>