-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex-old.html
1007 lines (908 loc) · 51.4 KB
/
index-old.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
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>University of Virginia Dataverse Dataverse</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="The Dataverse Project is an open source software application to share, cite and archive data. Dataverse provides a robust infrastructure for data stewards to host and archive data, while offering researchers an easy way to share and get credit for their data." />
<link type="text/css" rel="stylesheet" href="/javax.faces.resource/theme.css.xhtml?ln=primefaces-bootstrap" />
<script type="text/javascript" src="/javax.faces.resource/jquery/jquery.js.xhtml?ln=primefaces&v=5.3"></script>
<script type="text/javascript" src="/javax.faces.resource/jquery/jquery-plugins.js.xhtml?ln=primefaces&v=5.3"></script>
<script type="text/javascript" src="/javax.faces.resource/primefaces.js.xhtml?ln=primefaces&v=5.3"></script>
<link type="text/css" rel="stylesheet" href="/javax.faces.resource/primefaces.css.xhtml?ln=primefaces&v=5.3" />
<script type="text/javascript">
if (window.PrimeFaces) {}
</script>
<link type="image/png" rel="icon" href="/javax.faces.resource/images/favicondataverse.png.xhtml" />
<link type="image/png" rel="image_src" href="/javax.faces.resource/images/dataverseproject.png.xhtml" />
<link type="text/css" rel="stylesheet" href="../../bootstrap/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="../../bootstrap/css/bootstrap-theme.min.css" />
<script>
// Break out of iframe
if (window !== top) top.location = window.location;
</script>
</head>
<body>
<a href="#content" class="sr-only">Skip to main content</a>
<style>
/* Custom CSS */
/* Add any CSS necessary for your custom content */
/*
.navbar-default {
background-color: #E3721F;
background-image: none;
}
*/
/*
* Core Owl Carousel CSS File
* v1.3.3
*/
/* clearfix */
.owl-carousel .owl-wrapper:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
/* display none until init */
.owl-carousel {
display: none;
position: relative;
width: 100%;
-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
display: none;
position: relative;
-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
overflow: hidden;
position: relative;
width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
cursor: pointer;
}
.owl-controls {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
cursor: url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
}
/* Featured Dataverses*/
#carouselBlocksWrapper {
border-bottom: 1px solid #ddd;
margin-bottom: 1em;
}
#featuredDataversesBlock {
overflow: hidden;
padding-top: .5em;
border-top: 1px solid #ddd;
}
#featuredDataversesBlock div.customNavigation {
width: 4%;
float: left;
padding: 28px 0;
}
#featuredDataversesBlock div.customNavigation span.glyphicon {
color: #999999;
font-size: 2em;
}
#featuredDataversesList {
width: 90%;
float: left;
}
#featuredDataversesList .item {
min-height: 80px;
}
#featuredDataversesList .item a {
display: block;
}
#featuredDataversesList .item .icon-dataverse {
font-size: 50px;
line-height: normal;
color: #c55b28;
}
#featuredDataversesList .item img {
max-width: 160px;
max-height: 60px;
}
.owl-carousel {
margin-bottom: .5em;
}
.owl-carousel .item {
text-align: center;
padding: 10px;
border: 1px solid #e3e3e3;
border-radius: 4px;
margin: 10px;
}
.logoPreview {
max-width: 80px;
max-height: 80px;
}
#metadataFieldOptionsPanel-Block {
width: 70%;
margin-left: 60px;
margin-top: .5em;
}
#metadataFieldOptionsPanel-Body {
padding: 0;
max-height: 400px;
overflow-y: scroll;
}
#metadataFieldOptions td {
vertical-align: middle;
}
#metadataFieldOptions div.checkbox.child-field {
padding-left: 18px;
}
</style>
<style>
/* NOTE: You can use the custom CSS configuration to move this CSS your own stylesheet... */
/* Overwrite default navbar styles to make room at the top of the browser page for our custom header... */
.navbar-fixed-top {
top: 50px !important;
}
#dataverse-header-block {
padding-top: 150px;
}
/* Place narrow custom header at the top of the page... */
#custom-header {
background: #03316A;
min-height: 44px;
position: fixed;
right: 0;
left: 0;
z-index: 930;
padding-top: 8px;
}
#custom-header a.cst-hdr-link {
line-height: 32px;
color: #F59A2C;
font-weight: bold;
}
/*Custom Search Bar with Advanced features*/
.dropdown.dropdown-lg .dropdown-menu {
margin-top: -1px;
padding: 6px 20px;
}
.input-group-btn .btn-group {
display: flex !important;
}
.btn-group .btn {
border-radius: 0;
margin-left: -1px;
}
.btn-group .btn:last-child {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.btn-group .form-horizontal .btn[type="submit"] {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.form-horizontal .form-group {
margin-left: 0;
margin-right: 0;
}
.form-group .form-control:last-child {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
@media screen and (min-width: 768px) {
#adv-search {
width: 500px;
margin: 0 auto;
}
.dropdown.dropdown-lg {
position: static !important;
}
.dropdown.dropdown-lg .dropdown-menu {
min-width: 500px;
}
}
</style>
<div id="custom-header">
<div class="container">
<p class="text-right">
<a class="pull-left" href="http://library.virginia.edu/" title="UVa Library" target="_blank"><img src="/logos/navbar/uva-horizontal-logo.png" alt="UVa Library"/></a>
<a class="cst-hdr-link" href="http://libra.virginia.edu" title="Discover Libra Repository" target="_blank">Discover Libra Repository</a>
</p>
</div>
</div>
<div id="dataverse-header-block">
<!-- Navbar Panel -->
<nav id="navbarFixed" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#topNavBar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/"><img src="/logos/navbar/DV-LibraData.png" />
</a>
<span class="label label-default status">For Testing Only...</span>
</div>
<div class="collapse navbar-collapse" id="topNavBar">
<ul class="nav navbar-nav navbar-right">
<li>
<a id="navbar-search-toggle" title="Search all dataverses...">
<span class="glyphicon glyphicon-search"></span>
</a>
</li>
<form class="navbar-form navbar-left" role="search" style="display:none;">
<div class="form-group">
<label class="sr-only" for="navbarsearch">Search</label>
<input id="navbarsearch" type="text" class="search-input ui-inputfield ui-inputtext ui-widget ui-state-default ui-corner-all" size="28" value="" placeholder="Search all dataverses..." />
</div>
<button type="submit" class="btn btn-default" onclick="window.location = '/dataverse/uva?q=' + document.getElementById('navbarsearch').value; return false;">
<span class="glyphicon glyphicon-search"></span> Find
</button>
</form>
<li><a href="http://www.library.virginia.edu/libra/datasets/" target="_blank">
About
</a>
</li>
<li><a href="http://uvalib.github.io/dataverse-docs/en/current/user" target="_blank">
User Guide
</a>
</li>
<form id="j_idt42" name="j_idt42" method="post" action="/dataverse_homepage.xhtml" class="navbar-form navbar-left navbar-form-link">
<input type="hidden" name="j_idt42" value="j_idt42" />
<a id="j_idt42:j_idt43" href="#" class="ui-commandlink ui-widget" onclick="PrimeFaces.ab({s:"j_idt42:j_idt43",u:"contactDialog",onco:function(xhr,status,args){PF('contactForm').show();}});return false;">Support</a><input type="hidden" name="javax.faces.ViewState" id="j_id1:javax.faces.ViewState:0" value="-3332564171209794974:2882892650326017689" autocomplete="off" />
</form>
<li>
</li>
<li><a href="/loginpage.xhtml?redirectPage=%2Fdataverse_homepage.xhtml">
Log In
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header Panel -->
<!-- Message Panel -->
<div id="messagePanel">
<div class="container messagePanel">
</div>
</div>
</div>
<div class="container" id="content">
<!-- <style>
/* NOTE: You can use the custom CSS configuration to move this CSS your own stylesheet... */
/* Custom CSS for the custom homepage... */
div.jumbotron h1 {
color: #FFF;
}
div.jumbotron h2 {
color: #FFF;
}
div.jumbotron {
background-color: #E57200;
}
</style>
<hr />
<div class="row">
<div class="col-md-6 well">
<h2>Add your dataset to LibraData</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque velit nibh, bibendum et augue a, accumsan tristique dui. Sed semper at lorem quis placerat. Maecenas et lectus lorem.</p>
<div class="button-block">
<button type="button" class="btn btn-primary btn-access" onclick="PF('addData_popup').show()">
<span class="glyphicon glyphicon-plus"></span> Add Data
</button>
</div>
</div>
<div class="col-md-6">
<h3>This block that points out some interesting data</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque velit nibh.</p>
<ol>
<li><a href="http://www.library.virginia.edu/libra/datasets/libra-data-deposit-checklist/">Libra Data Deposit Checklist</a></li>
<li><a href="http://www.library.virginia.edu/libra/datasets/">Datasets</a></li>
<li><a href="http://uvalib.github.io/dataverse-docs/">Libra Data (Dataverse) User Guides</a></li>
<li><a href="#">Search Virgo for Open Works</a></li>
</ol>
</div>
</div>
<hr />
<form>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="form-group">
<label for="searchLibraData">Search LibraData</label>
<input type="search" class="form-control" id="searchLibraData" placeholder="Search">
</div>
<div class="form-group">
<label for="chooseDataverse">Choose a Dataverse</label>
<select class="form-control" id="chooseDataverse">
<option value="0" selected>Search All</option>
<option value="1">University of Virginia Law School</option>
<option value="2">Department of Astronomy</option>
<option value="3">Department of Biology</option>
<option value="4">Center for Politics</option>
<option value="5">Cultural Heritage</option>
<option value="6">Curry School of Education</option>
<option value="7">Department of Economics</option>
<option value="8">Department of Environmental Sciences</option>
<option value="9">McIntire School of Commerce</option>
<option value="10">Department of Politics</option>
<option value="11">School of Engineering & Applied Science</option>
</select>
</div>
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-search"></span> Search</button>
</div>
</div>
</form>
<hr />
<div class="row">
<h3>Featured Dataverses</h3>
</div>
<div class="row" style="margin-bottom: 15px;">
<div class="col-md-6">
<a href="/dataverse/uva" class="btn btn-default pull-right" role="button">Browse ALL Dataverses</a>
</div>
<div class="col-md-6">
<a href="/dataverse/uva?q=&types=datasets&sort=dateSort&order=desc&page=1" class="btn btn-default" role="button">Browse Datasets</a>
</div>
</div>
<div class="row">
<div class="col-md-6">
<a href="/dataverse/uva-law" class="btn btn-block btn-lg btn-primary" role="button">University of Virginia Law School</a>
<a href="/dataverse/astronomy" class="btn btn-block btn-lg btn-primary" role="button">Department of Astronomy</a>
<a href="/dataverse/biology" class="btn btn-block btn-lg btn-primary" role="button">Department of Biology</a>
<a href="/dataverse/centerforpolitics" class="btn btn-block btn-lg btn-primary" role="button">Center for Politics</a>
<a href="/dataverse/culturalheritage" class="btn btn-block btn-lg btn-primary" role="button">Cultural Heritage</a>
<a href="/dataverse/curry" class="btn btn-block btn-lg btn-primary" role="button">Curry School of Education</a>
</div>
<div class="col-md-6">
<a href="/dataverse/econ" class="btn btn-block btn-lg btn-primary" role="button">Department of Economics</a>
<a href="/dataverse/envisci" class="btn btn-block btn-lg btn-primary" role="button">Department of Environmental Sciences</a>
<a href="/dataverse/commerce" class="btn btn-block btn-lg btn-primary" role="button">McIntire School of Commerce</a>
<a href="/dataverse/politics" class="btn btn-block btn-lg btn-primary" role="button">Department of Politics</a>
<a href="/dataverse/seas" class="btn btn-block btn-lg btn-primary" role="button">School of Engineering & Applied Science</a>
</div>
</div>
<hr />
<hr />
<hr />
<h3>option two</h3>
<div class="row">
<div class="col-md-6 well">
<h2>Add your dataset to LibraData</h2>
<p>LibraData is a place for UVA researchers to share data publicly, and is part of the Libra Scholarly Repository suite of services which includes works of UVA scholarship such as articles, books, theses, and data.</p>
<div class="button-block">
<button type="button" class="btn btn-primary btn-access" onclick="PF('addData_popup').show()">
<span class="glyphicon glyphicon-plus"></span> Add Data
</button>
</div>
</div>
<div class="col-md-6">
<h3>Why Deposit data in LibraData?</h3>
<ul>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#increasedVisibility" aria-expanded="false" aria-controls="increasedVisibility">Increased visibility and impact of your research data</a>
<div class="collapse" id="increasedVisibility" style="padding-left: 18px;">
<p>Sharing your data publicly can increase your research impact and visibility, creating additional opportunities for collaboration and connection within and beyond your existing network. To assist in the sharing process, a persistent identifier (DOI) is created for each LibraData dataset.</p>
</div>
</li>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#safeManagement" aria-expanded="false" aria-controls="safeManagement">Safe management of your data</a>
<div class="collapse" id="safeManagement" style="padding-left: 18px;">
<p>Depositing your research data in LibraData not only makes your data discoverable and accessible to a wider audience, but also keeps your data safer. The UVA Library, and UVA’s Information Technology Services, are committed to the durability and sustainability of scholarship deposited in Libra. Libra uses standard data management practices, including security and backup procedures, to provide a reasonable assurance that files will remain retrievable over time. LibraData will be preserved in the Academic Preservation Trust, of which UVA Library is a founding member and partner.</p>
</div>
</li>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#journalGrant" aria-expanded="false" aria-controls="journalGrant">Fulfillment of journal and grant mandates</a>
<div class="collapse" id="journalGrant" style="padding-left: 18px;">
<p>More journals and public and private funding agencies are requiring that researchers deposit data created as part of the research process. Publishing your data within LibraData meets the requirements of these mandates.</p>
</div>
</li>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#timeSaved" aria-expanded="false" aria-controls="timeSaved">Valuable research time saved</a>
<div class="collapse" id="timeSaved" style="padding-left: 18px;">
<p>Using LibraData’s easy-to-use interface to deposit, describe, and share your data saves you time and allows you to focus on your research.</p>
</div>
</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="well col-md-12" style="background-image: none; background-color: #E57200;">
<div class="input-group" id="adv-search">
<input type="text" class="form-control col-sm-6" placeholder="Search Datasets" />
<div class="input-group-btn">
<div class="btn-group" role="group">
<div class="dropdown dropdown-lg">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false"><span class="caret"></span></button>
<div class="dropdown-menu dropdown-menu-right" role="menu">
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="filter">Filter by:</label>
<select class="form-control">
<option value="0" selected>Search All</option>
<option value="1">University of Virginia Law School</option>
<option value="2">Department of Astronomy</option>
<option value="3">Department of Biology</option>
<option value="4">Center for Politics</option>
<option value="5">Cultural Heritage</option>
<option value="6">Curry School of Education</option>
<option value="7">Department of Economics</option>
<option value="8">Department of Environmental Sciences</option>
<option value="9">McIntire School of Commerce</option>
<option value="10">Department of Politics</option>
<option value="11">School of Engineering & Applied Science</option>
</select>
</div>
<div class="form-group">
<label for="contain">Author</label>
<input class="form-control" type="text" />
</div>
<div class="form-group">
<label for="contain">Contains the words</label>
<input class="form-control" type="text" />
</div>
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> Search</button>
</form>
</div>
</div>
<button type="button" class="btn btn-default"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> Search</button>
</div>
</div>
</div>
</div>
</div>
<hr />
<div class="row">
<h3>Featured Dataverses</h3>
</div>
<div class="row" style="margin-bottom: 15px;">
<div class="col-md-6">
<a href="/dataverse/uva" class="btn btn-default pull-right" role="button">Browse ALL Dataverses</a>
</div>
<div class="col-md-6">
<a href="/dataverse/uva?q=&types=datasets&sort=dateSort&order=desc&page=1" class="btn btn-default" role="button">Browse Datasets</a>
</div>
</div>
<div class="row">
<div class="col-md-6">
<a href="/dataverse/uva-law" class="btn btn-block btn-lg btn-primary" role="button">University of Virginia Law School</a>
<a href="/dataverse/astronomy" class="btn btn-block btn-lg btn-primary" role="button">Department of Astronomy</a>
<a href="/dataverse/biology" class="btn btn-block btn-lg btn-primary" role="button">Department of Biology</a>
<a href="/dataverse/centerforpolitics" class="btn btn-block btn-lg btn-primary" role="button">Center for Politics</a>
<a href="/dataverse/culturalheritage" class="btn btn-block btn-lg btn-primary" role="button">Cultural Heritage</a>
<a href="/dataverse/curry" class="btn btn-block btn-lg btn-primary" role="button">Curry School of Education</a>
</div>
<div class="col-md-6">
<a href="/dataverse/econ" class="btn btn-block btn-lg btn-primary" role="button">Department of Economics</a>
<a href="/dataverse/envisci" class="btn btn-block btn-lg btn-primary" role="button">Department of Environmental Sciences</a>
<a href="/dataverse/commerce" class="btn btn-block btn-lg btn-primary" role="button">McIntire School of Commerce</a>
<a href="/dataverse/politics" class="btn btn-block btn-lg btn-primary" role="button">Department of Politics</a>
<a href="/dataverse/seas" class="btn btn-block btn-lg btn-primary" role="button">School of Engineering & Applied Science</a>
</div>
</div>
<hr />
<hr />
<hr /> -->
<div class="row">
<div class="col-md-6 well">
<!-- <div class="well well-sm" style="background-image: none; background-color: #E57200;"> -->
<h2 style="color: #EB5F0C; margin-top: 0px;">Add your dataset to LibraData</h2>
<!--</div>-->
<p>LibraData is a place for UVA researchers to share data publicly, and is part of the Libra Scholarly Repository suite of services which includes works of UVA scholarship such as articles, books, theses, and data.</p>
<p><b>Step One:</b> Start with the <a href="http://www.library.virginia.edu/libra/datasets/libra-data-deposit-checklist/" target="_blank">LibraData Checklist</a></p>
<div class="form-group">
<label>Step Two:</label>
<select>
<option selected>Select Dataverse...</option>
<option value="1">University of Virginia Law School</option>
<option value="2">Department of Astronomy</option>
<option value="3">Department of Biology</option>
<option value="4">Center for Politics</option>
<option value="5">Cultural Heritage</option>
<option value="6">Curry School of Education</option>
<option value="7">Department of Economics</option>
<option value="8">Department of Environmental Sciences</option>
<option value="9">McIntire School of Commerce</option>
<option value="10">Department of Politics</option>
<option value="11">School of Engineering & Applied Science</option>
</select>
</div>
<div class="button-block">
<button type="button" class="btn btn-primary btn-access" onclick="PF('addData_popup').show()">Next</button>
</div>
</div>
<div class="col-md-6">
<h3>Why Deposit data in LibraData?</h3>
<ul>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#increasedVisibility" aria-expanded="false" aria-controls="increasedVisibility">Increased visibility and impact of your research data</a>
<div class="collapse" id="increasedVisibility" style="padding-left: 18px;">
<p>Sharing your data publicly can increase your research impact and visibility, creating additional opportunities for collaboration and connection within and beyond your existing network. To assist in the sharing process, a persistent identifier (DOI) is created for each LibraData dataset.</p>
</div>
</li>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#safeManagement" aria-expanded="false" aria-controls="safeManagement">Safe management of your data</a>
<div class="collapse" id="safeManagement" style="padding-left: 18px;">
<p>Depositing your research data in LibraData not only makes your data discoverable and accessible to a wider audience, but also keeps your data safer. The UVA Library, and UVA’s Information Technology Services, are committed to the durability and sustainability of scholarship deposited in Libra. Libra uses standard data management practices, including security and backup procedures, to provide a reasonable assurance that files will remain retrievable over time. LibraData will be preserved in the Academic Preservation Trust, of which UVA Library is a founding member and partner.</p>
</div>
</li>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#journalGrant" aria-expanded="false" aria-controls="journalGrant">Fulfillment of journal and grant mandates</a>
<div class="collapse" id="journalGrant" style="padding-left: 18px;">
<p>More journals and public and private funding agencies are requiring that researchers deposit data created as part of the research process. Publishing your data within LibraData meets the requirements of these mandates.</p>
</div>
</li>
<li class="list-unstyled"><span class="glyphicon glyphicon-chevron-right"></span>
<a data-toggle="collapse" href="#timeSaved" aria-expanded="false" aria-controls="timeSaved">Valuable research time saved</a>
<div class="collapse" id="timeSaved" style="padding-left: 18px;">
<p>Using LibraData’s easy-to-use interface to deposit, describe, and share your data saves you time and allows you to focus on your research.</p>
</div>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12" style="margin: 15px 0; padding: 30px; border-top: 1px solid #DADADA; border-bottom: 1px solid #DADADA;">
<div class="input-group" id="adv-search">
<input type="text" class="form-control col-sm-6" placeholder="Search Datasets" />
<div class="input-group-btn">
<div class="btn-group" role="group">
<div class="dropdown dropdown-lg">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false"><span class="caret"></span></button>
<div class="dropdown-menu dropdown-menu-right" role="menu">
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="filter">Filter by:</label>
<select class="form-control">
<option value="0" selected>Search All</option>
<option value="1">University of Virginia Law School</option>
<option value="2">Department of Astronomy</option>
<option value="3">Department of Biology</option>
<option value="4">Center for Politics</option>
<option value="5">Cultural Heritage</option>
<option value="6">Curry School of Education</option>
<option value="7">Department of Economics</option>
<option value="8">Department of Environmental Sciences</option>
<option value="9">McIntire School of Commerce</option>
<option value="10">Department of Politics</option>
<option value="11">School of Engineering & Applied Science</option>
</select>
</div>
<div class="form-group">
<label for="contain">Author</label>
<input class="form-control" type="text" />
</div>
<div class="form-group">
<label for="contain">Contains the words</label>
<input class="form-control" type="text" />
</div>
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> Search</button>
</form>
</div>
</div>
<button type="button" class="btn btn-primary"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> Search</button>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<h3>Featured Dataverses</h3>
</div>
<div class="row" style="margin-bottom: 15px;">
<div class="col-md-6">
<a href="/dataverse/uva" class="btn btn-primary pull-right" role="button">Browse ALL Dataverses</a>
</div>
<div class="col-md-6">
<a href="/dataverse/uva?q=&types=datasets&sort=dateSort&order=desc&page=1" class="btn btn-primary" role="button">Browse Datasets</a>
</div>
</div>
<div class="row">
<div class="col-md-6">
<a href="/dataverse/uva-law" class="btn btn-block btn-lg btn-default" role="button">University of Virginia Law School</a>
<a href="/dataverse/astronomy" class="btn btn-block btn-lg btn-default" role="button">Department of Astronomy</a>
<a href="/dataverse/biology" class="btn btn-block btn-lg btn-default" role="button">Department of Biology</a>
<a href="/dataverse/centerforpolitics" class="btn btn-block btn-lg btn-default" role="button">Center for Politics</a>
<a href="/dataverse/culturalheritage" class="btn btn-block btn-lg btn-default" role="button">Cultural Heritage</a>
<a href="/dataverse/curry" class="btn btn-block btn-lg btn-default" role="button">Curry School of Education</a>
</div>
<div class="col-md-6">
<a href="/dataverse/econ" class="btn btn-block btn-lg btn-default" role="button">Department of Economics</a>
<a href="/dataverse/envisci" class="btn btn-block btn-lg btn-default" role="button">Department of Environmental Sciences</a>
<a href="/dataverse/commerce" class="btn btn-block btn-lg btn-default" role="button">McIntire School of Commerce</a>
<a href="/dataverse/politics" class="btn btn-block btn-lg btn-default" role="button">Department of Politics</a>
<a href="/dataverse/seas" class="btn btn-block btn-lg btn-default" role="button">School of Engineering & Applied Science</a>
</div>
</div>
</div>
<!-- FOOTER BLOCK -->
<div id="footer">
<div class="container">
<div class="row">
<div class="col-sm-8 small">
<p>Copyright © 2017, by the Rector and Visitors of the University of Virginia | <a href="http://www.virginia.edu/siteinfo/privacy" target="_blank">Privacy Policy</a>
</p>
</div>
<div class="col-sm-4 text-right">
<div class="poweredbylogo">
<span>Powered by</span>
<a href="http://dataverse.org/" title="The Dataverse Project" target="_blank"><img src="/resources/images/dataverseproject_logo.png" alt="The Dataverse Project" /></a><span class="version">v. 4.7.1 build 94-62f8987</span>
</div>
</div>
</div>
</div>
</div>
<style>
/* NOTE: You can use the custom CSS configuration to move this CSS your own stylesheet. */
/* Overwrite default footer styles to make room at the bottom of the browser page for our custom footer... */
html,
body {
height: 100%;
}
#content.container {
min-height: calc(100% - 210px);
margin-bottom: -142px;
}
#content.container:after {
content: "";
display: block;
}
#footer {
color: #a9a9a9;
margin-top: 0px;
padding-bottom: 0px;
bottom: -130px;
position: relative;
}
/* Place custom footer just above default footer at the bottom of the page... */
#custom-footer,
#content.container:after {
height: 142px;
}
#custom-footer {
background: #03316A;
color: #a9a9a9;
min-height: 100px;
padding: 1.25em 0 100px 0;
}
#custom-footer a {
color: #fff
}
</style>
<div id="custom-footer">
<div class="container">
<p>SAMPLE FOOTER TEXT</p>
<p class="small">
<a href="https://dataverse.org" title="SAMPLE LINK" target="_blank">SAMPLE LINK</a>
</p>
</div>
</div>
<!-- <div id="ajaxStatusPanel">
<div id="ajaxStatusPanel_start" style="display:none"><img src="/resources/images/ajax-loading.gif" alt="Loading" /></div>
<div id="ajaxStatusPanel_complete" style="display:none">
DO NOTHING
</div>
</div>
<script id="ajaxStatusPanel_s" type="text/javascript">
$(function() {
PrimeFaces.cw("AjaxStatus", "widget_ajaxStatusPanel", {
id: "ajaxStatusPanel"
});
});
</script>
Dialog Contact Form
<div id="contactDialog" class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-shadow ui-hidden-container">
<div class="ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top"><span id="contactDialog_title" class="ui-dialog-title">Contact University of Virginia Dataverse Support</span><a href="#" class="ui-dialog-titlebar-icon ui-dialog-titlebar-close ui-corner-all"><span class="ui-icon ui-icon-closethick"></span></a></div>
<div class="ui-dialog-content ui-widget-content">
<div id="j_idt191">
<form id="emailForm" name="emailForm" method="post" action="/" class="form-horizontal" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="emailForm" value="emailForm" />
to: Support
<div class="form-group">
<label for="messageTo" class="col-sm-3 control-label">To</label>
<div class="col-sm-9">
<p id="messageTo" class="form-control-static">University of Virginia Dataverse Support</p>
</div>
</div>
from email (not logged in)
<div class="form-group">
<label for="userEmail" class="col-sm-3 control-label">From <span class="glyphicon glyphicon-asterisk text-danger" title="Required field"></span></label>
<div class="col-sm-9"><input id="emailForm:userEmail" name="emailForm:userEmail" type="text" value="" size="30" class="ui-inputfield ui-inputtext ui-widget ui-state-default ui-corner-all form-control" />
<script id="emailForm:userEmail_s" type="text/javascript">
PrimeFaces.cw("InputText", "widget_emailForm_userEmail", {
id: "emailForm:userEmail"
});
</script>
</div>
</div>
subject
<div class="form-group">
<label for="messageSubject" class="col-sm-3 control-label">Subject <span class="glyphicon glyphicon-asterisk text-danger" title="Required field"></span></label>
<div class="col-sm-9"><input id="emailForm:messageSubject" name="emailForm:messageSubject" type="text" value="" class="ui-inputfield ui-inputtext ui-widget ui-state-default ui-corner-all form-control" />
<script id="emailForm:messageSubject_s" type="text/javascript">
PrimeFaces.cw("InputText", "widget_emailForm_messageSubject", {
id: "emailForm:messageSubject"
});
</script>
</div>
</div>
message
<div class="form-group">
<label for="userMessage" class="col-sm-3 control-label">Message <span class="glyphicon glyphicon-asterisk text-danger" title="Required field"></span></label>
<div class="col-sm-9"><textarea id="emailForm:userMessage" name="emailForm:userMessage" cols="20" rows="10" maxlength="2147483647" class="ui-inputfield ui-inputtextarea ui-widget ui-state-default ui-corner-all form-control"></textarea>
<script id="emailForm:userMessage_s" type="text/javascript">
$(function() {
PrimeFaces.cw("InputTextarea", "widget_emailForm_userMessage", {
id: "emailForm:userMessage",
autoResize: false
});
});
</script>
</div>
</div>
validation
<div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<p><span class="highlightBold">Please fill this out to prove you are not a robot.</span> <span class="glyphicon glyphicon-asterisk text-danger" title="Required field"></span>
</p> + = <input id="emailForm:messageSum" name="emailForm:messageSum" type="text" size="4" class="ui-inputfield ui-inputtext ui-widget ui-state-default ui-corner-all" />
<script id="emailForm:messageSum_s" type="text/javascript">
PrimeFaces.cw("InputText", "widget_emailForm_messageSum", {
id: "emailForm:messageSum"
});
</script>
</div>
</div>
send | cancel buttons
<div class="button-block"><a id="emailForm:j_idt209" href="#" class="ui-commandlink ui-widget btn btn-default" onclick="PrimeFaces.ab({s:"emailForm:j_idt209",u:"emailForm",onco:function(xhr,status,args){if (args && !args.validationFailed) PF('contactForm').hide();;},pa:[{name:"DO_VALIDATION",value:"true"}],fi:"j_idt191"});return false;">Send Message</a>
<button type="button" onclick="PF('contactForm').hide()" class="btn btn-default" value="Cancel">
Cancel
</button>
</div><input type="hidden" name="javax.faces.ViewState" id="j_id1:javax.faces.ViewState:0" value="-3332564171209794974:2882892650326017689" autocomplete="off" />
</form>
</div>
</div>
</div>
<script id="contactDialog_s" type="text/javascript">
$(function() {
PrimeFaces.cw("Dialog", "contactForm", {
id: "contactDialog",
modal: true
});
});
</script>
<div id="statusInfo" class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-shadow ui-hidden-container">
<div class="ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top"><span id="statusInfo_title" class="ui-dialog-title">For Testing Only...</span><a href="#" class="ui-dialog-titlebar-icon ui-dialog-titlebar-close ui-corner-all"><span class="ui-icon ui-icon-closethick"></span></a></div>
<div class="ui-dialog-content ui-widget-content">
<p></p>
<div class="button-block">
<button type="button" onclick="PF('statusInfo').hide()" class="btn btn-default" value="Close">
Close
</button>
</div>
</div>
</div>
<script id="statusInfo_s" type="text/javascript">
$(function() {
PrimeFaces.cw("Dialog", "statusInfo", {
id: "statusInfo",
modal: true
});
});
</script> -->
<script type="text/javascript" defer="defer" src="../../bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../../js/jquery-3.2.1.min.js"></script>
<!-- <script type="text/javascript" defer="defer" src="/javax.faces.resource/bs/js/bootstrap-hover-dropdown.min.js.xhtml?version=4.7.1"></script>
<script type="text/javascript" defer="defer" src="/javax.faces.resource/js/ie-compat.js.xhtml?version=4.7.1"></script>
<script type="text/javascript" defer="defer" src="/javax.faces.resource/js/dv_rebind_bootstrap_ui.js.xhtml?version=4.7.1"></script>
<script type="text/javascript" defer="defer" src="/javax.faces.resource/js/owl.carousel.js.xhtml?version=4.7.1"></script>
<script type="text/javascript" defer="defer" src="/javax.faces.resource/js/jquery.matchHeight.js.xhtml?version=4.7.1"></script>
<script type="text/javascript" defer="defer" src="/javax.faces.resource/js/jquery.sharrre.js.xhtml?version=4.7.1"></script>
<script type="text/javascript" defer="defer" src="/javax.faces.resource/js/clipboard.min.js.xhtml?version=4.7.1"></script>
<script>
//<![CDATA[
$(document).ready(function() {
// Navbar Search Toggle
$(document).on('click', '#navbar-search-toggle', function(e) {
$(this).parent("li").hide();
$("form.navbar-form[role='search']").show();
});
$('body').click(function(e) {
if (!$(e.target).closest("form.navbar-form[role='search']").length) {
$("form.navbar-form[role='search']").hide();
$("#navbar-search-toggle").parent("li").show();
};
});
// Rebind bootstrap UI components
bind_bsui_components();
});
/*
* Custom Popover with HTML code snippet
*/
function popoverHTML() {
var popoverTemplateHTML = ['<div class="popover">',
'<div class="arrow"></div>',
'<h3 class="popover-title"></h3>',
'<div class="popover-content">',
'</div>',
'</div>'
].join('');
var popoverContentHTML = ['<code>',
'<h:outputText value="<a>, <b>, <blockquote>, <br>, <code>, <del>, <dd>, <dl>, <dt>, <em>, <hr>, <h1>-<h3>, <i>, <img>, <kbd>, <li>, <ol>, <p>, <pre>, <s>, <sup>, <sub>, <strong>, <strike>, <ul>" escape="true"/>',
'</code>'
].join('');
$('body').popover({
selector: 'span.popoverHTML',
title: '<h:outputText value="Allowed HTML Tags"/>',
trigger: 'hover',
content: popoverContentHTML,
template: popoverTemplateHTML,
placement: "bottom",
container: "#content",
html: true
});
}
//]]>
</script>
<script>
Google Analytics Snippet
</script> -->
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = "//analytics.lib.virginia.edu/";
_paq.push(['setTrackerUrl', u + 'piwik.php']);
_paq.push(['setSiteId', 27]);
var d = document,
g = d.createElement('script'),
s = d.getElementsByTagName('script')[0];
g.type = 'text/javascript';
g.async = true;
g.defer = true;
g.src = u + 'piwik.js';
s.parentNode.insertBefore(g, s);
})();