commonmeta-ruby 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (791) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/build.yml +38 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/codeql-analysis.yml +72 -0
  5. data/.github/workflows/rubocop.yml +50 -0
  6. data/.gitignore +59 -0
  7. data/.rubocop.yml +182 -0
  8. data/.rubocop_todo.yml +76 -0
  9. data/.tool-versions +1 -0
  10. data/CHANGELOG.md +124 -0
  11. data/CITATION +16 -0
  12. data/CITATION.cff +20 -0
  13. data/Gemfile +5 -0
  14. data/Gemfile.lock +270 -0
  15. data/LICENSE.md +21 -0
  16. data/README.md +733 -0
  17. data/Rakefile +13 -0
  18. data/bin/commonmeta +9 -0
  19. data/commonmeta.gemspec +68 -0
  20. data/lib/commonmeta/array.rb +13 -0
  21. data/lib/commonmeta/author_utils.rb +172 -0
  22. data/lib/commonmeta/cli.rb +70 -0
  23. data/lib/commonmeta/crossref_utils.rb +343 -0
  24. data/lib/commonmeta/doi_utils.rb +81 -0
  25. data/lib/commonmeta/metadata.rb +269 -0
  26. data/lib/commonmeta/metadata_utils.rb +184 -0
  27. data/lib/commonmeta/pubmed.rb +36 -0
  28. data/lib/commonmeta/readers/bibtex_reader.rb +62 -0
  29. data/lib/commonmeta/readers/cff_reader.rb +146 -0
  30. data/lib/commonmeta/readers/codemeta_reader.rb +90 -0
  31. data/lib/commonmeta/readers/crossref_reader.rb +186 -0
  32. data/lib/commonmeta/readers/crossref_xml_reader.rb +379 -0
  33. data/lib/commonmeta/readers/csl_reader.rb +85 -0
  34. data/lib/commonmeta/readers/datacite_reader.rb +169 -0
  35. data/lib/commonmeta/readers/npm_reader.rb +94 -0
  36. data/lib/commonmeta/readers/ris_reader.rb +66 -0
  37. data/lib/commonmeta/readers/schema_org_reader.rb +300 -0
  38. data/lib/commonmeta/schema_utils.rb +19 -0
  39. data/lib/commonmeta/string.rb +7 -0
  40. data/lib/commonmeta/utils.rb +1351 -0
  41. data/lib/commonmeta/version.rb +5 -0
  42. data/lib/commonmeta/whitelist_scrubber.rb +54 -0
  43. data/lib/commonmeta/writers/bibtex_writer.rb +36 -0
  44. data/lib/commonmeta/writers/cff_writer.rb +63 -0
  45. data/lib/commonmeta/writers/citation_writer.rb +14 -0
  46. data/lib/commonmeta/writers/codemeta_writer.rb +33 -0
  47. data/lib/commonmeta/writers/crossref_xml_writer.rb +11 -0
  48. data/lib/commonmeta/writers/csl_writer.rb +11 -0
  49. data/lib/commonmeta/writers/csv_writer.rb +26 -0
  50. data/lib/commonmeta/writers/datacite_writer.rb +94 -0
  51. data/lib/commonmeta/writers/jats_writer.rb +138 -0
  52. data/lib/commonmeta/writers/rdf_xml_writer.rb +11 -0
  53. data/lib/commonmeta/writers/ris_writer.rb +41 -0
  54. data/lib/commonmeta/writers/schema_org_writer.rb +61 -0
  55. data/lib/commonmeta/writers/turtle_writer.rb +11 -0
  56. data/lib/commonmeta/xml_converter.rb +14 -0
  57. data/lib/commonmeta.rb +35 -0
  58. data/resources/2008/09/xsd.xsl +997 -0
  59. data/resources/cff.json +1827 -0
  60. data/resources/commonmeta_v0.9.json +393 -0
  61. data/resources/crossref/AccessIndicators.xsd +47 -0
  62. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd +10130 -0
  63. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd +48 -0
  64. data/resources/crossref/JATS-journalpublishing1-elements.xsd +8705 -0
  65. data/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd +8608 -0
  66. data/resources/crossref/JATS-journalpublishing1-mathml3.xsd +49 -0
  67. data/resources/crossref/JATS-journalpublishing1.xsd +6176 -0
  68. data/resources/crossref/clinicaltrials.xsd +61 -0
  69. data/resources/crossref/common5.3.1.xsd +1530 -0
  70. data/resources/crossref/crossref5.3.1.xsd +1949 -0
  71. data/resources/crossref/crossref_query_output3.0.xsd +1097 -0
  72. data/resources/crossref/fundref.xsd +49 -0
  73. data/resources/crossref/module-ali.xsd +39 -0
  74. data/resources/crossref/relations.xsd +444 -0
  75. data/resources/datacite-contributorType-v4.xsd +35 -0
  76. data/resources/datacite-dateType-v4.xsd +25 -0
  77. data/resources/datacite-descriptionType-v4.xsd +19 -0
  78. data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
  79. data/resources/datacite-nameType-v4.xsd +10 -0
  80. data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
  81. data/resources/datacite-relationType-v4.xsd +49 -0
  82. data/resources/datacite-resourceType-v4.xsd +28 -0
  83. data/resources/datacite-titleType-v4.xsd +14 -0
  84. data/resources/datacite-v3.json +508 -0
  85. data/resources/datacite-v4.json +512 -0
  86. data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
  87. data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
  88. data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
  89. data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
  90. data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
  91. data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
  92. data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
  93. data/resources/kernel-3.0/include/xml.xsd +286 -0
  94. data/resources/kernel-3.0/metadata.xsd +377 -0
  95. data/resources/kernel-4/include/datacite-contributorType-v4.xsd +35 -0
  96. data/resources/kernel-4/include/datacite-dateType-v4.xsd +25 -0
  97. data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
  98. data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  99. data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
  100. data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
  101. data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  102. data/resources/kernel-4/include/datacite-relationType-v4.xsd +51 -0
  103. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +43 -0
  104. data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
  105. data/resources/kernel-4/include/xml.xsd +286 -0
  106. data/resources/kernel-4/metadata.xsd +707 -0
  107. data/resources/oecd/dfg-mappings.json +1866 -0
  108. data/resources/oecd/for-mappings.json +1099 -0
  109. data/resources/oecd/fos-mappings.json +198 -0
  110. data/resources/schema_org/jsonldcontext.json +7477 -0
  111. data/resources/spdx/licenses.json +5297 -0
  112. data/resources/xml.xsd +286 -0
  113. data/rubocop.sarif +0 -0
  114. data/sonar-project.properties +11 -0
  115. data/spec/array_spec.rb +22 -0
  116. data/spec/author_utils_spec.rb +132 -0
  117. data/spec/cli_spec.rb +309 -0
  118. data/spec/doi_utils_spec.rb +318 -0
  119. data/spec/find_from_format_spec.rb +144 -0
  120. data/spec/fixtures/CITATION.cff +83 -0
  121. data/spec/fixtures/aida.json +82 -0
  122. data/spec/fixtures/cgimp_package.json +18 -0
  123. data/spec/fixtures/cit_package.json +19 -0
  124. data/spec/fixtures/citeproc-no-author.json +26 -0
  125. data/spec/fixtures/citeproc-no-categories.json +21 -0
  126. data/spec/fixtures/citeproc.json +30 -0
  127. data/spec/fixtures/codemeta.json +86 -0
  128. data/spec/fixtures/codemeta_v2.json +86 -0
  129. data/spec/fixtures/crosscite.json +63 -0
  130. data/spec/fixtures/crossref.bib +14 -0
  131. data/spec/fixtures/crossref.json +572 -0
  132. data/spec/fixtures/crossref.ris +15 -0
  133. data/spec/fixtures/crossref.xml +606 -0
  134. data/spec/fixtures/datacite.json +86 -0
  135. data/spec/fixtures/datacite_software.json +21 -0
  136. data/spec/fixtures/datacite_software_missing_comma.json +18 -0
  137. data/spec/fixtures/datacite_software_overlapping_keys.json +18 -0
  138. data/spec/fixtures/datacite_software_version.json +74 -0
  139. data/spec/fixtures/edam_package.json +12 -0
  140. data/spec/fixtures/maremma/codemeta.json +36 -0
  141. data/spec/fixtures/pure.bib +14 -0
  142. data/spec/fixtures/pure.ris +15 -0
  143. data/spec/fixtures/pure.xml +188 -0
  144. data/spec/fixtures/ris_bug.ris +9 -0
  145. data/spec/fixtures/schema_4.0.xml +140 -0
  146. data/spec/fixtures/schema_org.json +49 -0
  147. data/spec/fixtures/schema_org_front-matter.json +32 -0
  148. data/spec/fixtures/schema_org_geolocation.json +82 -0
  149. data/spec/fixtures/schema_org_geoshape.json +550 -0
  150. data/spec/fixtures/schema_org_gtex.json +75 -0
  151. data/spec/fixtures/schema_org_list.json +12623 -0
  152. data/spec/fixtures/schema_org_tdl_iodp_invalid_authors.json +25 -0
  153. data/spec/fixtures/schema_org_topmed.json +53 -0
  154. data/spec/fixtures/schema_org_type_as_array.json +41 -0
  155. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/default.yml +110 -0
  156. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_bibtex.yml +110 -0
  157. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
  158. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_datacite.yml +110 -0
  159. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_schema_org.yml +110 -0
  160. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/default.yml +55 -0
  161. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
  162. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
  163. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
  164. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
  165. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/default.yml +299 -0
  166. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
  167. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_citation.yml +299 -0
  168. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
  169. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
  170. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_jats.yml +299 -0
  171. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
  172. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/default.yml +172 -0
  173. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
  174. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_citation.yml +172 -0
  175. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
  176. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_jats.yml +172 -0
  177. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
  178. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/default.yml +1098 -0
  179. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_datacite.yml +1098 -0
  180. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_schema_org.yml +1100 -0
  181. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/crossref.yml +55 -0
  182. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/datacite.yml +55 -0
  183. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/jalc.yml +55 -0
  184. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/kisti.yml +55 -0
  185. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/medra.yml +55 -0
  186. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/op.yml +55 -0
  187. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/author.yml +164 -0
  188. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/no_author.yml +164 -0
  189. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/single_author.yml +164 -0
  190. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/with_organization.yml +164 -0
  191. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
  192. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/crossref.yml +55 -0
  193. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/datacite.yml +55 -0
  194. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/jalc.yml +55 -0
  195. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/kisti.yml +55 -0
  196. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/medra.yml +55 -0
  197. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/not_found.yml +55 -0
  198. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/op.yml +55 -0
  199. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref.yml +55 -0
  200. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
  201. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite.yml +55 -0
  202. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
  203. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
  204. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
  205. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
  206. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_match.yml +221 -0
  207. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
  208. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_for_match.yml +221 -0
  209. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_match.yml +221 -0
  210. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_no_match.yml +221 -0
  211. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org/with_id.yml +221 -0
  212. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/with_affiliation.yml +221 -0
  213. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/without_affiliation.yml +221 -0
  214. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
  215. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
  216. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
  217. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/maremma.yml +86 -0
  218. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
  219. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
  220. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
  221. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +359 -0
  222. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/JaLC.yml +384 -0
  223. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/KISTI.yml +330 -0
  224. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/OP.yml +969 -0
  225. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
  226. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book.yml +312 -0
  227. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
  228. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
  229. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/author_literal.yml +492 -0
  230. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book.yml +523 -0
  231. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
  232. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
  233. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_oup.yml +289 -0
  234. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/component.yml +289 -0
  235. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset.yml +299 -0
  236. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
  237. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
  238. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dissertation.yml +301 -0
  239. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
  240. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
  241. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article.yml +461 -0
  242. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
  243. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with.yml +470 -0
  244. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
  245. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
  246. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
  247. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
  248. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/markup.yml +329 -0
  249. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
  250. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
  251. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
  252. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
  253. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
  254. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/peer_review.yml +287 -0
  255. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content.yml +326 -0
  256. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
  257. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/report_osti.yml +315 -0
  258. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
  259. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
  260. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
  261. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_raw/journal_article.yml +110 -0
  262. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/dissertation.yml +152 -0
  263. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/funding_references.yml +175 -0
  264. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
  265. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date/publication_date.yml +221 -0
  266. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/date.yml +221 -0
  267. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year-month.yml +221 -0
  268. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year.yml +221 -0
  269. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/date.yml +221 -0
  270. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year-month.yml +221 -0
  271. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year.yml +221 -0
  272. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/date.yml +221 -0
  273. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year-month.yml +221 -0
  274. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year.yml +221 -0
  275. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/future.yml +221 -0
  276. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/invalid.yml +221 -0
  277. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/nil.yml +221 -0
  278. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/past.yml +221 -0
  279. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/present.yml +221 -0
  280. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_familyName.yml +133 -0
  281. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
  282. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/is_organization.yml +164 -0
  283. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
  284. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/only_familyName_and_givenName.yml +468 -0
  285. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
  286. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
  287. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
  288. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
  289. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/pangaea.yml +468 -0
  290. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
  291. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
  292. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/only_title.yml +221 -0
  293. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_and_pages.yml +221 -0
  294. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
  295. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
  296. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_cff_url.yml +221 -0
  297. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_codemeta_url.yml +221 -0
  298. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url.yml +221 -0
  299. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_cff_file.yml +221 -0
  300. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_file.yml +221 -0
  301. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
  302. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
  303. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_comma.yml +164 -0
  304. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_family_name.yml +164 -0
  305. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_id.yml +164 -0
  306. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_known_given_name.yml +164 -0
  307. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_no_info.yml +164 -0
  308. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_orcid_id.yml +164 -0
  309. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_type_organization.yml +164 -0
  310. data/spec/fixtures/vcr_cassettes/Briard_Metadata/json_schema_errors/is_valid.yml +221 -0
  311. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/not_found.yml +221 -0
  312. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
  313. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
  314. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi.yml +221 -0
  315. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi_as_url.yml +221 -0
  316. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/filename.yml +221 -0
  317. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/ftp.yml +221 -0
  318. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/invalid_url.yml +221 -0
  319. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_options.yml +221 -0
  320. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_url.yml +221 -0
  321. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/string.yml +221 -0
  322. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url.yml +221 -0
  323. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url_with_utf-8.yml +221 -0
  324. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/doi.yml +221 -0
  325. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/url.yml +221 -0
  326. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_array.yml +221 -0
  327. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_empty_array.yml +221 -0
  328. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_hash.yml +221 -0
  329. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_string.yml +221 -0
  330. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/uri.yml +221 -0
  331. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash.yml +221 -0
  332. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
  333. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array.yml +221 -0
  334. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array_of_strings.yml +221 -0
  335. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/first.yml +221 -0
  336. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash.yml +221 -0
  337. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
  338. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/nil.yml +221 -0
  339. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/string.yml +221 -0
  340. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_anothe_doi.yml +221 -0
  341. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_doi.yml +221 -0
  342. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/encode_doi.yml +221 -0
  343. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
  344. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/removes_a_tags.yml +221 -0
  345. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
  346. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
  347. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
  348. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_exists.yml +221 -0
  349. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_id.yml +221 -0
  350. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org/with_id.yml +221 -0
  351. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
  352. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid.yml +221 -0
  353. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
  354. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
  355. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
  356. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
  357. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
  358. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
  359. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
  360. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
  361. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
  362. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
  363. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
  364. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/DOI.yml +221 -0
  365. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/ISSN.yml +221 -0
  366. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/URL.yml +221 -0
  367. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/string.yml +221 -0
  368. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
  369. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
  370. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
  371. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
  372. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
  373. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
  374. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
  375. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/text.yml +100 -0
  376. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
  377. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
  378. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
  379. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
  380. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
  381. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
  382. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
  383. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
  384. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
  385. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
  386. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
  387. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
  388. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
  389. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
  390. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
  391. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
  392. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
  393. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
  394. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
  395. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
  396. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
  397. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
  398. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
  399. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
  400. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
  401. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/container_title.yml +153 -0
  402. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
  403. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
  404. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
  405. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/maremma.yml +86 -0
  406. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
  407. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
  408. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
  409. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software.yml +90 -0
  410. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
  411. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
  412. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
  413. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
  414. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/maremma.yml +86 -0
  415. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/text.yml +100 -0
  416. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
  417. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
  418. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
  419. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
  420. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
  421. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
  422. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/from_schema_org.yml +530 -0
  423. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/maremma.yml +86 -0
  424. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_ORCID_ID.yml +228 -0
  425. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_data_citation.yml +247 -0
  426. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
  427. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
  428. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
  429. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
  430. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
  431. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
  432. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
  433. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
  434. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
  435. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
  436. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
  437. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
  438. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
  439. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
  440. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
  441. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
  442. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
  443. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
  444. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
  445. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
  446. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/maremma.yml +86 -0
  447. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
  448. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
  449. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
  450. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
  451. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
  452. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
  453. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
  454. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
  455. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
  456. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
  457. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
  458. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
  459. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
  460. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
  461. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
  462. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
  463. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
  464. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
  465. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
  466. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
  467. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
  468. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/default.yml +110 -0
  469. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_bibtex.yml +110 -0
  470. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
  471. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_datacite.yml +110 -0
  472. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_schema_org.yml +110 -0
  473. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/default.yml +55 -0
  474. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
  475. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
  476. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
  477. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
  478. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/default.yml +299 -0
  479. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
  480. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_citation.yml +299 -0
  481. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
  482. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
  483. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_jats.yml +299 -0
  484. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
  485. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/default.yml +172 -0
  486. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
  487. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_citation.yml +172 -0
  488. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
  489. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_jats.yml +172 -0
  490. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
  491. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/default.yml +1096 -0
  492. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_datacite.yml +1096 -0
  493. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_schema_org.yml +1098 -0
  494. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/crossref.yml +55 -0
  495. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/datacite.yml +55 -0
  496. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/jalc.yml +55 -0
  497. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/kisti.yml +55 -0
  498. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/medra.yml +55 -0
  499. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/op.yml +55 -0
  500. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
  501. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/crossref.yml +55 -0
  502. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/datacite.yml +55 -0
  503. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/jalc.yml +55 -0
  504. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/kisti.yml +55 -0
  505. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/medra.yml +55 -0
  506. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/not_found.yml +55 -0
  507. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/op.yml +55 -0
  508. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref.yml +55 -0
  509. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
  510. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite.yml +55 -0
  511. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
  512. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
  513. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
  514. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
  515. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_match.yml +221 -0
  516. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
  517. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_for_match.yml +221 -0
  518. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_match.yml +221 -0
  519. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_no_match.yml +221 -0
  520. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/from_schema_org/with_id.yml +221 -0
  521. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
  522. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
  523. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
  524. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/maremma.yml +86 -0
  525. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
  526. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
  527. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
  528. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +170 -0
  529. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/JaLC.yml +384 -0
  530. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/KISTI.yml +330 -0
  531. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/OP.yml +969 -0
  532. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
  533. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book.yml +312 -0
  534. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
  535. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
  536. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/author_literal.yml +492 -0
  537. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book.yml +523 -0
  538. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
  539. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
  540. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_oup.yml +289 -0
  541. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/component.yml +289 -0
  542. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset.yml +300 -0
  543. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
  544. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
  545. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dissertation.yml +301 -0
  546. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
  547. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
  548. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article.yml +461 -0
  549. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
  550. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with.yml +908 -0
  551. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
  552. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
  553. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
  554. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
  555. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/markup.yml +329 -0
  556. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
  557. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
  558. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
  559. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
  560. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
  561. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/peer_review.yml +287 -0
  562. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content.yml +326 -0
  563. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
  564. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/report_osti.yml +315 -0
  565. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
  566. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
  567. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
  568. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_raw/journal_article.yml +110 -0
  569. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/dissertation.yml +152 -0
  570. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/funding_references.yml +175 -0
  571. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
  572. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date/publication_date.yml +221 -0
  573. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/date.yml +221 -0
  574. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year-month.yml +221 -0
  575. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year.yml +221 -0
  576. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/date.yml +221 -0
  577. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year-month.yml +221 -0
  578. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year.yml +221 -0
  579. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/date.yml +221 -0
  580. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year-month.yml +221 -0
  581. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year.yml +221 -0
  582. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/future.yml +221 -0
  583. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/invalid.yml +221 -0
  584. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/nil.yml +221 -0
  585. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/past.yml +221 -0
  586. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/present.yml +221 -0
  587. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_familyName.yml +133 -0
  588. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
  589. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
  590. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/only_familyName_and_givenName.yml +467 -0
  591. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
  592. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
  593. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
  594. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
  595. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/pangaea.yml +467 -0
  596. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
  597. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
  598. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/only_title.yml +221 -0
  599. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_and_pages.yml +221 -0
  600. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
  601. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
  602. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_cff_url.yml +221 -0
  603. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_codemeta_url.yml +221 -0
  604. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url.yml +221 -0
  605. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_cff_file.yml +221 -0
  606. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_file.yml +221 -0
  607. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
  608. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
  609. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/json_schema_errors/is_valid.yml +221 -0
  610. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/not_found.yml +221 -0
  611. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
  612. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
  613. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi.yml +221 -0
  614. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi_as_url.yml +221 -0
  615. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/filename.yml +221 -0
  616. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/ftp.yml +221 -0
  617. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/invalid_url.yml +221 -0
  618. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_options.yml +221 -0
  619. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_url.yml +221 -0
  620. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/string.yml +221 -0
  621. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url.yml +221 -0
  622. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url_with_utf-8.yml +221 -0
  623. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_array.yml +221 -0
  624. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_empty_array.yml +221 -0
  625. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_hash.yml +221 -0
  626. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_string.yml +221 -0
  627. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/uri.yml +221 -0
  628. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash.yml +221 -0
  629. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
  630. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array.yml +221 -0
  631. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array_of_strings.yml +221 -0
  632. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/first.yml +221 -0
  633. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash.yml +221 -0
  634. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
  635. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/nil.yml +221 -0
  636. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/string.yml +221 -0
  637. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_anothe_doi.yml +221 -0
  638. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_doi.yml +221 -0
  639. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/encode_doi.yml +221 -0
  640. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
  641. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/removes_a_tags.yml +221 -0
  642. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
  643. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
  644. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
  645. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_exists.yml +221 -0
  646. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_id.yml +221 -0
  647. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org/with_id.yml +221 -0
  648. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
  649. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid.yml +221 -0
  650. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
  651. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
  652. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
  653. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
  654. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
  655. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
  656. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
  657. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
  658. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
  659. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
  660. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
  661. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/DOI.yml +221 -0
  662. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/ISSN.yml +221 -0
  663. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/URL.yml +221 -0
  664. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/string.yml +221 -0
  665. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
  666. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
  667. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
  668. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
  669. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
  670. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
  671. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
  672. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/text.yml +100 -0
  673. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
  674. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
  675. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
  676. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
  677. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
  678. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
  679. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
  680. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
  681. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
  682. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
  683. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
  684. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
  685. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
  686. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
  687. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
  688. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
  689. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
  690. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
  691. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
  692. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
  693. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
  694. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
  695. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
  696. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
  697. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
  698. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/container_title.yml +153 -0
  699. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
  700. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
  701. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
  702. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/maremma.yml +86 -0
  703. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
  704. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
  705. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
  706. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software.yml +90 -0
  707. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
  708. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
  709. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
  710. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
  711. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/maremma.yml +86 -0
  712. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/text.yml +100 -0
  713. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
  714. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
  715. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/dissertation.yml +218 -0
  716. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
  717. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/journal_article.yml +407 -0
  718. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
  719. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
  720. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
  721. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
  722. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
  723. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
  724. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
  725. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
  726. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
  727. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
  728. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
  729. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
  730. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
  731. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
  732. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
  733. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
  734. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
  735. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
  736. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
  737. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
  738. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
  739. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
  740. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
  741. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/maremma.yml +86 -0
  742. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
  743. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
  744. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
  745. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
  746. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
  747. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
  748. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
  749. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
  750. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
  751. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
  752. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
  753. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
  754. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
  755. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
  756. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
  757. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
  758. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
  759. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
  760. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
  761. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
  762. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
  763. data/spec/fixtures/vivli.xml +17 -0
  764. data/spec/metadata_spec.rb +147 -0
  765. data/spec/readers/bibtex_reader_spec.rb +58 -0
  766. data/spec/readers/cff_reader_spec.rb +148 -0
  767. data/spec/readers/codemeta_reader_spec.rb +116 -0
  768. data/spec/readers/crossref_reader_spec.rb +919 -0
  769. data/spec/readers/crossref_xml_reader_spec.rb +948 -0
  770. data/spec/readers/csl_reader_spec.rb +61 -0
  771. data/spec/readers/datacite_reader_spec.rb +156 -0
  772. data/spec/readers/npm_reader_spec.rb +69 -0
  773. data/spec/readers/ris_reader_spec.rb +70 -0
  774. data/spec/readers/schema_org_reader_spec.rb +416 -0
  775. data/spec/schema_utils_spec.rb +16 -0
  776. data/spec/spec_helper.rb +96 -0
  777. data/spec/utils_spec.rb +631 -0
  778. data/spec/writers/bibtex_writer_spec.rb +160 -0
  779. data/spec/writers/cff_writer_spec.rb +118 -0
  780. data/spec/writers/citation_writer_spec.rb +51 -0
  781. data/spec/writers/codemeta_writer_spec.rb +47 -0
  782. data/spec/writers/crossref_xml_writer_spec.rb +173 -0
  783. data/spec/writers/csl_writer_spec.rb +291 -0
  784. data/spec/writers/csv_writer_spec.rb +82 -0
  785. data/spec/writers/datacite_writer_spec.rb +150 -0
  786. data/spec/writers/jats_writer_spec.rb +210 -0
  787. data/spec/writers/rdf_xml_writer_spec.rb +91 -0
  788. data/spec/writers/ris_writer_spec.rb +206 -0
  789. data/spec/writers/schema_org_writer_spec.rb +301 -0
  790. data/spec/writers/turtle_writer_spec.rb +85 -0
  791. metadata +1514 -0
@@ -0,0 +1,1838 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO
6
+ body:
7
+ encoding: UTF-8
8
+ string: ''
9
+ headers:
10
+ Connection:
11
+ - close
12
+ Host:
13
+ - dataverse.harvard.edu
14
+ User-Agent:
15
+ - http.rb/5.1.1
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Date:
22
+ - Tue, 14 Mar 2023 11:45:48 GMT
23
+ Content-Type:
24
+ - text/html;charset=UTF-8
25
+ Transfer-Encoding:
26
+ - chunked
27
+ Connection:
28
+ - close
29
+ Set-Cookie:
30
+ - AWSALB=pa0zNKKFkZe83zH4yAbsNFPQmX81DVSWMuEqoOfwO+ruKE7XX4b9RcswVQZyiY5vWYpgQL41agE82j6OyESsGSxMRizpWuo12VPNf42ewuUTwHm8GYkV/uP0rQeQ;
31
+ Expires=Tue, 21 Mar 2023 11:45:47 GMT; Path=/
32
+ - AWSALBCORS=pa0zNKKFkZe83zH4yAbsNFPQmX81DVSWMuEqoOfwO+ruKE7XX4b9RcswVQZyiY5vWYpgQL41agE82j6OyESsGSxMRizpWuo12VPNf42ewuUTwHm8GYkV/uP0rQeQ;
33
+ Expires=Tue, 21 Mar 2023 11:45:47 GMT; Path=/; SameSite=None; Secure
34
+ - JSESSIONID=ff0d48dfcc720cb3f91fd57ab360; Path=/; Secure; HttpOnly
35
+ Server:
36
+ - Apache
37
+ Content-Security-Policy:
38
+ - frame-ancestors 'none'
39
+ body:
40
+ encoding: UTF-8
41
+ string: "<?xml version='1.0' encoding='UTF-8' ?>\n<!DOCTYPE html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\"
42
+ lang=\"en\" xml:lang=\"en\"><head id=\"j_idt19\"><!-- Global site tag (gtag.js)
43
+ - Google Analytics -->\n<script async=\"async\" src=\"https://www.googletagmanager.com/gtag/js?id=UA-61753334-1\"></script>\n<script>\n
44
+ \ //<![CDATA[\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n
45
+ \ gtag('js', new Date()); gtag('config', 'UA-61753334-1');\n\n window.addEventListener(\"load\",
46
+ enableAnalyticsEventCapture, false);\n\n function enableAnalyticsEventCapture()
47
+ {\n // Download button\n $(document).on(\"click\", \".btn-download,
48
+ .btn-download.dropdown-toggle + ul.dropdown-menu li a\", function() {\n var
49
+ category = stripSize($(this).text());\n var label = getFileId($(this));\n
50
+ \ gtag('event', 'Download',{'event_category' : category,\n 'event_label'
51
+ : label});\n });\n\n // Request Access button\n $(document).on(\"click\",
52
+ \".btn-request\", function() {\n var category = $(this).text();\n var
53
+ label = getFileId($(this));\n gtag('event', 'Request Access', {'event_category'
54
+ : category,\n 'event_label' : label});\n
55
+ \ });\n\n // Explore button\n $(document).on(\"click\", \".btn-explore,
56
+ .btn-explore.dropdown-toggle + ul.dropdown-menu li a\", function() {\n var
57
+ category = $(this).text();\n var label = getFileId($(this));\n gtag('event',
58
+ 'Explore', {'event_category' : category,\n 'event_label'
59
+ : label});\n });\n\n // Compute button\n $(document).on(\"click\",
60
+ \".btn-compute, .btn-compute.dropdown-toggle + ul.dropdown-menu li a\", function()
61
+ {\n var category = $(this).text();\n var label = getFileId($(this));\n
62
+ \ gtag('event', 'Compute', {'event_category' : category,\n 'event_label'
63
+ : label});\n });\n\n // Preview button\n $(document).on(\"click\",
64
+ \".btn-preview, .btn-preview.dropdown-toggle + ul.dropdown-menu li a\", function()
65
+ {\n var category = $(this).text();\n var label = getFileId($(this));\n
66
+ \ gtag('event', 'Preview', {'event_category' : category,\n 'event_label'
67
+ : label});\n });\n\n // Cite button\n $(document).on(\"click\", \".downloadCitation
68
+ + ul.dropdown-menu li a\", function() {\n var category = $(this).text();\n
69
+ \ var label = 'Unknown';\n if($('#fileForm').length > 0) {\n label
70
+ = stripId($('#fileForm').attr('action'));\n } else if($('#datasetForm').length
71
+ > 0) {\n label = stripId($('#datasetForm').attr('action'));\n }\n
72
+ \ gtag('event', 'Download Citation', {'event_category' : category,\n 'event_label'
73
+ : label});\n });\n\n // Export Metadata button\n $(document).on(\"click\",
74
+ \".btn-export + ul.dropdown-menu li a\", function() {\n var category
75
+ = $(this).text();\n var label = 'Unknown';\n if($('#fileForm').length
76
+ > 0) {\n label = stripId($('#fileForm').attr('action'));\n } else
77
+ if($('#datasetForm').length > 0) {\n label = stripId($('#datasetForm').attr('action'));\n
78
+ \ }\n gtag('event', 'Export Metadata', {'event_category' : category,\n
79
+ \ 'event_label' : label});\n });\n\n
80
+ \ // Contact button\n $(document).on(\"click\", \".btn-contact\", function()
81
+ {\n var category = $(this).text();\n var label = 'Unknown';\n if($('#fileForm').length
82
+ > 0) {\n label = stripId($('#fileForm').attr('action'));\n } else
83
+ if($('#datasetForm').length > 0) {\n label = stripId($('#datasetForm').attr('action'));\n
84
+ \ } else if($('#dataverseForm').length > 0) {\n label = stripAlias($('#dataverseForm').attr('action'));\n
85
+ \ }\n gtag('event', 'Contact', {'event_category' : category,\n 'event_label'
86
+ : label});\n });\n\n // Share button\n $(document).on(\"click\",
87
+ 'div[id$=\"shareDialog\"] a[class^=\"sharrre\"]', function() {\n var
88
+ sharrreVal = $(this).attr('class');\n var category = sharrreVal.substring(sharrreVal.indexOf('-')
89
+ + 1) ;\n var label = 'Unknown';\n if($('#fileForm').length > 0)
90
+ {\n label = stripId($('#fileForm').attr('action'));\n } else if($('#datasetForm').length
91
+ > 0) {\n label = stripId($('#datasetForm').attr('action'));\n }
92
+ else if($('#dataverseForm').length > 0) {\n label = stripAlias($('#dataverseForm').attr('action'));\n
93
+ \ }\n gtag('event', 'Share', {'event_category' : category,\n 'event_label'
94
+ : label});\n });\n\n }\n\n function getFileId(target) {\n var label
95
+ = 'Unknown';\n if(target.parents('th, #actionButtonBlock .btn-access-dataset
96
+ + ul.dropdown-menu').length>0) {\n //Special case - the Download button
97
+ that downloads all selected files in the dataset\n label = 'file(s) from
98
+ ' + stripId($('#datasetForm').attr('action'));\n } else {\n var row
99
+ = target.parents('tr')[0];\n if(row != null) {\n //finds the file
100
+ id/DOI in the Dataset page\n label = $(row).find('td.col-file-metadata
101
+ \ a').attr('href');\n } else {\n //finds the file id/DOI in the
102
+ file page\n label = $('#fileForm').attr('action');\n }\n label
103
+ = stripId(label);\n }\n return label;\n }\n\n\n function stripId(label)
104
+ {\n var index = label.indexOf('&');\n if(index == -1) index = label.length;\n
105
+ \ if(label.indexOf('persistentId=') >= 0) {\n label = label.substring(label.indexOf('persistentId=')
106
+ + 13, index);\n }\n if(label.indexOf('fileId=') >= 0) {\n label
107
+ = label.substring(label.indexOf('fileId=') + 7, index);\n }\n return(label);\n
108
+ \ }\n\n function stripAlias(label) {\n var index = label.length;\n label
109
+ = label.substring(label.indexOf('/dataverse/') + 11, index).split(/[?#]/)[0];\n
110
+ \ return(label);\n }\n\n function stripSize(category) {\n var index
111
+ = category.indexOf('ZIP (');\n if(index >= 0) {\n category = category.substring(0,
112
+ index + 3);\n }\n return(category);\n }\n //]]>\n</script>\n\n <title>Summary
113
+ data ankylosing spondylitis GWAS - Harvard Dataverse</title>\n\t <meta
114
+ http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n <meta
115
+ name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n <meta
116
+ http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n <meta
117
+ name=\"description\" content=\"Summary of association tests for Nature Genetics
118
+ publication &quot;Identification of multiple risk variants for ankylosing
119
+ spondylitis through high-density genotyping of immune-related loci&quot;.\"
120
+ />\n <meta name=\"DC.identifier\" content=\"doi:10.7910/DVN/NJ7XSO\"
121
+ />\n <meta name=\"DC.type\" content=\"Dataset\" />\n <meta
122
+ name=\"DC.title\" content=\"Summary data ankylosing spondylitis GWAS\" />\n
123
+ \ <meta name=\"DC.date\" content=\"2017-09-30\" />\n <meta
124
+ name=\"DC.publisher\" content=\"Harvard Dataverse\" />\n <meta
125
+ name=\"DC.description\" content=\"Summary of association tests for Nature
126
+ Genetics publication &quot;Identification of multiple risk variants for ankylosing
127
+ spondylitis through high-density genotyping of immune-related loci&quot;.\"
128
+ />\n <meta name=\"DC.creator\" content=\"International
129
+ Genetics of Ankylosing Spondylitis Consortium (IGAS)\" />\n <meta
130
+ name=\"DC.subject\" content=\"Medicine, Health and Life Sciences\" />\n <meta
131
+ property=\"og:title\" content=\"Summary data ankylosing spondylitis GWAS\"
132
+ />\n <meta property=\"og:type\" content=\"article\" />\n
133
+ \ <meta property=\"og:url\" content=\"https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO\"
134
+ />\n <meta property=\"og:image\" content=\"https://dataverse.harvard.edu/javax.faces.resource/images/dataverse-icon-1200.png.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
135
+ />\n <meta property=\"og:site_name\" content=\"Harvard
136
+ Dataverse\" />\n <meta property=\"og:description\" content=\"Summary
137
+ of association tests for Nature Genetics publication &quot;Identification
138
+ of multiple risk variants for ankylosing spondylitis through high-dens...\"
139
+ />\n <meta property=\"article:author\" content=\"International
140
+ Genetics of Ankylosing Spondylitis Consortium (IGAS)\" />\n <meta
141
+ property=\"article:published_time\" content=\"2017-09-30\" />\n <script
142
+ type=\"application/ld+json\">{\"@context\":\"http://schema.org\",\"@type\":\"Dataset\",\"@id\":\"https://doi.org/10.7910/DVN/NJ7XSO\",\"identifier\":\"https://doi.org/10.7910/DVN/NJ7XSO\",\"name\":\"Summary
143
+ data ankylosing spondylitis GWAS\",\"creator\":[{\"name\":\"International
144
+ Genetics of Ankylosing Spondylitis Consortium (IGAS)\"}],\"author\":[{\"name\":\"International
145
+ Genetics of Ankylosing Spondylitis Consortium (IGAS)\"}],\"datePublished\":\"2017-09-30\",\"dateModified\":\"2017-09-30\",\"version\":\"1\",\"description\":[\"Summary
146
+ of association tests for Nature Genetics publication \\\"Identification of
147
+ multiple risk variants for ankylosing spondylitis through high-density genotyping
148
+ of immune-related loci\\\".\"],\"keywords\":[\"Medicine, Health and Life Sciences\",\"
149
+ Genome-Wide Association Studies\",\"Ankylosing spondylitis\"],\"citation\":[{\"@type\":\"CreativeWork\",\"text\":\"10.1038/ng.2667\"}],\"license\":\"http://creativecommons.org/publicdomain/zero/1.0\",\"includedInDataCatalog\":{\"@type\":\"DataCatalog\",\"name\":\"Harvard
150
+ Dataverse\",\"url\":\"https://dataverse.harvard.edu\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"Harvard
151
+ Dataverse\"},\"provider\":{\"@type\":\"Organization\",\"name\":\"Harvard Dataverse\"},\"distribution\":[{\"@type\":\"DataDownload\",\"name\":\"Asian_Case_Control_Results.txt\",\"fileFormat\":\"text/plain\",\"contentSize\":11572412,\"description\":\"Summary
152
+ data for Asian cohort\",\"@id\":\"https://doi.org/10.7910/DVN/NJ7XSO/K3NRMO\",\"identifier\":\"https://doi.org/10.7910/DVN/NJ7XSO/K3NRMO\",\"contentUrl\":\"https://dataverse.harvard.edu/api/access/datafile/3055424\"},{\"@type\":\"DataDownload\",\"name\":\"European_Asian_Case_Control_Results.txt\",\"fileFormat\":\"text/plain\",\"contentSize\":11245496,\"description\":\"Summary
153
+ data for combined cohort\",\"@id\":\"https://doi.org/10.7910/DVN/NJ7XSO/HA2SVR\",\"identifier\":\"https://doi.org/10.7910/DVN/NJ7XSO/HA2SVR\",\"contentUrl\":\"https://dataverse.harvard.edu/api/access/datafile/3055425\"},{\"@type\":\"DataDownload\",\"name\":\"European_Case_Control_Results.txt\",\"fileFormat\":\"text/plain\",\"contentSize\":13337183,\"description\":\"Summary
154
+ data for European cohort\",\"@id\":\"https://doi.org/10.7910/DVN/NJ7XSO/IN45GZ\",\"identifier\":\"https://doi.org/10.7910/DVN/NJ7XSO/IN45GZ\",\"contentUrl\":\"https://dataverse.harvard.edu/api/access/datafile/3055426\"}]}\n\n
155
+ \ </script><link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/theme.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces-bootstrap&amp;v=11.0.0\"
156
+ /><link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/primeicons/primeicons.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"
157
+ /><script type=\"text/javascript\" src=\"/javax.faces.resource/omnifaces.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=omnifaces&amp;v=3.8\"></script><script
158
+ type=\"text/javascript\" src=\"/javax.faces.resource/jquery/jquery.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><script
159
+ type=\"text/javascript\" src=\"/javax.faces.resource/jquery/jquery-plugins.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><script
160
+ type=\"text/javascript\" src=\"/javax.faces.resource/core.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><script
161
+ type=\"text/javascript\" src=\"/javax.faces.resource/components.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><link
162
+ type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/components.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"
163
+ /><script type=\"text/javascript\" src=\"/javax.faces.resource/watermark/watermark.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><link
164
+ type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/fileupload/fileupload.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"
165
+ /><script type=\"text/javascript\" src=\"/javax.faces.resource/fileupload/fileupload.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><script
166
+ type=\"text/javascript\" src=\"/javax.faces.resource/touch/touchswipe.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><script
167
+ type=\"text/javascript\" src=\"/javax.faces.resource/inputmask/inputmask.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><script
168
+ type=\"text/javascript\" src=\"/javax.faces.resource/datepicker/datepicker.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=primefaces&amp;v=11.0.0\"></script><script
169
+ type=\"text/javascript\">if(window.PrimeFaces){PrimeFaces.settings.locale='en';PrimeFaces.settings.viewId='/dataset.xhtml';PrimeFaces.settings.contextPath='';PrimeFaces.settings.cookiesSecure=false;}</script>\n
170
+ \ <link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/javax.faces.resource/images/fav/apple-touch-icon.png.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
171
+ />\n <link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"/javax.faces.resource/images/fav/favicon-16x16.png.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
172
+ />\n <link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"/javax.faces.resource/images/fav/favicon-32x32.png.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
173
+ />\n <link rel=\"manifest\" href=\"/javax.faces.resource/images/fav/site.webmanifest.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
174
+ />\n <link rel=\"mask-icon\" href=\"/javax.faces.resource/images/fav/safari-pinned-tab.svg.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
175
+ color=\"#da532c\" />\n <meta name=\"msapplication-TileColor\" content=\"#da532c\"
176
+ />\n <meta name=\"theme-color\" content=\"#ffffff\" />\n <link
177
+ type=\"image/png\" rel=\"image_src\" href=\"/javax.faces.resource/images/dataverseproject.png.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
178
+ />\n <link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/bs/css/bootstrap.min.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"
179
+ />\n <link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/bs/css/bootstrap-theme.min.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"
180
+ />\n <link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/css/ie-compat.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"
181
+ />\n <link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/css/owl.carousel.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"
182
+ />\n <link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/css/fontcustom.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"
183
+ />\n <link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/css/socicon.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"
184
+ />\n <link type=\"text/css\" rel=\"stylesheet\" href=\"/javax.faces.resource/css/structure.css.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"
185
+ />\n <style>\n /* Custom CSS */\n #navbarFixed
186
+ div.navbar-header img.navbar-brand.custom-logo {height:50px !important;}\n#dataverseDesc
187
+ span > span > span > h3 {font-weight: 300 !important;}\n\nnav.navbar.navbar-default
188
+ {background: #ececec !important;}\n/* #footer {background: #ececec !important;
189
+ padding-top:1.25em;} */\n\n </style></head><body>\n\t<a href=\"#content\"
190
+ class=\"sr-only\">Skip to main content</a>\n\n <nav id=\"dataverse-header-block\"><div
191
+ id=\"navbarFixed\" class=\"navbar navbar-default navbar-fixed-top\">\n <div
192
+ class=\"container\">\n <div class=\"navbar-header\">\n <button
193
+ type=\"button\" class=\"navbar-toggle\" data-toggle=\"collapse\" data-target=\"#topNavBar\"
194
+ aria-pressed=\"false\">\n <span class=\"sr-only\">Toggle
195
+ navigation</span>\n <span class=\"icon-bar\"></span>\n
196
+ \ <span class=\"icon-bar\"></span>\n <span
197
+ class=\"icon-bar\"></span>\n </button>\n <a
198
+ href=\"/\"><img src=\"/logos/navbar/logo.png;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
199
+ alt=\"Harvard Dataverse homepage\" class=\"navbar-brand custom-logo\" />\n
200
+ \ </a>\n </div>\n <div class=\"collapse
201
+ navbar-collapse\" id=\"topNavBar\">\n <ul class=\"nav navbar-nav
202
+ navbar-right\"><li class=\"dropdown\">\n <a href=\"#\"
203
+ class=\"dropdown-toggle\" data-toggle=\"dropdown\">Add Data <b class=\"caret\"></b></a>\n
204
+ \ <ul class=\"dropdown-menu\"><li><a href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ownerId=1\">New
205
+ Dataset</a></li>\n </ul></li>\n <li
206
+ class=\"dropdown\">\n <a href=\"#\" class=\"dropdown-toggle\"
207
+ data-toggle=\"dropdown\">Search <b class=\"caret\"></b></a>\n <ul
208
+ class=\"dropdown-menu navbar-search\">\n <li>\n
209
+ \ <form class=\"form-inline\" role=\"search\">\n
210
+ \ <label id=\"searchNavLabel\" class=\"sr-only\"
211
+ for=\"navbarsearch\">Search</label>\n <div
212
+ class=\"input-group\">\n <input
213
+ id=\"navbarsearch\" type=\"text\" class=\"form-control\" size=\"28\" value=\"\"
214
+ placeholder=\"Search all dataverses...\" />\n <span
215
+ class=\"input-group-btn\">\n <button
216
+ type=\"submit\" title=\"Find\" class=\"btn btn-default bootstrap-button-tooltip\"
217
+ aria-labelledby=\"searchNavLabel\" onclick=\"window.location='/dataverse/harvard?q='
218
+ + document.getElementById('navbarsearch').value;return false;\">\n <span
219
+ class=\"glyphicon glyphicon-search no-text\"></span>\n </button>\n
220
+ \ </span>\n </div>\n
221
+ \ </form>\n </li>\n
222
+ \ </ul>\n </li><li><a href=\"https://support.dataverse.harvard.edu/\"
223
+ rel=\"noopener\" target=\"_blank\">About</a></li>\n <li><a
224
+ href=\"https://guides.dataverse.org/en/5.13/user\" rel=\"noopener\" target=\"_blank\">User
225
+ Guide</a>\n </li>\n <li>\n<form
226
+ id=\"j_idt78\" name=\"j_idt78\" method=\"post\" action=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO\"
227
+ class=\"navbar-form navbar-left navbar-form-link\" enctype=\"application/x-www-form-urlencoded\"
228
+ data-partialsubmit=\"true\">\n<input type=\"hidden\" name=\"j_idt78\" value=\"j_idt78\"
229
+ />\n<a id=\"j_idt78:headerSupportLink\" href=\"#\" class=\"ui-commandlink
230
+ ui-widget\" onclick=\"PrimeFaces.ab({s:&quot;j_idt78:headerSupportLink&quot;,f:&quot;j_idt78&quot;,u:&quot;contactDialog&quot;,onco:function(xhr,status,args,data){PF('contactForm').show();}});return
231
+ false;\">Support</a><input type=\"hidden\" name=\"javax.faces.ViewState\"
232
+ id=\"j_id1:javax.faces.ViewState:0\" value=\"8430983003554814109:-1483913141546431451\"
233
+ autocomplete=\"off\" />\n</form>\n </li>\n <li><a
234
+ href=\"/dataverseuser.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?editMode=CREATE&amp;redirectPage=%2Fdataset.xhtml%3FpersistentId%3Ddoi%3A10.7910%2FDVN%2FNJ7XSO\">\n
235
+ \ Sign Up\n </a>\n
236
+ \ </li>\n <li><a href=\"/loginpage.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?redirectPage=%2Fdataset.xhtml%3FpersistentId%3Ddoi%3A10.7910%2FDVN%2FNJ7XSO\">\n
237
+ \ Log In\n </a>\n
238
+ \ </li>\n </ul>\n </div>\n
239
+ \ </div></div>\n \n <noscript>\n <div id=\"noscript-alert\"
240
+ class=\"bg-danger\">\n <div class=\"alert container text-danger
241
+ no-margin-bottom\">Please enable JavaScript in your browser. It is required
242
+ to use most of the features of Dataverse.\n </div>\n </div>\n
243
+ \ </noscript>\n<form id=\"j_idt132\" name=\"j_idt132\" method=\"post\"
244
+ action=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO\"
245
+ class=\"form-inline\" enctype=\"application/x-www-form-urlencoded\" data-partialsubmit=\"true\">\n<input
246
+ type=\"hidden\" name=\"j_idt132\" value=\"j_idt132\" />\n<input type=\"hidden\"
247
+ name=\"javax.faces.ViewState\" id=\"j_id1:javax.faces.ViewState:1\" value=\"8430983003554814109:-1483913141546431451\"
248
+ autocomplete=\"off\" />\n</form><div id=\"breadCrumbPanel\"><div id=\"breadcrumbNavBlock\"
249
+ class=\"container\">\n <div class=\"breadcrumbBlock\">\n <a
250
+ id=\"breadcrumbLnk0\" href=\"/dataverse/harvard\">Harvard Dataverse\n </a>\n
251
+ \ </div><span class=\"breadcrumbCarrot\"> &gt; </span>\n <div
252
+ class=\"breadcrumbBlock\">\n </div></div></div><div id=\"messagePanel\">\n
253
+ \ <div class=\"container messagePanel\">\n </div></div>\n
254
+ \ </nav>\n <div class=\"container\" id=\"content\" role=\"main\">\n<form
255
+ id=\"datasetForm\" name=\"datasetForm\" method=\"post\" action=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO\"
256
+ enctype=\"application/x-www-form-urlencoded\">\n<input type=\"hidden\" name=\"datasetForm\"
257
+ value=\"datasetForm\" />\n<input id=\"datasetForm:validateFilesOutcome\" type=\"hidden\"
258
+ name=\"datasetForm:validateFilesOutcome\" /><input id=\"datasetForm:validTermsofAccess\"
259
+ type=\"hidden\" name=\"datasetForm:validTermsofAccess\" value=\"true\" /><div
260
+ id=\"datasetForm:topDatasetBlockFragment\"><div class=\"row\">\n <div
261
+ class=\"col-xs-12\">\n <div id=\"datasetVersionBlock\"
262
+ class=\"row\"><div id=\"title-block\" class=\"col-xs-12 margin-bottom-half\">\n
263
+ \ <h1 id=\"title\"> Summary data ankylosing
264
+ spondylitis GWAS</h1>\n <div id=\"title-label-block\"
265
+ class=\"margin-top-half\"><span class=\"label label-default\">Version 1.0</span>\n
266
+ \ </div></div>\n </div>\n\n
267
+ \ \n <div id=\"datasetCitationActionSummaryBlock\"
268
+ class=\"row\">\n <div class=\"col-xs-12
269
+ col-sm-12 col-md-8 col-lg-9\">\n <div class=\"citation-block\">\n <div
270
+ class=\"clearfix alert alert-info bg-citation\">\n <div class=\"citation
271
+ margin-bottom\">\n <div class=\"pull-left preview-icon-block\"><span
272
+ class=\"icon-dataset\"></span>\n </div>\n <span
273
+ class=\"citation-select\" onclick=\"if (event.target) { selectText(event.target);
274
+ } else{ selectText(this); }\">International Genetics of Ankylosing Spondylitis
275
+ Consortium (IGAS), 2017, \"Summary data ankylosing spondylitis GWAS\", <a
276
+ href=\"https://doi.org/10.7910/DVN/NJ7XSO\" target=\"_blank\">https://doi.org/10.7910/DVN/NJ7XSO</a>,
277
+ Harvard Dataverse, V1\n </span>\n </div><div class=\"pull-left
278
+ row col-sm-9 padding-none\"><div class=\"col-sm-3 col-md-4 col-lg-3 btn-group
279
+ margin-bottom citation-download\">\n <button type=\"button\"
280
+ class=\"btn btn-link dropdown-toggle padding-none downloadCitation\" data-toggle=\"dropdown\">\n
281
+ \ Cite Dataset <span class=\"caret\"></span>\n </button>\n
282
+ \ <ul class=\"dropdown-menu\">\n <li><script
283
+ type=\"text/javascript\" src=\"/javax.faces.resource/jsf.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?ln=javax.faces\"></script><a
284
+ id=\"datasetForm:endNoteLink\" href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:endNoteLink':'datasetForm:endNoteLink'},'');return
285
+ false\">\n EndNote XML\n </a>\n
286
+ \ </li>\n <li><a id=\"datasetForm:risLink\"
287
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:risLink':'datasetForm:risLink'},'');return
288
+ false\">\n RIS\n </a>\n
289
+ \ </li>\n <li><a id=\"datasetForm:bibLink\"
290
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:bibLink':'datasetForm:bibLink'},'_blank');return
291
+ false\" target=\"_blank\">\n BibTeX\n </a>\n
292
+ \ </li>\n </ul></div><div class=\"col-sm-9
293
+ col-md-8 col-lg-9 text-muted margin-bottom citation-standards\">Learn about
294
+ <a href=\"https://dataverse.org/best-practices/data-citation\" title=\"Data
295
+ Citation - Dataverse.org\" target=\"_blank\">Data Citation Standards</a>.</div></div>\n
296
+ \ </div>\n </div>\n \n </div>\n\n
297
+ \ <div class=\"col-xs-12 col-sm-12 col-md-4
298
+ col-lg-3 pull-right margin-bottom\"><div id=\"actionButtonBlock\"><div class=\"btn-group
299
+ btn-group-justified\">\n <div
300
+ class=\"btn-group\">\n <button
301
+ type=\"button\" class=\"btn btn-primary btn-access-dataset dropdown-toggle\"
302
+ data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n
303
+ \ Access Dataset <span
304
+ class=\"caret\"></span>\n </button>\n
305
+ \ <ul class=\"dropdown-menu
306
+ pull-right text-left\" style=\"padding-left:1em; padding-right:1em;\">\n <li
307
+ class=\"dropdown-header\">Download Options <span class=\"glyphicon glyphicon-download-alt\"></span></li><li><a
308
+ id=\"datasetForm:j_idt264\" href=\"#\" class=\"ui-commandlink ui-widget btn-download\"
309
+ onclick=\"PrimeFaces.ab({s:&quot;datasetForm:j_idt264&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm&quot;,onco:function(xhr,status,args,data){showPopup();;},fp:&quot;datasetForm:topDatasetBlockFragment&quot;});return
310
+ false;\">\n Download\n
311
+ \ ZIP
312
+ (34.5 MB)</a></li>\n <li
313
+ class=\"dropdown-header\">Explore Options <span class=\"glyphicon glyphicon-equalizer\"></span></li>\n
314
+ \ <li><a href=\"#\"
315
+ onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:j_idt292:0:j_idt294':'datasetForm:j_idt292:0:j_idt294'},'');return
316
+ false\" class=\"btn-explore\">Binder</a>\n </li>\n
317
+ \ \n </ul>\n
318
+ \ </div></div>\n \n\n
319
+ \ \n <div
320
+ class=\"btn-group btn-group-justified\"><a id=\"datasetForm:j_idt400\" href=\"#\"
321
+ class=\"ui-commandlink ui-widget btn btn-default btn-xs btn-contact\" onclick=\"PrimeFaces.ab({s:&quot;datasetForm:j_idt400&quot;,f:&quot;datasetForm&quot;,u:&quot;contactDialog&quot;,onco:function(xhr,status,args,data){PF('contactForm').show();},fp:&quot;datasetForm:topDatasetBlockFragment&quot;});return
322
+ false;\" title=\"Contact Dataset Owner\">\n Contact
323
+ Owner\n </a><a id=\"datasetForm:j_idt402\"
324
+ href=\"#\" class=\"ui-commandlink ui-widget btn btn-default btn-xs btn-share\"
325
+ onclick=\"PrimeFaces.ab({s:&quot;datasetForm:j_idt402&quot;,f:&quot;datasetForm&quot;,onco:function(xhr,status,args,data){PF('shareDialog').show();sharrre();;},fp:&quot;datasetForm:topDatasetBlockFragment&quot;});return
326
+ false;\" title=\"Share Dataset\">\n Share\n
327
+ \ </a>\n </div></div>\n
328
+ \ \n </div><div
329
+ style=\"clear:right;\" class=\"col-xs-12 col-sm-12 col-md-4 col-lg-3 pull-right
330
+ margin-bottom\">\n \n <div
331
+ id=\"metrics-block\">\n <div id=\"metrics-heading\">\n
332
+ \ Dataset Metrics\n \n
333
+ \ <span class=\"glyphicon
334
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
335
+ top\" data-trigger=\"hover\" data-original-title=\"Aggregated metrics for
336
+ this dataset.\"></span>\n </div>\n
337
+ \ <div id=\"metrics-body\"><div
338
+ class=\"metrics-count-block\">234 Downloads\n <span
339
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
340
+ data-placement=\"auto top\" data-original-title=\"Total aggregated downloads
341
+ of files in this dataset.\"></span></div>\n </div>\n
342
+ \ </div></div>\n\n \n
343
+ \ <div id=\"dataset-colorder-block\" class=\"visible-md-block
344
+ visible-lg-block col-md-8 col-lg-9\"></div><div id=\"dataset-summary-metadata\"
345
+ class=\"col-xs-12 col-sm-12 col-md-8 col-lg-9 metadata-container padding-none
346
+ margin-bottom\">\n <table class=\"metadata\">\n
347
+ \ <tbody><tr id=\"dsDescription\">\n
348
+ \ <th scope=\"row\">\n
349
+ \ Description\n
350
+ \ <span class=\"glyphicon
351
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
352
+ right\" data-original-title=\"A summary describing the purpose, nature, and
353
+ scope of the Dataset\"></span>\n </th><td>\n
354
+ \ <div>Summary
355
+ of association tests for Nature Genetics publication \"Identification of multiple
356
+ risk variants for ankylosing spondylitis through high-density genotyping of
357
+ immune-related loci\".\n </div></td></tr><tr
358
+ id=\"subject\">\n <th
359
+ scope=\"row\">\n Subject\n
360
+ \ <span class=\"glyphicon
361
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
362
+ right\" data-original-title=\"The area of study relevant to the Dataset\"></span>\n
363
+ \ </th><td>Medicine,
364
+ Health and Life Sciences</td></tr><tr id=\"keywords\">\n <th
365
+ scope=\"row\">\n Keyword\n
366
+ \ <span class=\"glyphicon
367
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
368
+ right\" data-original-title=\"A key term that describes an important aspect
369
+ of the Dataset and information about any controlled vocabulary used\"></span>\n
370
+ \ </th>\n <td>
371
+ Genome-Wide Association Studies, Ankylosing spondylitis</td></tr><tr id=\"publication\">\n
372
+ \ <th scope=\"row\">\n
373
+ \ Related Publication\n
374
+ \ <span class=\"glyphicon
375
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
376
+ right\" data-original-title=\"The article or report that uses the data in
377
+ the Dataset. The full list of related publications will be displayed on the
378
+ metadata tab\"></span>\n </th><td>10.1038/ng.2667\n
379
+ \ <a target=\"_blank\"
380
+ rel=\"noopener\"></a></td></tr><tr id=\"notesText\">\n <th
381
+ scope=\"row\">\n Notes\n
382
+ \ <span class=\"glyphicon
383
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
384
+ right\" data-original-title=\"Additional information about the Dataset\"></span>\n
385
+ \ </th><td>European_Case_Control_Results.txt:
386
+ summary data for European cohort Asian_Case_Control_Results.txt: summary data
387
+ for Asian cohort European_Asian_Case_Control_Results.txt: summary data for
388
+ combined cohort</td></tr>\n <tr>\n
389
+ \ <th scope=\"row\">\n License/Data
390
+ Use Agreement\n </th>\n
391
+ \ <td>\n <p>\n
392
+ \ <img src=\"https://licensebuttons.net/p/zero/1.0/88x31.png\"
393
+ title=\"Creative Commons CC0 1.0 Universal Public Domain Dedication. \" style=\"display:none\"
394
+ onload=\"this.style.display='inline'\" />\n <a
395
+ href=\"http://creativecommons.org/publicdomain/zero/1.0\" title=\"Creative
396
+ Commons CC0 1.0 Universal Public Domain Dedication. \" target=\"_blank\">CC0
397
+ 1.0</a>\n </p>\n </td>\n
398
+ \ </tr>\n </tbody>\n
399
+ \ </table></div>\n \n
400
+ \ </div>\n \n
401
+ \ </div></div></div><div id=\"contentTabs\"><div
402
+ id=\"datasetForm:pageRefreshFragment\"><input id=\"datasetForm:datasetLockedForAnyReasonVariable\"
403
+ type=\"hidden\" name=\"datasetForm:datasetLockedForAnyReasonVariable\" value=\"false\"
404
+ /><input id=\"datasetForm:datasetStateChangedVariable\" type=\"hidden\" name=\"datasetForm:datasetStateChangedVariable\"
405
+ value=\"false\" /><script id=\"datasetForm:j_idt671\" type=\"text/javascript\">refreshAllLocksCommand
406
+ = function() {return PrimeFaces.ab({s:\"datasetForm:j_idt671\",f:\"datasetForm\",p:\"datasetForm:j_idt671\",u:\"datasetForm:pageRefreshFragment
407
+ messagePanel\",pa:arguments[0],fp:\"datasetForm:pageRefreshFragment\"});}</script><script
408
+ id=\"datasetForm:j_idt672\" type=\"text/javascript\">refreshAllCommand = function()
409
+ {return PrimeFaces.ab({s:\"datasetForm:j_idt672\",f:\"datasetForm\",p:\"datasetForm:j_idt672\",u:\"datasetForm:topDatasetBlockFragment
410
+ datasetForm:tabView:filesTable messagePanel\",pa:arguments[0],fp:\"datasetForm:pageRefreshFragment\"});}</script><button
411
+ id=\"datasetForm:refreshButton\" name=\"datasetForm:refreshButton\" class=\"\"
412
+ onclick=\"PrimeFaces.ab({s:&quot;datasetForm:refreshButton&quot;,f:&quot;datasetForm&quot;,p:&quot;datasetForm:refreshButton&quot;,u:&quot;datasetForm:topDatasetBlockFragment
413
+ datasetForm:tabView:filesTable&quot;,fp:&quot;datasetForm:pageRefreshFragment&quot;});return
414
+ false;\" style=\"display:none\" type=\"submit\"><span class=\"ui-button-text
415
+ ui-c\">ui-button</span></button><script id=\"datasetForm:refreshButton_s\"
416
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"refreshButton\",{id:\"datasetForm:refreshButton\"});});</script>\n
417
+ \ <script>\n //<![CDATA[\n
418
+ \ // javascript for refreshing page when locks\n
419
+ \ $(this).ready(function () {\n refreshIfStillLocked();\n
420
+ \ });\n function
421
+ refreshIfStillLocked() {\n if ($('input[id$=\"datasetLockedForAnyReasonVariable\"]').val()
422
+ === 'true') {\n // if dataset is locked,
423
+ instruct the page to\n // wait and
424
+ check again:\n waitAndCheckLockAgain();\n
425
+ \ } else {\n //
426
+ if not locked, has it just been unlocked?\n if
427
+ ($('input[id$=\"datasetStateChangedVariable\"]').val() === 'true') {\n //
428
+ For whatever unknown PrimeFaces reason\n //
429
+ the page needs to be refreshed twice, for all\n //
430
+ the pull down menus to update properly:\n refreshAllCommand();\n
431
+ \ // You can't just run 2 refreshAllCommand()s
432
+ in a row\n // either; because the
433
+ command has an \"update=@all\" on it,\n //
434
+ so I guess if you try to execute the 2nd one right after\n //
435
+ the first one, this fragment is still going to be loading -\n //
436
+ so there would not yet be a command to run! (it needs to\n //
437
+ be rendered, before you can execute it, that is)\n setTimeout(function
438
+ () {\n // this button doesn't
439
+ do anything, but it has an update=\"@all\"\n //
440
+ attribute:\n $('button[id$=\"refreshButton\"]').trigger('click');\n
441
+ \ //refreshAllCommand();\n },
442
+ 1500);\n }\n }\n
443
+ \ }\n function
444
+ waitAndCheckLockAgain() {\n setTimeout(function
445
+ () {\n // refresh the lock in the\n
446
+ \ // backing bean; i.e., check, if the
447
+ ingest has\n // already completed in
448
+ the background:\n //$('button[id$=\"refreshButton\"]').trigger('click');\n
449
+ \ //refreshLockCommand();\n refreshAllLocksCommand();\n
450
+ \ }, 10000);\n }\n
451
+ \ //]]>\n </script></div><div
452
+ id=\"datasetForm:tabView\" class=\"ui-tabs ui-widget ui-widget-content ui-corner-all
453
+ ui-hidden-container ui-tabs-top\" data-widget=\"content\"><ul class=\"ui-tabs-nav
454
+ ui-helper-reset ui-widget-header ui-corner-all\" role=\"tablist\"><li class=\"ui-tabs-header
455
+ ui-state-default ui-tabs-selected ui-state-active ui-corner-top\" role=\"tab\"
456
+ aria-expanded=\"true\" aria-selected=\"true\" data-index=\"0\"><a href=\"#datasetForm:tabView:dataFilesTab\"
457
+ tabindex=\"-1\">Files</a></li><li class=\"ui-tabs-header ui-state-default
458
+ ui-corner-top\" role=\"tab\" aria-expanded=\"false\" aria-selected=\"false\"
459
+ data-index=\"1\"><a href=\"#datasetForm:tabView:metadataMapTab\" tabindex=\"-1\">Metadata</a></li><li
460
+ class=\"ui-tabs-header ui-state-default ui-corner-top\" role=\"tab\" aria-expanded=\"false\"
461
+ aria-selected=\"false\" data-index=\"2\"><a href=\"#datasetForm:tabView:termsTab\"
462
+ tabindex=\"-1\">Terms</a></li><li class=\"ui-tabs-header ui-state-default
463
+ ui-corner-top\" role=\"tab\" aria-expanded=\"false\" aria-selected=\"false\"
464
+ data-index=\"3\"><a href=\"#datasetForm:tabView:versionsTab\" tabindex=\"-1\">Versions</a></li></ul><div
465
+ class=\"ui-tabs-panels\"><div id=\"datasetForm:tabView:dataFilesTab\" class=\"ui-tabs-panel
466
+ ui-widget-content ui-corner-bottom\" role=\"tabpanel\" aria-hidden=\"false\"
467
+ data-index=\"0\"><script id=\"datasetForm:tabView:j_idt1062\" type=\"text/javascript\">refreshPaginator
468
+ = function() {return PrimeFaces.ab({s:\"datasetForm:tabView:j_idt1062\",f:\"datasetForm\",p:\"datasetForm:tabView:j_idt1062\",u:\"datasetForm\",pa:arguments[0]});}</script><script
469
+ id=\"datasetForm:tabView:j_idt1067\" type=\"text/javascript\">rebindCommand
470
+ = function() {return PrimeFaces.ab({s:\"datasetForm:tabView:j_idt1067\",f:\"datasetForm\",p:\"datasetForm:tabView:j_idt1067\",u:\"datasetForm:tabView:filesTable\",pa:arguments[0]});}</script><div
471
+ id=\"datasetForm:tabView:filesTable\" class=\"ui-datatable ui-widget\" style=\"margin-right:1px;\"><div
472
+ class=\"ui-datatable-header ui-widget-header ui-corner-top\"><div id=\"datasetForm:tabView:filesTable:filesHeaderBlock\"
473
+ class=\"row\">\n <div class=\"col-xs-5\"><div class=\"input-group\"><label
474
+ for=\"datasetForm:tabView:filesTable:searchFiles\" id=\"searchLabel\" class=\"sr-only\">Search</label><input
475
+ id=\"datasetForm:tabView:filesTable:searchFiles\" name=\"datasetForm:tabView:filesTable:searchFiles\"
476
+ type=\"text\" value=\"\" class=\"ui-inputfield ui-inputtext ui-widget ui-state-default
477
+ ui-corner-all form-control\" title=\"Search\" onkeypress=\"if (event.keyCode
478
+ == 13) { submitsearch();
479
+ \ return false; }\"
480
+ aria-labelledby=\"searchLabel\" /><script id=\"datasetForm:tabView:filesTable:searchFiles_s\"
481
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"InputText\",\"inputSearchTerm\",{id:\"datasetForm:tabView:filesTable:searchFiles\"});});</script><script
482
+ id=\"datasetForm:tabView:filesTable:j_idt1078_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Watermark\",\"widget_datasetForm_tabView_filesTable_j_idt1078\",{id:\"datasetForm:tabView:filesTable:j_idt1078\",value:\"Search
483
+ this dataset...\",target:\"datasetForm:tabView:filesTable:searchFiles\"});});</script><script
484
+ id=\"datasetForm:tabView:filesTable:j_idt1079\" type=\"text/javascript\">submitsearch
485
+ = function() {return PrimeFaces.ab({s:\"datasetForm:tabView:filesTable:j_idt1079\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable:j_idt1079
486
+ @widgetVar(inputSearchTerm)\",u:\"datasetForm\",ps:true,pa:arguments[0]});}</script>\n\n
487
+ \ <span class=\"input-group-btn\"><a id=\"datasetForm:tabView:filesTable:j_idt1081\"
488
+ href=\"#\" class=\"ui-commandlink ui-widget btn btn-default bootstrap-button-tooltip\"
489
+ onclick=\"PrimeFaces.ab({s:&quot;datasetForm:tabView:filesTable:j_idt1081&quot;,f:&quot;datasetForm&quot;,p:&quot;datasetForm:tabView:filesTable:j_idt1081
490
+ @widgetVar(inputSearchTerm)&quot;,u:&quot;datasetForm&quot;,ps:true});return
491
+ false;\" title=\"Find\">\n <span class=\"glyphicon
492
+ glyphicon-search no-text\"></span></a>\n </span></div>\n
493
+ \ </div>\n <div class=\"col-xs-7 text-right\">\n
494
+ \ </div></div><div style=\"margin-bottom:10px;\" class=\"row\"><div
495
+ class=\"col-xs-9 text-left\"><div style=\"font-weight:normal;\" class=\"text-muted
496
+ small\">Filter by</div><div style=\"margin-right:20px;\" class=\"btn-group\">\n
497
+ \ <button type=\"button\" class=\"btn btn-link dropdown-toggle\"
498
+ style=\"padding:0;\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n
499
+ \ File Type: <span class=\"\">All</span> <span class=\"caret\"></span>\n
500
+ \ </button>\n <ul class=\"dropdown-menu\">\n
501
+ \ \n <li><a href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileAccess=&amp;fileTag=&amp;fileSortField=&amp;fileSortOrder=\"><span
502
+ class=\"highlightBold\">All</span></a></li>\n <li
503
+ role=\"separator\" class=\"divider\"></li>\n <li><a
504
+ href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=%22Text%22&amp;fileAccess=&amp;fileTag=&amp;fileSortField=&amp;fileSortOrder=\"><span
505
+ class=\"\">Text (3)</span></a></li>\n </ul></div><div
506
+ style=\"margin-right:20px;\" class=\"btn-group\">\n <button
507
+ type=\"button\" class=\"btn btn-link dropdown-toggle\" style=\"padding:0;\"
508
+ data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n
509
+ \ Access: <span class=\"\">All</span> <span class=\"caret\"></span>\n
510
+ \ </button>\n <ul class=\"dropdown-menu\">\n
511
+ \ \n <li><a href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileTag=&amp;fileSortField=&amp;fileSortOrder=\"><span
512
+ class=\"highlightBold\">All</span></a></li>\n <li
513
+ role=\"separator\" class=\"divider\"></li>\n <li><a
514
+ href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileAccess=Public&amp;fileTag=&amp;fileSortField=&amp;fileSortOrder=\"><span
515
+ class=\"\">Public (3)</span></a></li>\n </ul></div></div>\n\n
516
+ \ <div class=\"col-xs-3 text-right \">\n \n
517
+ \ <div class=\"btn-group\">\n <button
518
+ type=\"button\" class=\"btn btn-default dropdown-toggle\" data-toggle=\"dropdown\"
519
+ aria-haspopup=\"true\" aria-expanded=\"false\">\n <span
520
+ class=\"glyphicon glyphicon-sort\"></span> Sort <span class=\"caret\"></span>\n
521
+ \ </button>\n <ul class=\"dropdown-menu
522
+ pull-right text-left\">\n <li><a href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileAccess=\"><span
523
+ class=\"highlightBold\">Name (A-Z)</span></a></li>\n <li><a
524
+ href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileAccess=&amp;fileSortField=name&amp;fileSortOrder=desc\"><span
525
+ class=\"\">Name (Z-A)</span></a></li>\n <li><a
526
+ href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileAccess=&amp;fileSortField=date\"><span
527
+ class=\"\">Newest</span></a></li>\n <li><a href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileAccess=&amp;fileSortField=date&amp;fileSortOrder=desc\"><span
528
+ class=\"\">Oldest</span></a></li>\n <li><a href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileAccess=&amp;fileSortField=size\"><span
529
+ class=\"\">Size</span></a></li>\n <li><a href=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO&amp;version=&amp;q=&amp;fileTypeGroupFacet=&amp;fileAccess=&amp;fileSortField=type\"><span
530
+ class=\"\">Type</span></a></li>\n </ul>\n </div>\n
531
+ \ </div></div></div><div class=\"ui-datatable-tablewrapper\"><table
532
+ role=\"grid\" style=\"min-width:100%;width:auto;\"><thead id=\"datasetForm:tabView:filesTable_head\"><tr
533
+ role=\"row\"><th id=\"datasetForm:tabView:filesTable:j_idt1255\" class=\"ui-state-default
534
+ ui-selection-column text-center\" role=\"columnheader\" aria-label=\"Select
535
+ Files\" scope=\"col\"><span class=\"ui-column-title\"></span><div class=\"ui-chkbox
536
+ ui-chkbox-all ui-widget\"><div id=\"datasetForm:tabView:filesTable_head_checkbox\"
537
+ role=\"checkbox\" tabindex=\"0\" aria-label=\"Select All\" aria-checked=\"false\"
538
+ class=\"ui-chkbox-box ui-widget ui-corner-all ui-state-default\"><span class=\"ui-chkbox-icon
539
+ ui-icon ui-icon-blank ui-c\"></span></div></div></th><th id=\"datasetForm:tabView:filesTable:j_idt1256\"
540
+ class=\"ui-state-default col-file-metadata\" role=\"columnheader\" aria-label=\"{0}
541
+ to {1} of {2} {2, choice, 0#Files|1#File|2#Files}\" scope=\"col\"><span class=\"ui-column-title\"><div
542
+ id=\"datasetForm:tabView:filesTable:filesHeaderCount\"><span class=\"highlightBold\">1
543
+ to 3 of 3 Files</span></div></span></th><th id=\"datasetForm:tabView:filesTable:j_idt1292\"
544
+ class=\"ui-state-default col-file-action button-block text-right\" role=\"columnheader\"
545
+ aria-label=\"File Actions\" scope=\"col\" style=\"width:40%;\"><span class=\"ui-column-title\">\n
546
+ \ <script type=\"text/javascript\">\n function
547
+ downloadFiles(url, filelist) {\n filelist = filelist
548
+ + ','; //Prevents last file from being dropped on server\n var
549
+ form = $('<form></form>').attr('action', url).attr('method', 'post').attr('enctype',
550
+ 'text/plain');\n form.append($(\"<input />\").attr('type',
551
+ 'hidden').attr('name', 'fileIds').attr('value', filelist));\n //Submit
552
+ and then remove form\n form.appendTo('body').submit().remove();\n
553
+ \ }\n </script><div id=\"datasetForm:tabView:filesTable:downloadButtonBlockNormal\"
554
+ class=\"btn-group\"><a id=\"datasetForm:tabView:filesTable:j_idt1343\" href=\"#\"
555
+ class=\"ui-commandlink ui-widget btn btn-default btn-download\" onclick=\"if
556
+ (!testFilesSelected()) return false;;PrimeFaces.ab({s:&quot;datasetForm:tabView:filesTable:j_idt1343&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm&quot;,onco:function(xhr,status,args,data){showPopup();;}});return
557
+ false;\">\n <span class=\"glyphicon glyphicon-download-alt\"></span>
558
+ Download\n </a></div></span></th></tr></thead><tbody id=\"datasetForm:tabView:filesTable_data\"
559
+ class=\"ui-datatable-data ui-widget-content\"><tr data-ri=\"0\" data-rk=\"s3://dvn-cloud:15ed57a652e-67284a372c29\"
560
+ class=\"ui-widget-content ui-datatable-even ui-datatable-selectable\" role=\"row\"
561
+ aria-selected=\"false\"><td role=\"gridcell\" class=\"ui-selection-column
562
+ text-center\"><div class=\"ui-chkbox ui-widget\"><div id=\"datasetForm:tabView:filesTable_s3://dvn-cloud:15ed57a652e-67284a372c29_checkbox\"
563
+ role=\"checkbox\" tabindex=\"0\" aria-label=\"Select Asian_Case_Control_Results.txt\"
564
+ aria-checked=\"false\" class=\"ui-chkbox-box ui-widget ui-corner-all ui-state-default\"><span
565
+ class=\"ui-chkbox-icon ui-icon ui-icon-blank ui-c\"></span></div></div></td><td
566
+ role=\"gridcell\" class=\"col-file-metadata\"><div id=\"datasetForm:tabView:filesTable:0:fileInfoInclude-filesTable\"
567
+ class=\"ui-outputpanel ui-widget media\">\n <div class=\"media-left
568
+ col-file-thumb\" style=\"padding-top:4px;\">\n <div class=\"media-object
569
+ thumbnail-block text-center\"><span class=\"icon-document file-thumbnail-icon
570
+ text-muted\"></span>\n </div>\n </div>\n <div class=\"media-body
571
+ col-file-metadata\">\n <div class=\"fileNameOriginal\">\n \n
572
+ \ <a href=\"/file.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO/K3NRMO&amp;version=1.0\">\n
573
+ \ Asian_Case_Control_Results.txt\n </a>\n
574
+ \ </div>\n \n <div class=\"text-muted small\"><span
575
+ id=\"datasetForm:tabView:filesTable:0:fileType\">Plain Text</span><span id=\"datasetForm:tabView:filesTable:0:fileSize\">
576
+ - 11.0 MB</span>\n <div class=\"dateCreatePublish-block\"><span
577
+ id=\"datasetForm:tabView:filesTable:0:fileCreatePublishDate\">Published Sep
578
+ 30, 2017</span>\n </div><div class=\"downloads-block\"><span
579
+ id=\"datasetForm:tabView:filesTable:0:fileDownloadCount\" class=\"visible-xs-block
580
+ visible-sm-block visible-md-inline visible-lg-inline\">68 Downloads</span></div><div
581
+ class=\"checksum-block\">\n <span class=\"checksum-truncate
582
+ checksum-tooltip\" style=\"margin-right:3px;\" data-toggle=\"tooltip\" data-placement=\"top\"
583
+ data-html=\"true\" data-clipboard-action=\"copy\" data-clipboard-text=\"bcc06aebf96c9540995192c89c91fb23\"
584
+ title=\"Click to copy&lt;br/&gt;bcc06aebf96c9540995192c89c91fb23\">MD5: bcc06aebf96c9540995192c89c91fb23</span>\n
585
+ \ <span class=\"glyphicon glyphicon-copy btn-copy checksum-tooltip\"
586
+ data-toggle=\"tooltip\" data-placement=\"top\" data-html=\"true\" data-clipboard-action=\"copy\"
587
+ data-clipboard-text=\"bcc06aebf96c9540995192c89c91fb23\" title=\"Click to
588
+ copy&lt;br/&gt;bcc06aebf96c9540995192c89c91fb23\"></span></div>\n </div><div
589
+ class=\"fileDescription small\"><span id=\"datasetForm:tabView:filesTable:0:fileDescNonEmpty\">Summary
590
+ data for Asian cohort</span></div>\n </div></div></td><td role=\"gridcell\"
591
+ style=\"width:40%;\" class=\"col-file-action button-block text-right\"><div
592
+ role=\"group\" class=\"btn-group\" aria-label=\"File Actions\"><div class=\"btn-group\">\n
593
+ \ <a class=\"btn-preview btn btn-link bootstrap-button-tooltip\"
594
+ title=\"Read Text\" href=\"/file.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO/K3NRMO&amp;version=1.0\">\n
595
+ \ <span class=\"glyphicon glyphicon-eye-open\"></span><span
596
+ class=\"sr-only\">Preview \"Asian_Case_Control_Results.txt\"</span>\n </a>\n
597
+ \ <a type=\"button\" style=\"padding:6px 8px;\" class=\"btn-access-file
598
+ btn btn-link bootstrap-button-tooltip dropdown-toggle\" title=\"Access File\"
599
+ data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\" tabindex=\"0\">\n
600
+ \ <span class=\"glyphicon glyphicon-download-alt\"></span><span
601
+ class=\"sr-only\">Access File</span><span class=\"caret\"></span>\n </a>\n
602
+ \ <ul class=\"dropdown-menu pull-right text-left\">\n \n
603
+ \ \n <li class=\"dropdown-header\">File Access <span class=\"glyphicon
604
+ glyphicon-file\"></span></li>\n <li><span class=\"dropdown-item-text\">\n
605
+ \ <span class=\"glyphicon glyphicon-globe text-success\"></span><span
606
+ class=\"text-success\"> Public</span>\n </span></li>\n \n <li
607
+ class=\"dropdown-header\">Download Options <span class=\"glyphicon glyphicon-download-alt\"></span></li><li><a
608
+ id=\"datasetForm:tabView:filesTable:0:j_idt1396\" href=\"#\" class=\"ui-commandlink
609
+ ui-widget btn-download\" onclick=\"PrimeFaces.ab({s:&quot;datasetForm:tabView:filesTable:0:j_idt1396&quot;,f:&quot;datasetForm&quot;,p:&quot;datasetForm:tabView:filesTable:0:j_idt1396&quot;});return
610
+ false;\">\n \n \n Plain Text\n
611
+ \ </a></li>\n \n \n \n <li class=\"dropdown-header\">Download
612
+ Metadata <span class=\"glyphicon glyphicon-download-alt\"></span></li><li
613
+ class=\"dropdown-submenu pull-left\">\n <a tabindex=\"0\">Data
614
+ File Citation</a>\n <ul class=\"dropdown-menu\">\n <li><a
615
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:0:j_idt1431':'datasetForm:tabView:filesTable:0:j_idt1431'},'');return
616
+ false\" class=\"btn-download\">EndNote XML</a>\n </li>\n <li><a
617
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:0:j_idt1434':'datasetForm:tabView:filesTable:0:j_idt1434'},'');return
618
+ false\" class=\"btn-download\">RIS</a>\n </li>\n <li><a
619
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:0:j_idt1437':'datasetForm:tabView:filesTable:0:j_idt1437'},'');return
620
+ false\" class=\"btn-download\">BibTeX</a>\n </li>\n </ul></li>\n
621
+ \ \n <li role=\"presentation\" class=\"clearfix\"></li>\n \n
622
+ \ </ul></div></div></td></tr><tr data-ri=\"1\" data-rk=\"s3://dvn-cloud:15ed57a87b9-99abc162b458\"
623
+ class=\"ui-widget-content ui-datatable-odd ui-datatable-selectable\" role=\"row\"
624
+ aria-selected=\"false\"><td role=\"gridcell\" class=\"ui-selection-column
625
+ text-center\"><div class=\"ui-chkbox ui-widget\"><div id=\"datasetForm:tabView:filesTable_s3://dvn-cloud:15ed57a87b9-99abc162b458_checkbox\"
626
+ role=\"checkbox\" tabindex=\"0\" aria-label=\"Select European_Asian_Case_Control_Results.txt\"
627
+ aria-checked=\"false\" class=\"ui-chkbox-box ui-widget ui-corner-all ui-state-default\"><span
628
+ class=\"ui-chkbox-icon ui-icon ui-icon-blank ui-c\"></span></div></div></td><td
629
+ role=\"gridcell\" class=\"col-file-metadata\"><div id=\"datasetForm:tabView:filesTable:1:fileInfoInclude-filesTable\"
630
+ class=\"ui-outputpanel ui-widget media\">\n <div class=\"media-left
631
+ col-file-thumb\" style=\"padding-top:4px;\">\n <div class=\"media-object
632
+ thumbnail-block text-center\"><span class=\"icon-document file-thumbnail-icon
633
+ text-muted\"></span>\n </div>\n </div>\n <div class=\"media-body
634
+ col-file-metadata\">\n <div class=\"fileNameOriginal\">\n \n
635
+ \ <a href=\"/file.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO/HA2SVR&amp;version=1.0\">\n
636
+ \ European_Asian_Case_Control_Results.txt\n </a>\n
637
+ \ </div>\n \n <div class=\"text-muted small\"><span
638
+ id=\"datasetForm:tabView:filesTable:1:fileType\">Plain Text</span><span id=\"datasetForm:tabView:filesTable:1:fileSize\">
639
+ - 10.7 MB</span>\n <div class=\"dateCreatePublish-block\"><span
640
+ id=\"datasetForm:tabView:filesTable:1:fileCreatePublishDate\">Published Sep
641
+ 30, 2017</span>\n </div><div class=\"downloads-block\"><span
642
+ id=\"datasetForm:tabView:filesTable:1:fileDownloadCount\" class=\"visible-xs-block
643
+ visible-sm-block visible-md-inline visible-lg-inline\">68 Downloads</span></div><div
644
+ class=\"checksum-block\">\n <span class=\"checksum-truncate
645
+ checksum-tooltip\" style=\"margin-right:3px;\" data-toggle=\"tooltip\" data-placement=\"top\"
646
+ data-html=\"true\" data-clipboard-action=\"copy\" data-clipboard-text=\"0ae7b4639626ebad6ab77f54bfcfdd6d\"
647
+ title=\"Click to copy&lt;br/&gt;0ae7b4639626ebad6ab77f54bfcfdd6d\">MD5: 0ae7b4639626ebad6ab77f54bfcfdd6d</span>\n
648
+ \ <span class=\"glyphicon glyphicon-copy btn-copy checksum-tooltip\"
649
+ data-toggle=\"tooltip\" data-placement=\"top\" data-html=\"true\" data-clipboard-action=\"copy\"
650
+ data-clipboard-text=\"0ae7b4639626ebad6ab77f54bfcfdd6d\" title=\"Click to
651
+ copy&lt;br/&gt;0ae7b4639626ebad6ab77f54bfcfdd6d\"></span></div>\n </div><div
652
+ class=\"fileDescription small\"><span id=\"datasetForm:tabView:filesTable:1:fileDescNonEmpty\">Summary
653
+ data for combined cohort</span></div>\n </div></div></td><td role=\"gridcell\"
654
+ style=\"width:40%;\" class=\"col-file-action button-block text-right\"><div
655
+ role=\"group\" class=\"btn-group\" aria-label=\"File Actions\"><div class=\"btn-group\">\n
656
+ \ <a class=\"btn-preview btn btn-link bootstrap-button-tooltip\"
657
+ title=\"Read Text\" href=\"/file.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO/HA2SVR&amp;version=1.0\">\n
658
+ \ <span class=\"glyphicon glyphicon-eye-open\"></span><span
659
+ class=\"sr-only\">Preview \"European_Asian_Case_Control_Results.txt\"</span>\n
660
+ \ </a>\n <a type=\"button\" style=\"padding:6px
661
+ 8px;\" class=\"btn-access-file btn btn-link bootstrap-button-tooltip dropdown-toggle\"
662
+ title=\"Access File\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\"
663
+ tabindex=\"0\">\n <span class=\"glyphicon glyphicon-download-alt\"></span><span
664
+ class=\"sr-only\">Access File</span><span class=\"caret\"></span>\n </a>\n
665
+ \ <ul class=\"dropdown-menu pull-right text-left\">\n \n
666
+ \ \n <li class=\"dropdown-header\">File Access <span class=\"glyphicon
667
+ glyphicon-file\"></span></li>\n <li><span class=\"dropdown-item-text\">\n
668
+ \ <span class=\"glyphicon glyphicon-globe text-success\"></span><span
669
+ class=\"text-success\"> Public</span>\n </span></li>\n \n <li
670
+ class=\"dropdown-header\">Download Options <span class=\"glyphicon glyphicon-download-alt\"></span></li><li><a
671
+ id=\"datasetForm:tabView:filesTable:1:j_idt1396\" href=\"#\" class=\"ui-commandlink
672
+ ui-widget btn-download\" onclick=\"PrimeFaces.ab({s:&quot;datasetForm:tabView:filesTable:1:j_idt1396&quot;,f:&quot;datasetForm&quot;,p:&quot;datasetForm:tabView:filesTable:1:j_idt1396&quot;});return
673
+ false;\">\n \n \n Plain Text\n
674
+ \ </a></li>\n \n \n \n <li class=\"dropdown-header\">Download
675
+ Metadata <span class=\"glyphicon glyphicon-download-alt\"></span></li><li
676
+ class=\"dropdown-submenu pull-left\">\n <a tabindex=\"0\">Data
677
+ File Citation</a>\n <ul class=\"dropdown-menu\">\n <li><a
678
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:1:j_idt1431':'datasetForm:tabView:filesTable:1:j_idt1431'},'');return
679
+ false\" class=\"btn-download\">EndNote XML</a>\n </li>\n <li><a
680
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:1:j_idt1434':'datasetForm:tabView:filesTable:1:j_idt1434'},'');return
681
+ false\" class=\"btn-download\">RIS</a>\n </li>\n <li><a
682
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:1:j_idt1437':'datasetForm:tabView:filesTable:1:j_idt1437'},'');return
683
+ false\" class=\"btn-download\">BibTeX</a>\n </li>\n </ul></li>\n
684
+ \ \n <li role=\"presentation\" class=\"clearfix\"></li>\n \n
685
+ \ </ul></div></div></td></tr><tr data-ri=\"2\" data-rk=\"s3://dvn-cloud:15ed57aab7e-90a2b6c112eb\"
686
+ class=\"ui-widget-content ui-datatable-even ui-datatable-selectable\" role=\"row\"
687
+ aria-selected=\"false\"><td role=\"gridcell\" class=\"ui-selection-column
688
+ text-center\"><div class=\"ui-chkbox ui-widget\"><div id=\"datasetForm:tabView:filesTable_s3://dvn-cloud:15ed57aab7e-90a2b6c112eb_checkbox\"
689
+ role=\"checkbox\" tabindex=\"0\" aria-label=\"Select European_Case_Control_Results.txt\"
690
+ aria-checked=\"false\" class=\"ui-chkbox-box ui-widget ui-corner-all ui-state-default\"><span
691
+ class=\"ui-chkbox-icon ui-icon ui-icon-blank ui-c\"></span></div></div></td><td
692
+ role=\"gridcell\" class=\"col-file-metadata\"><div id=\"datasetForm:tabView:filesTable:2:fileInfoInclude-filesTable\"
693
+ class=\"ui-outputpanel ui-widget media\">\n <div class=\"media-left
694
+ col-file-thumb\" style=\"padding-top:4px;\">\n <div class=\"media-object
695
+ thumbnail-block text-center\"><span class=\"icon-document file-thumbnail-icon
696
+ text-muted\"></span>\n </div>\n </div>\n <div class=\"media-body
697
+ col-file-metadata\">\n <div class=\"fileNameOriginal\">\n \n
698
+ \ <a href=\"/file.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO/IN45GZ&amp;version=1.0\">\n
699
+ \ European_Case_Control_Results.txt\n </a>\n
700
+ \ </div>\n \n <div class=\"text-muted small\"><span
701
+ id=\"datasetForm:tabView:filesTable:2:fileType\">Plain Text</span><span id=\"datasetForm:tabView:filesTable:2:fileSize\">
702
+ - 12.7 MB</span>\n <div class=\"dateCreatePublish-block\"><span
703
+ id=\"datasetForm:tabView:filesTable:2:fileCreatePublishDate\">Published Sep
704
+ 30, 2017</span>\n </div><div class=\"downloads-block\"><span
705
+ id=\"datasetForm:tabView:filesTable:2:fileDownloadCount\" class=\"visible-xs-block
706
+ visible-sm-block visible-md-inline visible-lg-inline\">98 Downloads</span></div><div
707
+ class=\"checksum-block\">\n <span class=\"checksum-truncate
708
+ checksum-tooltip\" style=\"margin-right:3px;\" data-toggle=\"tooltip\" data-placement=\"top\"
709
+ data-html=\"true\" data-clipboard-action=\"copy\" data-clipboard-text=\"876bb3b600460fdbfabc01eb08c41497\"
710
+ title=\"Click to copy&lt;br/&gt;876bb3b600460fdbfabc01eb08c41497\">MD5: 876bb3b600460fdbfabc01eb08c41497</span>\n
711
+ \ <span class=\"glyphicon glyphicon-copy btn-copy checksum-tooltip\"
712
+ data-toggle=\"tooltip\" data-placement=\"top\" data-html=\"true\" data-clipboard-action=\"copy\"
713
+ data-clipboard-text=\"876bb3b600460fdbfabc01eb08c41497\" title=\"Click to
714
+ copy&lt;br/&gt;876bb3b600460fdbfabc01eb08c41497\"></span></div>\n </div><div
715
+ class=\"fileDescription small\"><span id=\"datasetForm:tabView:filesTable:2:fileDescNonEmpty\">Summary
716
+ data for European cohort</span></div>\n </div></div></td><td role=\"gridcell\"
717
+ style=\"width:40%;\" class=\"col-file-action button-block text-right\"><div
718
+ role=\"group\" class=\"btn-group\" aria-label=\"File Actions\"><div class=\"btn-group\">\n
719
+ \ <a class=\"btn-preview btn btn-link bootstrap-button-tooltip\"
720
+ title=\"Read Text\" href=\"/file.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO/IN45GZ&amp;version=1.0\">\n
721
+ \ <span class=\"glyphicon glyphicon-eye-open\"></span><span
722
+ class=\"sr-only\">Preview \"European_Case_Control_Results.txt\"</span>\n </a>\n
723
+ \ <a type=\"button\" style=\"padding:6px 8px;\" class=\"btn-access-file
724
+ btn btn-link bootstrap-button-tooltip dropdown-toggle\" title=\"Access File\"
725
+ data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\" tabindex=\"0\">\n
726
+ \ <span class=\"glyphicon glyphicon-download-alt\"></span><span
727
+ class=\"sr-only\">Access File</span><span class=\"caret\"></span>\n </a>\n
728
+ \ <ul class=\"dropdown-menu pull-right text-left\">\n \n
729
+ \ \n <li class=\"dropdown-header\">File Access <span class=\"glyphicon
730
+ glyphicon-file\"></span></li>\n <li><span class=\"dropdown-item-text\">\n
731
+ \ <span class=\"glyphicon glyphicon-globe text-success\"></span><span
732
+ class=\"text-success\"> Public</span>\n </span></li>\n \n <li
733
+ class=\"dropdown-header\">Download Options <span class=\"glyphicon glyphicon-download-alt\"></span></li><li><a
734
+ id=\"datasetForm:tabView:filesTable:2:j_idt1396\" href=\"#\" class=\"ui-commandlink
735
+ ui-widget btn-download\" onclick=\"PrimeFaces.ab({s:&quot;datasetForm:tabView:filesTable:2:j_idt1396&quot;,f:&quot;datasetForm&quot;,p:&quot;datasetForm:tabView:filesTable:2:j_idt1396&quot;});return
736
+ false;\">\n \n \n Plain Text\n
737
+ \ </a></li>\n \n \n \n <li class=\"dropdown-header\">Download
738
+ Metadata <span class=\"glyphicon glyphicon-download-alt\"></span></li><li
739
+ class=\"dropdown-submenu pull-left\">\n <a tabindex=\"0\">Data
740
+ File Citation</a>\n <ul class=\"dropdown-menu\">\n <li><a
741
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:2:j_idt1431':'datasetForm:tabView:filesTable:2:j_idt1431'},'');return
742
+ false\" class=\"btn-download\">EndNote XML</a>\n </li>\n <li><a
743
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:2:j_idt1434':'datasetForm:tabView:filesTable:2:j_idt1434'},'');return
744
+ false\" class=\"btn-download\">RIS</a>\n </li>\n <li><a
745
+ href=\"#\" onclick=\"mojarra.jsfcljs(document.getElementById('datasetForm'),{'datasetForm:tabView:filesTable:2:j_idt1437':'datasetForm:tabView:filesTable:2:j_idt1437'},'');return
746
+ false\" class=\"btn-download\">BibTeX</a>\n </li>\n </ul></li>\n
747
+ \ \n <li role=\"presentation\" class=\"clearfix\"></li>\n \n
748
+ \ </ul></div></div></td></tr></tbody></table></div><input
749
+ id=\"datasetForm:tabView:filesTable_selection\" name=\"datasetForm:tabView:filesTable_selection\"
750
+ type=\"hidden\" autocomplete=\"off\" aria-hidden=\"true\" value=\"\" /></div><script
751
+ id=\"datasetForm:tabView:filesTable_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"DataTable\",\"filesTable\",{id:\"datasetForm:tabView:filesTable\",selectionMode:\"checkbox\",rowSelectMode:\"checkbox\",groupColumnIndexes:[],disableContextMenuIfEmpty:false,behaviors:{rowUnselect:function(ext,event)
752
+ {PrimeFaces.ab({s:\"datasetForm:tabView:filesTable\",e:\"rowUnselect\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable\",u:\"datasetForm:validateFilesOutcome
753
+ datasetForm:tabView:filesTable\",onco:function(xhr,status,args,data){rebindCommand();}},ext);},rowUnselectCheckbox:function(ext,event)
754
+ {PrimeFaces.ab({s:\"datasetForm:tabView:filesTable\",e:\"rowUnselectCheckbox\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable\",u:\"datasetForm:validateFilesOutcome
755
+ datasetForm:tabView:filesTable\",onco:function(xhr,status,args,data){rebindCommand();}},ext);},rowDblselect:function(ext,event)
756
+ {PrimeFaces.ab({s:\"datasetForm:tabView:filesTable\",e:\"rowDblselect\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable\",u:\"datasetForm:validateFilesOutcome
757
+ datasetForm:tabView:filesTable\",onco:function(xhr,status,args,data){rebindCommand();}},ext);},page:function(ext,event)
758
+ {PrimeFaces.ab({s:\"datasetForm:tabView:filesTable\",e:\"page\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable\",u:\"datasetForm:tabView:filesTable\",onco:function(xhr,status,args,data){refreshPaginator(),rebindCommand();}},ext);},rowSelect:function(ext,event)
759
+ {PrimeFaces.ab({s:\"datasetForm:tabView:filesTable\",e:\"rowSelect\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable\",u:\"datasetForm:validateFilesOutcome
760
+ datasetForm:tabView:filesTable\",onco:function(xhr,status,args,data){rebindCommand();}},ext);},toggleSelect:function(ext,event)
761
+ {PrimeFaces.ab({s:\"datasetForm:tabView:filesTable\",e:\"toggleSelect\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable\",u:\"datasetForm:validateFilesOutcome
762
+ datasetForm:tabView:filesTable\",onco:function(xhr,status,args,data){rebindCommand();}},ext);},rowSelectCheckbox:function(ext,event)
763
+ {PrimeFaces.ab({s:\"datasetForm:tabView:filesTable\",e:\"rowSelectCheckbox\",f:\"datasetForm\",p:\"datasetForm:tabView:filesTable\",u:\"datasetForm:validateFilesOutcome
764
+ datasetForm:tabView:filesTable\",onco:function(xhr,status,args,data){rebindCommand();}},ext);}}});});</script></div><div
765
+ id=\"datasetForm:tabView:metadataMapTab\" class=\"ui-tabs-panel ui-widget-content
766
+ ui-corner-bottom ui-helper-hidden\" role=\"tabpanel\" aria-hidden=\"true\"
767
+ data-index=\"1\"><div class=\"button-block tab-header margin-bottom text-right\"><div
768
+ class=\"btn-group\">\n <button class=\"btn
769
+ btn-default btn-export dropdown-toggle\" type=\"button\" data-toggle=\"dropdown\">\n
770
+ \ <span class=\"glyphicon glyphicon-export\"></span>
771
+ Export Metadata <span class=\"caret\"></span>\n </button>\n
772
+ \ <ul class=\"dropdown-menu pull-right
773
+ text-left\">\n <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=dcterms&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
774
+ target=\"_blank\">Dublin Core</a>\n </li>\n
775
+ \ <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=ddi&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
776
+ target=\"_blank\">DDI</a>\n </li>\n
777
+ \ <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=Datacite&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
778
+ target=\"_blank\">DataCite</a>\n </li>\n
779
+ \ <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=html&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
780
+ target=\"_blank\">DDI HTML Codebook</a>\n </li>\n
781
+ \ <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=dataverse_json&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
782
+ target=\"_blank\">JSON</a>\n </li>\n
783
+ \ <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=OAI_ORE&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
784
+ target=\"_blank\">OAI_ORE</a>\n </li>\n
785
+ \ <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=oai_datacite&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
786
+ target=\"_blank\">OpenAIRE</a>\n </li>\n
787
+ \ <li><a href=\"https://dataverse.harvard.edu/api/datasets/export;jsessionid=ff0d48dfcc720cb3f91fd57ab360?exporter=schema.org&amp;persistentId=doi%3A10.7910/DVN/NJ7XSO\"
788
+ target=\"_blank\">Schema.org JSON-LD</a>\n </li>\n
789
+ \ </ul></div></div><div id=\"datasetForm:tabView:j_idt1546\"></div><div
790
+ class=\"panel-group\">\n <p>\n </p>\n <div class=\"panel
791
+ panel-default\">\n <div data-toggle=\"collapse\" data-target=\"#panelCollapse0\"
792
+ class=\"panel-heading text-info\">\n Citation Metadata
793
+  <span class=\"glyphicon glyphicon-chevron-up\"></span>\n </div>\n
794
+ \ <div id=\"panelCollapse0\" class=\"collapse in\">\n <div
795
+ class=\"panel-body metadata-container\">\n <table class=\"metadata\">\n
796
+ \ <tbody>\n <tr
797
+ id=\"metadata_persistentId\">\n <th
798
+ scope=\"row\">\n Persistent Identifier\n
799
+ \ <span class=\"glyphicon glyphicon-question-sign
800
+ tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto right\" data-original-title=\"The
801
+ Dataset's unique persistent identifier, either a DOI or Handle\"></span>\n
802
+ \ </th>\n <td>doi:10.7910/DVN/NJ7XSO</td>\n
803
+ \ </tr><tr id=\"metadata_publicationDate\">\n
804
+ \ <th scope=\"row\">\n Publication
805
+ Date\n <span class=\"glyphicon
806
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
807
+ right\" data-original-title=\"The publication date of a Dataset.\"></span>\n
808
+ \ </th>\n <td>2017-09-30</td></tr>\n
809
+ \ <tr id=\"metadata_title\">\n <th
810
+ scope=\"row\">\n Title\n <span
811
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
812
+ data-placement=\"auto right\" data-original-title=\"The main title of the
813
+ Dataset\"></span>\n </th><td>Summary
814
+ data ankylosing spondylitis GWAS</td>\n </tr>\n
815
+ \ <tr id=\"metadata_author\">\n <th
816
+ scope=\"row\">\n Author\n <span
817
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
818
+ data-placement=\"auto right\" data-original-title=\"The entity, e.g. a person
819
+ or organization, that created the Dataset\"></span>\n </th><td>International
820
+ Genetics of Ankylosing Spondylitis Consortium (IGAS)</td>\n </tr>\n
821
+ \ <tr id=\"metadata_datasetContact\">\n
822
+ \ <th scope=\"row\">\n Point
823
+ of Contact\n <span class=\"glyphicon
824
+ glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto
825
+ right\" data-original-title=\"The entity, e.g. a person or organization, that
826
+ users of the Dataset can contact with questions\"></span>\n </th><td>\n
827
+ \ <p class=\"help-block\">Use
828
+ email button above to contact.\n </p>Li,
829
+ Zhixiu (QUT) </td>\n </tr>\n <tr
830
+ id=\"metadata_dsDescription\">\n <th
831
+ scope=\"row\">\n Description\n
832
+ \ <span class=\"glyphicon glyphicon-question-sign
833
+ tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto right\" data-original-title=\"A
834
+ summary describing the purpose, nature, and scope of the Dataset\"></span>\n
835
+ \ </th><td>Summary of association tests
836
+ for Nature Genetics publication \"Identification of multiple risk variants
837
+ for ankylosing spondylitis through high-density genotyping of immune-related
838
+ loci\".</td>\n </tr>\n <tr
839
+ id=\"metadata_subject\">\n <th scope=\"row\">\n
840
+ \ Subject\n <span
841
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
842
+ data-placement=\"auto right\" data-original-title=\"The area of study relevant
843
+ to the Dataset\"></span>\n </th><td>Medicine,
844
+ Health and Life Sciences</td>\n </tr>\n
845
+ \ <tr id=\"metadata_keyword\">\n <th
846
+ scope=\"row\">\n Keyword\n <span
847
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
848
+ data-placement=\"auto right\" data-original-title=\"A key term that describes
849
+ an important aspect of the Dataset and information about any controlled vocabulary
850
+ used\"></span>\n </th><td>Genome-Wide
851
+ Association Studies\n <br
852
+ />Ankylosing spondylitis</td>\n </tr>\n
853
+ \ <tr id=\"metadata_publication\">\n <th
854
+ scope=\"row\">\n Related Publication\n
855
+ \ <span class=\"glyphicon glyphicon-question-sign
856
+ tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto right\" data-original-title=\"The
857
+ article or report that uses the data in the Dataset. The full list of related
858
+ publications will be displayed on the metadata tab\"></span>\n </th><td>10.1038/ng.2667
859
+ doi: </td>\n </tr>\n <tr
860
+ id=\"metadata_notesText\">\n <th scope=\"row\">\n
861
+ \ Notes\n <span
862
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
863
+ data-placement=\"auto right\" data-original-title=\"Additional information
864
+ about the Dataset\"></span>\n </th><td>European_Case_Control_Results.txt:
865
+ summary data for European cohort Asian_Case_Control_Results.txt: summary data
866
+ for Asian cohort European_Asian_Case_Control_Results.txt: summary data for
867
+ combined cohort</td>\n </tr>\n <tr
868
+ id=\"metadata_depositor\">\n <th scope=\"row\">\n
869
+ \ Depositor\n <span
870
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
871
+ data-placement=\"auto right\" data-original-title=\"The entity, such as a
872
+ person or organization, that deposited the Dataset in the repository\"></span>\n
873
+ \ </th><td>Li, Zhixiu</td>\n </tr>\n
874
+ \ <tr id=\"metadata_dateOfDeposit\">\n <th
875
+ scope=\"row\">\n Deposit Date\n
876
+ \ <span class=\"glyphicon glyphicon-question-sign
877
+ tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto right\" data-original-title=\"The
878
+ date when the Dataset was deposited into the repository\"></span>\n </th><td>2017-09-30</td>\n
879
+ \ </tr>\n </tbody>\n
880
+ \ </table>\n </div>\n </div>\n
881
+ \ </div></div>\n <script>\n //<![CDATA[\n $(document).ready(function()
882
+ {\n //The select2 widget used in external vocab scripts has trouble determining
883
+ the width of an input field if it is initially hidden\n //Starting with
884
+ the metadatablocks displayed and collapsing them here is a work-around to
885
+ fix that.\n if(false) {\n for(let i=1;i< 1;i++) {\n $('#panelCollapse'+i).collapse('hide');\n
886
+ \ }\n }\n });\n //]]>\n </script></div><div id=\"datasetForm:tabView:termsTab\"
887
+ class=\"ui-tabs-panel ui-widget-content ui-corner-bottom ui-helper-hidden\"
888
+ role=\"tabpanel\" aria-hidden=\"true\" data-index=\"2\">\n <div class=\"panel-group\">\n
889
+ \ <div class=\"panel panel-default\">\n <div data-toggle=\"collapse\"
890
+ data-target=\"#panelCollapseTOU\" class=\"panel-heading text-info\">\n Dataset
891
+ Terms  <span class=\"glyphicon glyphicon-chevron-up\"></span>\n </div>\n
892
+ \ <div id=\"panelCollapseTOU\" class=\"collapse in\"><div id=\"datasetForm:tabView:touFragment\">\n
893
+ \ <div class=\"panel-body\">\n <div
894
+ class=\"form-group\">\n <label for=\"datasetForm:tabView:metadata_Terms\"
895
+ class=\"col-sm-3 control-label\">\n License/Data
896
+ Use Agreement\n </label>\n <div
897
+ class=\"col-sm-9\">\n <p class=\"help-block\">Our
898
+ <a href=\"https://dataverse.org/best-practices/dataverse-community-norms\"
899
+ title=\"Dataverse Community Norms - Dataverse.org\" target=\"_blank\">Community
900
+ Norms</a> as well as good scientific practices expect that proper credit is
901
+ given via citation. Please use the data citation shown on the dataset page.\n
902
+ \ </p>\n <p>\n
903
+ \ <img src=\"https://licensebuttons.net/p/zero/1.0/88x31.png\"
904
+ title=\"Creative Commons CC0 1.0 Universal Public Domain Dedication. \" style=\"display:none\"
905
+ onload=\"this.style.display='inline'\" />\n <a
906
+ href=\"http://creativecommons.org/publicdomain/zero/1.0\" title=\"Creative
907
+ Commons CC0 1.0 Universal Public Domain Dedication. \" target=\"_blank\">CC0
908
+ 1.0</a>\n </p>\n </div>\n
909
+ \ </div>\n \n </div></div>\n
910
+ \ </div>\n </div> \n </div></div><div id=\"datasetForm:tabView:versionsTab\"
911
+ class=\"ui-tabs-panel ui-widget-content ui-corner-bottom ui-helper-hidden\"
912
+ role=\"tabpanel\" aria-hidden=\"true\" data-index=\"3\">\n\n <script>\n
913
+ \ //<![CDATA[\n // Version tab: Retrieve data after page load\n
914
+ \ $(document).ready(function () {\n preload_message = \"(Loading
915
+ versions...)\";\n $('#datasetForm\\\\:tabView\\\\:versionsTable_data
916
+ tr.ui-datatable-empty-message td').text(preload_message);\n postLoadVersionTabList();\n
917
+ \ });\n //]]>\n </script><script id=\"datasetForm:tabView:j_idt1898\"
918
+ type=\"text/javascript\">postLoadVersionTabList = function() {return PrimeFaces.ab({s:\"datasetForm:tabView:j_idt1898\",f:\"datasetForm\",p:\"datasetForm:tabView:j_idt1898\",u:\"datasetForm:tabView:versionsTable\",pa:arguments[0]});}</script>\n
919
+ \ <div class=\"text-right margin-bottom\"><button id=\"datasetForm:tabView:compareVersions\"
920
+ name=\"datasetForm:tabView:compareVersions\" class=\"ui-button ui-widget ui-state-default
921
+ ui-corner-all ui-button-text-only\" onclick=\"PrimeFaces.ab({s:&quot;datasetForm:tabView:compareVersions&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm&quot;,onco:function(xhr,status,args,data){PF('detailsBlocks').show();post_differences();;}});return
922
+ false;\" style=\"display:none\" type=\"submit\"><span class=\"ui-button-text
923
+ ui-c\">Direct</span></button><script id=\"datasetForm:tabView:compareVersions_s\"
924
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_tabView_compareVersions\",{id:\"datasetForm:tabView:compareVersions\"});});</script>\n
925
+ \ </div><div id=\"datasetForm:tabView:versionsTable\" class=\"ui-datatable
926
+ ui-widget\"><div class=\"ui-datatable-tablewrapper\"><table role=\"grid\"><thead
927
+ id=\"datasetForm:tabView:versionsTable_head\"><tr role=\"row\"><th id=\"datasetForm:tabView:versionsTable:j_idt1904\"
928
+ class=\"ui-state-default col-sm-1 text-center\" role=\"columnheader\" aria-label=\"Dataset
929
+ Version\" scope=\"col\"><span class=\"ui-column-title\">Dataset Version</span></th><th
930
+ id=\"datasetForm:tabView:versionsTable:j_idt1916\" class=\"ui-state-default\"
931
+ role=\"columnheader\" aria-label=\"Summary\" scope=\"col\"><span class=\"ui-column-title\">Summary</span></th><th
932
+ id=\"datasetForm:tabView:versionsTable:j_idt1958\" class=\"ui-state-default
933
+ col-sm-2\" role=\"columnheader\" aria-label=\"Contributors\" scope=\"col\"><span
934
+ class=\"ui-column-title\">Contributors</span></th><th id=\"datasetForm:tabView:versionsTable:j_idt1963\"
935
+ class=\"ui-state-default col-sm-2\" role=\"columnheader\" aria-label=\"Published
936
+ on\" scope=\"col\"><span class=\"ui-column-title\">Published on</span></th></tr></thead><tbody
937
+ id=\"datasetForm:tabView:versionsTable_data\" class=\"ui-datatable-data ui-widget-content\"><tr
938
+ class=\"ui-widget-content ui-datatable-empty-message\"><td colspan=\"4\">No
939
+ records found.</td></tr></tbody></table></div></div><script id=\"datasetForm:tabView:versionsTable_s\"
940
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"DataTable\",\"versionsTable\",{id:\"datasetForm:tabView:versionsTable\",groupColumnIndexes:[],disableContextMenuIfEmpty:false});});</script></div></div><input
941
+ id=\"datasetForm:tabView_activeIndex\" name=\"datasetForm:tabView_activeIndex\"
942
+ type=\"hidden\" autocomplete=\"off\" aria-hidden=\"true\" value=\"0\" /></div><script
943
+ id=\"datasetForm:tabView_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"TabView\",\"content\",{id:\"datasetForm:tabView\",effectDuration:\"normal\",scrollable:false,behaviors:{tabChange:function(ext,event)
944
+ {PrimeFaces.ab({s:\"datasetForm:tabView\",e:\"tabChange\",f:\"datasetForm\",p:\"datasetForm:tabView\",u:\"datasetForm:tabView\"},ext);}}});});</script></div><div
945
+ id=\"datasetForm:j_idt1981\" class=\"ui-blockui-content ui-widget ui-widget-content
946
+ ui-corner-all ui-helper-hidden ui-shadow\"></div><script id=\"datasetForm:j_idt1981_s\"
947
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"BlockUI\",\"blockDatasetForm\",{id:\"datasetForm:j_idt1981\",block:\"datasetForm\"});});</script><div
948
+ id=\"datasetForm:fileAlreadyDeletedPrevious\" class=\"ui-dialog ui-widget
949
+ ui-widget-content ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div
950
+ class=\"ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top\"><span
951
+ id=\"datasetForm:fileAlreadyDeletedPrevious_title\" class=\"ui-dialog-title\">Edit
952
+ File</span><a href=\"#\" class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close
953
+ ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon ui-icon-closethick\"></span></a></div><div
954
+ class=\"ui-dialog-content ui-widget-content\" id=\"datasetForm:fileAlreadyDeletedPrevious_content\">\n
955
+ \ <p class=\"text-danger\"><span class=\"glyphicon glyphicon-exclamation-sign\"></span>
956
+ This file has already been deleted (or replaced) in the current version. It
957
+ may not be edited.</p>\n <div class=\"button-block\">\n <button
958
+ class=\"btn btn-default\" onclick=\"PF('fileAlreadyDeletedPrevious').hide();\"
959
+ type=\"button\">\n Close\n </button>\n </div></div></div><script
960
+ id=\"datasetForm:fileAlreadyDeletedPrevious_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"fileAlreadyDeletedPrevious\",{id:\"datasetForm:fileAlreadyDeletedPrevious\",modal:true});});</script><div
961
+ id=\"datasetForm:accessPopup\" class=\"ui-dialog ui-widget ui-widget-content
962
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
963
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:accessPopup_title\"
964
+ class=\"ui-dialog-title\">Restrict Access</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
965
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
966
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
967
+ id=\"datasetForm:accessPopup_content\"><span id=\"datasetForm:j_idt1983\"></span><script
968
+ type=\"text/javascript\">$(function(){PrimeFaces.focus(null, 'datasetForm:accessPopup');});</script>\n
969
+ \ <p class=\"help-block\"><span class=\"text-muted\">Restricting limits
970
+ access to published files. People who want to use the restricted files can
971
+ request access by default. </span><span style=\"font-weight:bold\">If you
972
+ disable request access, you must add information about access to the Terms
973
+ of Access field.</span>\n <p></p><span class=\"text-muted\">Learn
974
+ about restricting files and dataset access in the <a href=\"https://guides.dataverse.org/en/5.13/user/dataset-management.html#restricted-files-terms-of-access\"
975
+ title=\"Dataverse User Guide\" target=\"_blank\">User Guide</a>.</span>\n
976
+ \ </p><div id=\"datasetForm:j_idt1992\"><input id=\"datasetForm:termsofAccessHidden\"
977
+ type=\"hidden\" name=\"datasetForm:termsofAccessHidden\" /><input id=\"datasetForm:fileAccessRequestHidden\"
978
+ type=\"hidden\" name=\"datasetForm:fileAccessRequestHidden\" value=\"false\"
979
+ /></div>\n <div class=\"form-horizontal\">\n <div class=\"form-group\">\n
980
+ \ <label for=\"datasetForm:requestAccess2\" class=\"col-sm-3
981
+ control-label\">\n Request Access\n <span
982
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
983
+ data-placement=\"auto right\" data-original-title=\"If checked, users can
984
+ request access to the restricted files in this dataset.\"></span>\n </label>\n
985
+ \ <div class=\"col-sm-9\"><div id=\"datasetForm:requestAccess2\"
986
+ class=\"ui-selectbooleancheckbox ui-chkbox ui-widget\"><div class=\"ui-helper-hidden-accessible\"><input
987
+ id=\"datasetForm:requestAccess2_input\" name=\"datasetForm:requestAccess2_input\"
988
+ type=\"checkbox\" autocomplete=\"off\" aria-label=\"Enable access request\"
989
+ aria-checked=\"false\" onchange=\"PrimeFaces.ab({s:&quot;datasetForm:requestAccess2&quot;,e:&quot;change&quot;,f:&quot;datasetForm&quot;,p:&quot;datasetForm:requestAccess2&quot;,u:&quot;datasetForm:restrictFileButton&quot;});\"
990
+ /></div><div class=\"ui-chkbox-box ui-widget ui-corner-all ui-state-default\"><span
991
+ class=\"ui-chkbox-icon ui-icon ui-icon-blank ui-c\"></span></div><span class=\"ui-chkbox-label\">Enable
992
+ access request</span></div><script id=\"datasetForm:requestAccess2_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"SelectBooleanCheckbox\",\"inputfar\",{id:\"datasetForm:requestAccess2\"});});</script>\n
993
+ \ </div>\n </div><div id=\"datasetForm:popupWarning\"><div
994
+ aria-live=\"polite\" class=\"ui-message ui-message-error ui-widget ui-corner-all\">\n
995
+ \ <span class=\"ui-message-error-detail\">You must
996
+ enable request access or add terms of access to restrict file access.</span></div></div>\n
997
+ \ <div class=\"form-group\">\n <label for=\"termsAccessInput\"
998
+ class=\"col-sm-3 control-label\">\n Terms of Access for
999
+ Restricted Files\n <span class=\"glyphicon glyphicon-question-sign
1000
+ tooltip-icon\" data-toggle=\"tooltip\" data-placement=\"auto right\" data-original-title=\"Information
1001
+ on how and if users can access restricted files in this Dataset\"></span>\n
1002
+ \ </label>\n <div class=\"col-sm-9\"><textarea
1003
+ id=\"datasetForm:termsAccessInput\" name=\"datasetForm:termsAccessInput\"
1004
+ class=\"ui-inputfield ui-inputtextarea ui-widget ui-state-default ui-corner-all
1005
+ form-control\" cols=\"20\" rows=\"5\" maxlength=\"2147483647\" onkeyup=\"PrimeFaces.ab({s:&quot;datasetForm:termsAccessInput&quot;,e:&quot;keyup&quot;,f:&quot;datasetForm&quot;,p:&quot;datasetForm:termsAccessInput&quot;,u:&quot;datasetForm:restrictFileButton&quot;});\"></textarea><script
1006
+ id=\"datasetForm:termsAccessInput_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"InputTextarea\",\"inputtoa\",{id:\"datasetForm:termsAccessInput\",autoResize:false,behaviors:{}});});</script>
1007
+ \n </div>\n </div>\n </div>\n\n <div
1008
+ class=\"button-block\"><a id=\"datasetForm:restrictFileButton\" href=\"#\"
1009
+ class=\"ui-commandlink ui-widget btn btn-default\" onclick=\"testTOA();;PrimeFaces.ab({s:&quot;datasetForm:restrictFileButton&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm:popupWarning&quot;});return
1010
+ false;\">Save Changes</a>\n <button class=\"btn btn-link\" onclick=\"PF('accessPopup').hide();PF('blockDatasetForm').hide();\"
1011
+ type=\"button\">\n Cancel\n </button> \n\n </div></div></div><script
1012
+ id=\"datasetForm:accessPopup_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"accessPopup\",{id:\"datasetForm:accessPopup\",modal:true,width:\"700px\",height:\"350px\"});});</script><div
1013
+ id=\"datasetForm:fileEmbargoPopup\" class=\"ui-dialog ui-widget ui-widget-content
1014
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1015
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:fileEmbargoPopup_title\"
1016
+ class=\"ui-dialog-title\">Edit Embargo</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1017
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1018
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1019
+ id=\"datasetForm:fileEmbargoPopup_content\"><span id=\"datasetForm:j_idt2000\"></span><script
1020
+ type=\"text/javascript\">$(function(){PrimeFaces.focus('datasetForm:fileEmbargoDate');});</script><p
1021
+ class=\"text-danger embargo\"><span class=\"glyphicon glyphicon-exclamation-sign\"></span>The
1022
+ selected file or files have already been published. Contact an administrator
1023
+ to change the embargo date or reason of the file or files.</p><span id=\"datasetForm:embargoInputs\">\n
1024
+ \ <div class=\"embargo\">\n </div>\n <div
1025
+ class=\"embargo\">\n </div></span>\n <div class=\"button-block\"><button
1026
+ id=\"datasetForm:fileEmbargoPopupCancelButton\" name=\"datasetForm:fileEmbargoPopupCancelButton\"
1027
+ class=\"ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only
1028
+ btn btn-link\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('fileEmbargoPopup').hide();
1029
+ \ PF('blockDatasetForm').hide();},function(event){PrimeFaces.ab({s:&quot;datasetForm:fileEmbargoPopupCancelButton&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm:embargoInputs&quot;});return
1030
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Cancel</span></button><script
1031
+ id=\"datasetForm:fileEmbargoPopupCancelButton_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_fileEmbargoPopupCancelButton\",{id:\"datasetForm:fileEmbargoPopupCancelButton\"});});</script>\n
1032
+ \ </div></div></div><script id=\"datasetForm:fileEmbargoPopup_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"fileEmbargoPopup\",{id:\"datasetForm:fileEmbargoPopup\",resizable:false,modal:true});});</script><div
1033
+ id=\"datasetForm:deleteFileConfirm\" class=\"ui-dialog ui-widget ui-widget-content
1034
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1035
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:deleteFileConfirm_title\"
1036
+ class=\"ui-dialog-title\">Delete Files</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1037
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1038
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1039
+ id=\"datasetForm:deleteFileConfirm_content\">\n <p class=\"text-warning\"><span
1040
+ class=\"glyphicon glyphicon-warning-sign\"></span> The file will be deleted
1041
+ after you click on the Delete button.</p>\n <p class=\"text-warning\"><span
1042
+ class=\"glyphicon glyphicon-warning-sign\"></span> Files will not be removed
1043
+ from previously published versions of the dataset.</p>\n <div class=\"button-block\"><button
1044
+ id=\"datasetForm:j_idt2031\" name=\"datasetForm:j_idt2031\" class=\"ui-button
1045
+ ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-default\"
1046
+ onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('deleteFileConfirmation').hide()},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2031&quot;,f:&quot;datasetForm&quot;});return
1047
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Delete</span></button><script
1048
+ id=\"datasetForm:j_idt2031_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2031\",{id:\"datasetForm:j_idt2031\"});});</script>\n
1049
+ \ <button class=\"btn btn-link\" onclick=\"PF('deleteFileConfirmation').hide()\"
1050
+ type=\"button\">\n Cancel\n </button>\n </div></div></div><script
1051
+ id=\"datasetForm:deleteFileConfirm_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"deleteFileConfirmation\",{id:\"datasetForm:deleteFileConfirm\",modal:true});});</script><div
1052
+ id=\"datasetForm:configureToolPopup\" class=\"ui-dialog ui-widget ui-widget-content
1053
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1054
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:configureToolPopup_title\"
1055
+ class=\"ui-dialog-title\"></span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1056
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1057
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1058
+ id=\"datasetForm:configureToolPopup_content\">\n\n <p class=\"help-block\"><span
1059
+ class=\"text-left\"> <br/></span>\n </p>\n \n <div class=\"button-block\"><button
1060
+ id=\"datasetForm:j_idt2036\" name=\"datasetForm:j_idt2036\" class=\"ui-button
1061
+ ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-default\"
1062
+ onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('configureToolPopup').hide();},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2036&quot;,f:&quot;datasetForm&quot;,u:&quot;messagePanel&quot;});return
1063
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Continue</span></button><script
1064
+ id=\"datasetForm:j_idt2036_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2036\",{id:\"datasetForm:j_idt2036\"});});</script>\n
1065
+ \ <button class=\"btn btn-link\" onclick=\"PF('configureToolPopup').hide();PF('blockDatasetForm').hide();\"
1066
+ type=\"button\">\n Cancel\n </button>\n </div></div></div><script
1067
+ id=\"datasetForm:configureToolPopup_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"configureToolPopup\",{id:\"datasetForm:configureToolPopup\",modal:true});});</script><div
1068
+ id=\"datasetForm:selectFiles\" class=\"ui-dialog ui-widget ui-widget-content
1069
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1070
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:selectFiles_title\"
1071
+ class=\"ui-dialog-title\">Select File(s)</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1072
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1073
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1074
+ id=\"datasetForm:selectFiles_content\">\n <p class=\"text-danger\"><span
1075
+ class=\"glyphicon glyphicon-exclamation-sign\"></span> Please select one or
1076
+ more files.</p>\n <div class=\"button-block\">\n <button
1077
+ class=\"btn btn-default\" onclick=\"PF('selectFiles').hide();\" type=\"button\">\n
1078
+ \ Close\n </button>\n </div></div></div><script
1079
+ id=\"datasetForm:selectFiles_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"selectFiles\",{id:\"datasetForm:selectFiles\",modal:true});});</script><script
1080
+ id=\"datasetForm:j_idt2039\" type=\"text/javascript\">restrictFileCommand
1081
+ = function() {return PrimeFaces.ab({s:\"datasetForm:j_idt2039\",f:\"datasetForm\",u:\"messagePanel\",pa:arguments[0]});}</script>\n
1082
+ \ <script>\n //<![CDATA[\n function testTOA() {\n
1083
+ \ var termsofAccessHidden, fileAccessRequestHidden;\n try{\n
1084
+ \ termsofAccessHidden = document.getElementById(\"datasetForm:termsofAccessHidden\").value;\n
1085
+ \ fileAccessRequestHidden = document.getElementById(\"datasetForm:fileAccessRequestHidden\").value;
1086
+ \ \n }
1087
+ catch (error){\n termsofAccessHidden = document.getElementById(\"fileForm:termsofAccessHidden\").value;\n
1088
+ \ fileAccessRequestHidden = document.getElementById(\"fileForm:fileAccessRequestHidden\").value;\n
1089
+ \ }\n if (fileAccessRequestHidden
1090
+ === 'false' && termsofAccessHidden === '') {\n //Not
1091
+ compliant show error keep popup open...\n } else {\n
1092
+ \ PF('accessPopup').hide();\n restrictFileCommand();\n
1093
+ \ }\n } \n //]]>\n
1094
+ \ </script><div id=\"datasetForm:shareDialog\" class=\"ui-dialog ui-widget
1095
+ ui-widget-content ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1096
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:shareDialog_title\"
1097
+ class=\"ui-dialog-title\">Share Dataset</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1098
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1099
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1100
+ id=\"datasetForm:shareDialog_content\">\n <p class=\"help-block\">Share
1101
+ this dataset on your favorite social media networks.</p>\n <div
1102
+ id=\"sharrre-widget\" data-url=\"https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/NJ7XSO\"
1103
+ data-text=\"View this dataset.\"></div>\n <div class=\"button-block\">\n
1104
+ \ <button class=\"btn btn-default\" onclick=\"PF('shareDialog').hide()\"
1105
+ type=\"button\">\n Close\n </button>\n
1106
+ \ </div></div></div><script id=\"datasetForm:shareDialog_s\"
1107
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"shareDialog\",{id:\"datasetForm:shareDialog\",modal:true});});</script><div
1108
+ id=\"datasetForm:citationsDialog\" class=\"ui-dialog ui-widget ui-widget-content
1109
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1110
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:citationsDialog_title\"
1111
+ class=\"ui-dialog-title\">Dataset Citations</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1112
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1113
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1114
+ id=\"datasetForm:citationsDialog_content\">\n <p class=\"help-block\">Citations
1115
+ for this dataset are retrieved from Crossref via DataCite using Make Data
1116
+ Count standards. For more information about dataset metrics, please refer
1117
+ to the <a href=\"https://guides.dataverse.org/en/5.13/user/dataset-management.html#dataset-metrics-and-make-data-count\"
1118
+ title=\"Dataset Metrics and Make Data Count - Dataverse User Guide\" target=\"_blank\">User
1119
+ Guide</a>.\n </p>\n <div id=\"citations-list-block\"><div>\n
1120
+ \ Sorry, no citations were found.\n </div>\n
1121
+ \ </div>\n <div class=\"button-block\">\n
1122
+ \ <button class=\"btn btn-default\" onclick=\"PF('citationsDialog').hide()\"
1123
+ type=\"button\">\n Close\n </button>\n
1124
+ \ </div></div></div><script id=\"datasetForm:citationsDialog_s\"
1125
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"citationsDialog\",{id:\"datasetForm:citationsDialog\",modal:true});});</script><div
1126
+ id=\"datasetForm:downloadInvalid\" class=\"ui-dialog ui-widget ui-widget-content
1127
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1128
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:downloadInvalid_title\"
1129
+ class=\"ui-dialog-title\">Restricted Files Selected</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1130
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1131
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1132
+ id=\"datasetForm:downloadInvalid_content\">\n <p class=\"text-danger\"><span
1133
+ class=\"glyphicon glyphicon-exclamation-sign\"></span> The selected file(s)
1134
+ may not be downloaded because you have not been granted access.</p>\n <div
1135
+ class=\"button-block\">\n <button class=\"btn btn-default\"
1136
+ onclick=\"PF('downloadInvalid').hide();\" type=\"button\">\n Close\n
1137
+ \ </button>\n </div></div></div><script
1138
+ id=\"datasetForm:downloadInvalid_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"downloadInvalid\",{id:\"datasetForm:downloadInvalid\",modal:true});});</script><div
1139
+ id=\"datasetForm:downloadTooLarge\" class=\"ui-dialog ui-widget ui-widget-content
1140
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1141
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:downloadTooLarge_title\"
1142
+ class=\"ui-dialog-title\">Download Options</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1143
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1144
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1145
+ id=\"datasetForm:downloadTooLarge_content\">\n <p class=\"text-danger\"><span
1146
+ class=\"glyphicon glyphicon-exclamation-sign\"></span> The files selected
1147
+ are too large to download as a ZIP.</p>\n \n <p class=\"help-block\">You
1148
+ can select individual files that are below the 20.0 GB download limit from
1149
+ the files table, or use the <a href=\"https://guides.dataverse.org/en/5.13/api/dataaccess.html\"
1150
+ title=\"Data Access API\" target=\"_blank\">Data Access API</a> for programmatic
1151
+ access to the files.\n </p></div></div><script id=\"datasetForm:downloadTooLarge_s\"
1152
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"downloadTooLarge\",{id:\"datasetForm:downloadTooLarge\",modal:true});});</script><div
1153
+ id=\"datasetForm:selectFilesForDownload\" class=\"ui-dialog ui-widget ui-widget-content
1154
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1155
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:selectFilesForDownload_title\"
1156
+ class=\"ui-dialog-title\">Select File(s)</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1157
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1158
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1159
+ id=\"datasetForm:selectFilesForDownload_content\">\n <p
1160
+ class=\"text-danger\"><span class=\"glyphicon glyphicon-exclamation-sign\"></span>
1161
+ Please select a file or files to be downloaded.</p>\n <div
1162
+ class=\"button-block\">\n <button class=\"btn btn-default\"
1163
+ onclick=\"PF('selectFilesForDownload').hide();PF('blockDatasetForm').hide();\"
1164
+ type=\"button\">\n Close\n </button>\n
1165
+ \ </div></div></div><script id=\"datasetForm:selectFilesForDownload_s\"
1166
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"selectFilesForDownload\",{id:\"datasetForm:selectFilesForDownload\",modal:true});});</script><div
1167
+ id=\"datasetForm:downloadMixed\" class=\"ui-dialog ui-widget ui-widget-content
1168
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1169
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:downloadMixed_title\"
1170
+ class=\"ui-dialog-title\">Restricted Files Selected</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1171
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1172
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1173
+ id=\"datasetForm:downloadMixed_content\">\n <p class=\"text-danger\"><span
1174
+ class=\"glyphicon glyphicon-exclamation-sign\"></span> The restricted file(s)
1175
+ selected may not be downloaded because you have not been granted access.</p>\n
1176
+ \ <table>\n </table>\n <div
1177
+ class=\"button-block\">\n <p class=\"help-block\">Click
1178
+ Continue to download the files you have access to download.</p><button id=\"datasetForm:j_idt2070\"
1179
+ name=\"datasetForm:j_idt2070\" class=\"ui-button ui-widget ui-state-default
1180
+ ui-corner-all ui-button-text-only btn btn-default\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('downloadMixed').hide()},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2070&quot;,f:&quot;datasetForm&quot;});return
1181
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Continue</span></button><script
1182
+ id=\"datasetForm:j_idt2070_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2070\",{id:\"datasetForm:j_idt2070\"});});</script>\n
1183
+ \ <button class=\"btn btn-link\" onclick=\"PF('downloadMixed').hide();\"
1184
+ type=\"button\">\n Cancel\n </button>\n
1185
+ \ </div></div></div><script id=\"datasetForm:downloadMixed_s\"
1186
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"downloadMixed\",{id:\"datasetForm:downloadMixed\",modal:true});});</script><div
1187
+ id=\"datasetForm:deleteConfirmation\" class=\"ui-dialog ui-widget ui-widget-content
1188
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1189
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:deleteConfirmation_title\"
1190
+ class=\"ui-dialog-title\">Delete Dataset</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1191
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1192
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1193
+ id=\"datasetForm:deleteConfirmation_content\">\n <p
1194
+ class=\"text-warning\"><span class=\"glyphicon glyphicon-warning-sign\"></span>
1195
+ Are you sure you want to delete this dataset and all of its files? You cannot
1196
+ undelete this dataset.</p>\n <div class=\"button-block\"><button
1197
+ id=\"datasetForm:j_idt2074\" name=\"datasetForm:j_idt2074\" class=\"ui-button
1198
+ ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-default\"
1199
+ onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('deleteConfirmation').hide()},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2074&quot;,f:&quot;datasetForm&quot;});return
1200
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Continue</span></button><script
1201
+ id=\"datasetForm:j_idt2074_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2074\",{id:\"datasetForm:j_idt2074\"});});</script>\n
1202
+ \ <button class=\"btn btn-link\" onclick=\"PF('deleteConfirmation').hide();PF('blockDatasetForm').hide();\"
1203
+ type=\"button\">\n Cancel\n </button>\n
1204
+ \ </div></div></div><script id=\"datasetForm:deleteConfirmation_s\"
1205
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"deleteConfirmation\",{id:\"datasetForm:deleteConfirmation\",modal:true});});</script><div
1206
+ id=\"datasetForm:deleteVersionConfirmation\" class=\"ui-dialog ui-widget ui-widget-content
1207
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1208
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:deleteVersionConfirmation_title\"
1209
+ class=\"ui-dialog-title\">Delete Draft Version</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1210
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1211
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1212
+ id=\"datasetForm:deleteVersionConfirmation_content\">\n <p
1213
+ class=\"text-warning\"><span class=\"glyphicon glyphicon-warning-sign\"></span>
1214
+ Are you sure you want to delete this draft version? Files will be reverted
1215
+ to the most recently published version. You cannot undelete this draft.</p>\n
1216
+ \ <div class=\"button-block\"><button id=\"datasetForm:j_idt2077\"
1217
+ name=\"datasetForm:j_idt2077\" class=\"ui-button ui-widget ui-state-default
1218
+ ui-corner-all ui-button-text-only btn btn-default\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('deleteVersionConfirmation').hide()},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2077&quot;,f:&quot;datasetForm&quot;});return
1219
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Continue</span></button><script
1220
+ id=\"datasetForm:j_idt2077_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2077\",{id:\"datasetForm:j_idt2077\"});});</script>\n
1221
+ \ <button class=\"btn btn-link\" onclick=\"PF('deleteVersionConfirmation').hide();PF('blockDatasetForm').hide();\"
1222
+ type=\"button\">\n Cancel\n </button>\n
1223
+ \ </div></div></div><script id=\"datasetForm:deleteVersionConfirmation_s\"
1224
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"deleteVersionConfirmation\",{id:\"datasetForm:deleteVersionConfirmation\",modal:true});});</script><div
1225
+ id=\"datasetForm:privateUrlId\" class=\"ui-dialog ui-widget ui-widget-content
1226
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1227
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:privateUrlId_title\"
1228
+ class=\"ui-dialog-title\">Unpublished Dataset Private URL</span><a href=\"#\"
1229
+ class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span
1230
+ class=\"ui-icon ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content
1231
+ ui-widget-content\" id=\"datasetForm:privateUrlId_content\"><div id=\"datasetForm:privateUrlPanelCannotCreate\">\n
1232
+ \ <p class=\"text-danger\"><span class=\"glyphicon
1233
+ glyphicon-exclamation-sign\"></span> Private URL can only be used with unpublished
1234
+ versions of datasets.</p>\n <div class=\"button-block\">\n
1235
+ \ <button class=\"btn btn-link\" onclick=\"PF('privateUrlConfirmation').hide();PF('blockDatasetForm').hide();\"
1236
+ type=\"button\">\n Cancel\n </button>\n
1237
+ \ </div></div></div></div><script id=\"datasetForm:privateUrlId_s\"
1238
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"privateUrlConfirmation\",{id:\"datasetForm:privateUrlId\",modal:true});});</script><div
1239
+ id=\"datasetForm:disablePrivateUrlConfirmation\" class=\"ui-dialog ui-widget
1240
+ ui-widget-content ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div
1241
+ class=\"ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top\"><span
1242
+ id=\"datasetForm:disablePrivateUrlConfirmation_title\" class=\"ui-dialog-title\">Unpublished
1243
+ Dataset Private URL</span></div><div class=\"ui-dialog-content ui-widget-content\"
1244
+ id=\"datasetForm:disablePrivateUrlConfirmation_content\">\n <p
1245
+ class=\"text-warning\"><span class=\"glyphicon glyphicon-warning-sign\"></span>
1246
+ Are you sure you want to disable the Private URL? If you have shared the Private
1247
+ URL with others they will no longer be able to use it to access your unpublished
1248
+ dataset.</p>\n <div class=\"button-block\"><button
1249
+ id=\"datasetForm:j_idt2101\" name=\"datasetForm:j_idt2101\" class=\"ui-button
1250
+ ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-default\"
1251
+ onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('disablePrivateUrlConfirmation').hide();},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2101&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm:privateUrlPanel
1252
+ messagePanel&quot;});return false;}]);\" type=\"submit\"><span class=\"ui-button-text
1253
+ ui-c\">Yes, Disable Private URL</span></button><script id=\"datasetForm:j_idt2101_s\"
1254
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2101\",{id:\"datasetForm:j_idt2101\"});});</script>\n
1255
+ \ <button class=\"btn btn-link\" onclick=\"PF('disablePrivateUrlConfirmation').hide();PF('privateUrlConfirmation').show();\"
1256
+ type=\"button\">\n Cancel\n </button>\n
1257
+ \ </div></div></div><script id=\"datasetForm:disablePrivateUrlConfirmation_s\"
1258
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"disablePrivateUrlConfirmation\",{id:\"datasetForm:disablePrivateUrlConfirmation\",modal:true});});</script><div
1259
+ id=\"datasetForm:deleteSelectedFileConfirmation\" class=\"ui-dialog ui-widget
1260
+ ui-widget-content ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div
1261
+ class=\"ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top\"><span
1262
+ id=\"datasetForm:deleteSelectedFileConfirmation_title\" class=\"ui-dialog-title\">Delete
1263
+ Files</span><a href=\"#\" class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close
1264
+ ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon ui-icon-closethick\"></span></a></div><div
1265
+ class=\"ui-dialog-content ui-widget-content\" id=\"datasetForm:deleteSelectedFileConfirmation_content\">\n
1266
+ \ <p class=\"text-warning\"><span class=\"glyphicon
1267
+ glyphicon-warning-sign\"></span> The file(s) will be deleted after you click
1268
+ on the Delete button.</p>\n <p class=\"text-warning\"><span
1269
+ class=\"glyphicon glyphicon-warning-sign\"></span> Files will not be removed
1270
+ from previously published versions of the dataset.</p>\n <div
1271
+ class=\"button-block\"><button id=\"datasetForm:j_idt2107\" name=\"datasetForm:j_idt2107\"
1272
+ class=\"ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only
1273
+ btn btn-default\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('deleteSelectedFileConfirmation').hide()},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2107&quot;,f:&quot;datasetForm&quot;});return
1274
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Delete</span></button><script
1275
+ id=\"datasetForm:j_idt2107_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2107\",{id:\"datasetForm:j_idt2107\"});});</script>\n
1276
+ \ <button class=\"btn btn-link\" onclick=\"PF('deleteSelectedFileConfirmation').hide();PF('blockDatasetForm').hide();\"
1277
+ type=\"button\">\n Cancel\n </button>\n
1278
+ \ </div></div></div><script id=\"datasetForm:deleteSelectedFileConfirmation_s\"
1279
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"deleteSelectedFileConfirmation\",{id:\"datasetForm:deleteSelectedFileConfirmation\",modal:true});});</script><div
1280
+ id=\"datasetForm:computeInvalid\" class=\"ui-dialog ui-widget ui-widget-content
1281
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1282
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:computeInvalid_title\"
1283
+ class=\"ui-dialog-title\">Compute</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1284
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1285
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1286
+ id=\"datasetForm:computeInvalid_content\">\n <p class=\"text-danger\"><span
1287
+ class=\"glyphicon glyphicon-exclamation-sign\"></span> This dataset contains
1288
+ restricted files you may not compute on because you have not been granted
1289
+ access.</p>\n <div class=\"button-block\">\n <button
1290
+ class=\"btn btn-default\" onclick=\"PF('computeInvalid').hide();\" type=\"button\">\n
1291
+ \ Close\n </button>\n
1292
+ \ </div></div></div><script id=\"datasetForm:computeInvalid_s\"
1293
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"computeInvalid\",{id:\"datasetForm:computeInvalid\",modal:true});});</script><div
1294
+ id=\"datasetForm:j_idt2110\"><div id=\"datasetForm:j_idt2111\" class=\"ui-outputpanel
1295
+ ui-widget\"></div></div><div id=\"datasetForm:deaccessionConfirmation\" class=\"ui-dialog
1296
+ ui-widget ui-widget-content ui-corner-all ui-shadow ui-hidden-container\"><div
1297
+ class=\"ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top\"><span
1298
+ id=\"datasetForm:deaccessionConfirmation_title\" class=\"ui-dialog-title\">Deaccession
1299
+ Dataset</span><a href=\"#\" class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close
1300
+ ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon ui-icon-closethick\"></span></a></div><div
1301
+ class=\"ui-dialog-content ui-widget-content\" id=\"datasetForm:deaccessionConfirmation_content\">\n
1302
+ \ <p class=\"text-warning\"><span class=\"glyphicon
1303
+ glyphicon-warning-sign\"></span> Are you sure you want to deaccession? The
1304
+ selected version(s) will no longer be viewable by the public.</p>\n <div
1305
+ class=\"button-block\"><input type=\"submit\" name=\"datasetForm:j_idt2138\"
1306
+ value=\"Yes\" class=\"btn btn-default\" onclick=\"PF('deaccessionConfirmation').hide();
1307
+ \ PF('deaccessionBlock').hide()\" />\n
1308
+ \ <button class=\"btn btn-link\" onclick=\"PF('deaccessionConfirmation').hide();\"
1309
+ type=\"button\">\n No\n </button>\n
1310
+ \ </div></div></div><script id=\"datasetForm:deaccessionConfirmation_s\"
1311
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"deaccessionConfirmation\",{id:\"datasetForm:deaccessionConfirmation\",modal:true});});</script><div
1312
+ id=\"datasetForm:deaccessionAllConfirmation\" class=\"ui-dialog ui-widget
1313
+ ui-widget-content ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1314
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:deaccessionAllConfirmation_title\"
1315
+ class=\"ui-dialog-title\">Deaccession Dataset</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1316
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1317
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1318
+ id=\"datasetForm:deaccessionAllConfirmation_content\">\n <p
1319
+ class=\"text-warning\"><span class=\"glyphicon glyphicon-warning-sign\"></span>
1320
+ Are you sure you want to deaccession this dataset? It will no longer be viewable
1321
+ by the public.</p>\n <div class=\"button-block\"><input
1322
+ type=\"submit\" name=\"datasetForm:j_idt2141\" value=\"Yes\" class=\"btn btn-default\"
1323
+ onclick=\"PF('deaccessionAllConfirmation').hide();PF('deaccessionBlock').hide();PF('blockDatasetForm').hide();\"
1324
+ />\n <button class=\"btn btn-link\" onclick=\"PF('deaccessionAllConfirmation').hide();PF('blockDatasetForm').hide();\"
1325
+ type=\"button\">\n No\n </button>\n
1326
+ \ </div></div></div><script id=\"datasetForm:deaccessionAllConfirmation_s\"
1327
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"deaccessionAllConfirmation\",{id:\"datasetForm:deaccessionAllConfirmation\",modal:true});});</script><div
1328
+ id=\"datasetForm:compareTwo\" class=\"ui-dialog ui-widget ui-widget-content
1329
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1330
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:compareTwo_title\"
1331
+ class=\"ui-dialog-title\">Version Differences Details</span><a href=\"#\"
1332
+ class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span
1333
+ class=\"ui-icon ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content
1334
+ ui-widget-content\" id=\"datasetForm:compareTwo_content\">\n <p
1335
+ class=\"help-block\"><span class=\"glyphicon glyphicon-exclamation-sign text-danger\"></span>
1336
+ <span class=\"text-danger\">Please select two versions to view the differences.</span></p>\n
1337
+ \ <div class=\"button-block\">\n <button
1338
+ class=\"btn btn-default\" onclick=\"PF('compareTwo').hide();PF('blockDatasetForm').hide();\"
1339
+ type=\"button\">\n Close\n </button>\n
1340
+ \ </div></div></div><script id=\"datasetForm:compareTwo_s\"
1341
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"compareTwo\",{id:\"datasetForm:compareTwo\",modal:true});});</script><div
1342
+ id=\"datasetForm:detailsBlocks\" class=\"ui-dialog ui-widget ui-widget-content
1343
+ ui-corner-all ui-shadow ui-hidden-container largePopUp\"><div class=\"ui-dialog-titlebar
1344
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:detailsBlocks_title\"
1345
+ class=\"ui-dialog-title\">Version Differences Details</span><a href=\"#\"
1346
+ class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span
1347
+ class=\"ui-icon ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content
1348
+ ui-widget-content\" id=\"datasetForm:detailsBlocks_content\">\n <div
1349
+ id=\"version-title\" class=\"margin-bottom-half\"></div>\n <div
1350
+ id=\"version-details-block\" class=\" clearfix margin-bottom-half\">\n <div
1351
+ class=\"pull-left\">\n  \n </div>\n
1352
+ \ <div class=\"pull-left\">\n Version:
1353
+ <br />\n Last Updated: \n </div>\n
1354
+ \ <div class=\"pull-left\">\n Version:
1355
+ <br />\n Last Updated: \n </div>\n
1356
+ \ </div>\n <div class=\"button-block
1357
+ margin-bottom\">\n <button class=\"btn btn-default\"
1358
+ onclick=\"PF('detailsBlocks').hide();PF('blockDatasetForm').hide();\" type=\"button\">\n
1359
+ \ Done\n </button>\n
1360
+ \ </div></div></div><script id=\"datasetForm:detailsBlocks_s\"
1361
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"detailsBlocks\",{id:\"datasetForm:detailsBlocks\",modal:true});});</script><div
1362
+ id=\"datasetForm:selectFilesForRequestAccess\" class=\"ui-dialog ui-widget
1363
+ ui-widget-content ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div
1364
+ class=\"ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top\"><span
1365
+ id=\"datasetForm:selectFilesForRequestAccess_title\" class=\"ui-dialog-title\">Select
1366
+ File(s)</span><a href=\"#\" class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close
1367
+ ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon ui-icon-closethick\"></span></a></div><div
1368
+ class=\"ui-dialog-content ui-widget-content\" id=\"datasetForm:selectFilesForRequestAccess_content\">\n
1369
+ \ <p class=\"text-danger\"><span class=\"glyphicon glyphicon-exclamation-sign\"></span>
1370
+ Please select a file or files for access request.</p>\n <div
1371
+ class=\"button-block\">\n <button class=\"btn btn-default\"
1372
+ onclick=\"PF('selectFilesForRequestAccess').hide();PF('blockDatasetForm').hide();\"
1373
+ type=\"button\">\n Close\n </button>\n
1374
+ \ </div></div></div><script id=\"datasetForm:selectFilesForRequestAccess_s\"
1375
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"selectFilesForRequestAccess\",{id:\"datasetForm:selectFilesForRequestAccess\",modal:true});});</script><div
1376
+ id=\"datasetForm:selectEmbargoedFilesForRequestAccess\" class=\"ui-dialog
1377
+ ui-widget ui-widget-content ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div
1378
+ class=\"ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top\"><span
1379
+ id=\"datasetForm:selectEmbargoedFilesForRequestAccess_title\" class=\"ui-dialog-title\">Select
1380
+ File(s)</span><a href=\"#\" class=\"ui-dialog-titlebar-icon ui-dialog-titlebar-close
1381
+ ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon ui-icon-closethick\"></span></a></div><div
1382
+ class=\"ui-dialog-content ui-widget-content\" id=\"datasetForm:selectEmbargoedFilesForRequestAccess_content\">\n
1383
+ \ <p class=\"text-danger\"><span class=\"glyphicon glyphicon-exclamation-sign\"></span>
1384
+ Embargoed files cannot be accessed. Please select an unembargoed file or files
1385
+ for your access request.</p>\n <div class=\"button-block\">\n
1386
+ \ <button class=\"btn btn-default\" onclick=\"PF('selectEmbargoedFilesForRequestAccess').hide();PF('blockDatasetForm').hide();\"
1387
+ type=\"button\">\n Close\n </button>\n
1388
+ \ </div></div></div><script id=\"datasetForm:selectEmbargoedFilesForRequestAccess_s\"
1389
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"selectEmbargoedFilesForRequestAccess\",{id:\"datasetForm:selectEmbargoedFilesForRequestAccess\",modal:true});});</script><div
1390
+ id=\"datasetForm:fileTagsPopup\" class=\"ui-dialog ui-widget ui-widget-content
1391
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1392
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:fileTagsPopup_title\"
1393
+ class=\"ui-dialog-title\">Edit Tags</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1394
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1395
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1396
+ id=\"datasetForm:fileTagsPopup_content\"><span id=\"datasetForm:j_idt2224\"></span><script
1397
+ type=\"text/javascript\">$(function(){PrimeFaces.focus('datasetForm:fileTagsMenuDS');});</script>\n
1398
+ \ <p class=\"help-block\">Select existing file tags
1399
+ or create new tags to describe your files. Each file can have more than one
1400
+ tag.</p>\n <div class=\"button-block\"><button id=\"datasetForm:fileTagsPopupSaveButton\"
1401
+ name=\"datasetForm:fileTagsPopupSaveButton\" class=\"ui-button ui-widget ui-state-default
1402
+ ui-corner-all ui-button-text-only btn btn-default\" onclick=\"PrimeFaces.ab({s:&quot;datasetForm:fileTagsPopupSaveButton&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm:tabView:filesTable
1403
+ datasetForm&quot;,onco:function(xhr,status,args,data){PF('fileTagsPopup').hide();}});return
1404
+ false;\" type=\"submit\"><span class=\"ui-button-text ui-c\">Save Changes</span></button><script
1405
+ id=\"datasetForm:fileTagsPopupSaveButton_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_fileTagsPopupSaveButton\",{id:\"datasetForm:fileTagsPopupSaveButton\"});});</script><button
1406
+ id=\"datasetForm:fileTagsPopupCancelButton\" name=\"datasetForm:fileTagsPopupCancelButton\"
1407
+ class=\"ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only
1408
+ btn btn-link\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('fileTagsPopup').hide();
1409
+ \ PF('blockDatasetForm').hide();},function(event){PrimeFaces.ab({s:&quot;datasetForm:fileTagsPopupCancelButton&quot;,f:&quot;datasetForm&quot;});return
1410
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Cancel</span></button><script
1411
+ id=\"datasetForm:fileTagsPopupCancelButton_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_fileTagsPopupCancelButton\",{id:\"datasetForm:fileTagsPopupCancelButton\"});});</script>\n
1412
+ \ </div></div></div><script id=\"datasetForm:fileTagsPopup_s\"
1413
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"fileTagsPopup\",{id:\"datasetForm:fileTagsPopup\",modal:true});});</script><div
1414
+ id=\"datasetForm:accessSignUpLogIn\" class=\"ui-dialog ui-widget ui-widget-content
1415
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1416
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:accessSignUpLogIn_title\"
1417
+ class=\"ui-dialog-title\">Request Access</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1418
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1419
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1420
+ id=\"datasetForm:accessSignUpLogIn_content\">\n <p
1421
+ class=\"help-block\">\n <span class=\"glyphicon
1422
+ glyphicon-warning-sign text-danger\"></span> \n <span
1423
+ class=\"text-danger\">You need to <a href=\"/dataverseuser.xhtml?editMode=CREATE&redirectPage=%2Fdataset.xhtml%3FpersistentId%3Ddoi%3A10.7910%2FDVN%2FNJ7XSO\"
1424
+ target=\"_self\" title=\"Sign Up for a Dataverse Account\">Sign Up</a> or
1425
+ <a href=\"/loginpage.xhtml?redirectPage=%2Fdataset.xhtml%3FpersistentId%3Ddoi%3A10.7910%2FDVN%2FNJ7XSO\"
1426
+ target=\"_self\" title=\"Log into your Dataverse Account\">Log In</a> to request
1427
+ access.</span>\n </p>\n <div
1428
+ class=\"button-block\">\n <button class=\"btn btn-default\"
1429
+ onclick=\"PF('accessSignUpLogIn_popup').hide(); PF('blockDatasetForm').hide();\"
1430
+ type=\"button\">\n Close\n </button>\n
1431
+ \ </div></div></div><script id=\"datasetForm:accessSignUpLogIn_s\"
1432
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"accessSignUpLogIn_popup\",{id:\"datasetForm:accessSignUpLogIn\",modal:true});});</script><div
1433
+ id=\"datasetForm:downloadPopup\" class=\"ui-dialog ui-widget ui-widget-content
1434
+ ui-corner-all ui-shadow ui-hidden-container largePopUp\"><div class=\"ui-dialog-titlebar
1435
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:downloadPopup_title\"
1436
+ class=\"ui-dialog-title\">Dataset Terms</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1437
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1438
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1439
+ id=\"datasetForm:downloadPopup_content\"><span id=\"datasetForm:j_idt2256\"></span><script
1440
+ type=\"text/javascript\">$(function(){PrimeFaces.focus(null, 'datasetForm:guestbookUIFragment');});</script>\n
1441
+ \ <p class=\"help-block\">\n This dataset is made available
1442
+ under the following terms. Please confirm and/or complete the information
1443
+ needed below in order to continue.\n </p><div id=\"datasetForm:guestbookMessages\">\n
1444
+ \ <div class=\"container messagePanel\">\n </div></div>\n
1445
+ \ \n <div class=\"form-horizontal terms\">\n \n <div
1446
+ class=\"form-group\"><label for=\"datasetForm:fdLicense\" class=\"col-sm-3
1447
+ control-label\">\n License/Data Use Agreement </label>\n <div
1448
+ class=\"col-sm-9\">\n <p class=\"help-block\">Our <a href=\"https://dataverse.org/best-practices/dataverse-community-norms\"
1449
+ title=\"Dataverse Community Norms - Dataverse.org\" target=\"_blank\">Community
1450
+ Norms</a> as well as good scientific practices expect that proper credit is
1451
+ given via citation. Please use the data citation shown on the dataset page.\n
1452
+ \ </p>\n <p>\n <img src=\"https://licensebuttons.net/p/zero/1.0/88x31.png\"
1453
+ title=\"Creative Commons CC0 1.0 Universal Public Domain Dedication. \" style=\"display:
1454
+ none\" onload=\"this.style.display='inline'\" />\n <a href=\"http://creativecommons.org/publicdomain/zero/1.0\"
1455
+ title=\"Creative Commons CC0 1.0 Universal Public Domain Dedication. \" target=\"_blank\">CC0
1456
+ 1.0\n </a>\n </p>\n </div>\n
1457
+ \ </div>\n </div>\n <div class=\"button-block\"><button
1458
+ id=\"datasetForm:j_idt2358\" name=\"datasetForm:j_idt2358\" class=\"ui-button
1459
+ ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-default\"
1460
+ onclick=\"PrimeFaces.ab({s:&quot;datasetForm:j_idt2358&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm:guestbookUIFragment&quot;,pa:[{name:&quot;DO_GB_VALIDATION_downloadDataset&quot;,value:&quot;true&quot;}]});return
1461
+ false;\" type=\"submit\"><span class=\"ui-button-text ui-c\">Accept</span></button><script
1462
+ id=\"datasetForm:j_idt2358_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2358\",{id:\"datasetForm:j_idt2358\"});});</script><button
1463
+ name=\"datasetForm:j_idt2366\" value=\"\" onclick=\"PF('downloadPopup').hide();PF('blockDatasetForm').hide();\"
1464
+ type=\"button\" class=\"btn btn-link\">\n Cancel\n </button>\n
1465
+ \ </div></div></div><script id=\"datasetForm:downloadPopup_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"downloadPopup\",{id:\"datasetForm:downloadPopup\",modal:true});});</script><div
1466
+ id=\"datasetForm:previewGuestbook\" class=\"ui-dialog ui-widget ui-widget-content
1467
+ ui-corner-all ui-shadow ui-hidden-container largePopUp\"><div class=\"ui-dialog-titlebar
1468
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:previewGuestbook_title\"
1469
+ class=\"ui-dialog-title\">Preview Guestbook</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1470
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1471
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1472
+ id=\"datasetForm:previewGuestbook_content\">\n \n <div class=\"form-horizontal\">\n
1473
+ \ <p class=\"help-block\">\n Upon downloading files
1474
+ the guestbook asks for the following information.\n </p>\n <div
1475
+ class=\"form-group\">\n <label class=\"col-sm-3 control-label\">\n
1476
+ \ Guestbook Name\n </label>\n <div
1477
+ class=\"col-sm-8\">\n <p class=\"form-control-static\">\n
1478
+ \ \n </p>\n </div>\n
1479
+ \ </div>\n <div class=\"form-group\">\n <label
1480
+ class=\"col-sm-3 control-label\">\n Collected Data\n <span
1481
+ class=\"glyphicon glyphicon-question-sign tooltip-icon\" data-toggle=\"tooltip\"
1482
+ data-placement=\"auto right\" data-original-title=\"User data collected by
1483
+ the guestbook.\"></span>\n </label>\n <div class=\"col-sm-8\">\n
1484
+ \ <p class=\"form-control-static\">Account Information\n
1485
+ \ <ul>\n </ul>\n </p>\n
1486
+ \ </div>\n </div>\n </div>\n <div class=\"button-block\">\n
1487
+ \ <button class=\"btn btn-default\" onclick=\"PF('viewGuestbook').hide()\"
1488
+ type=\"button\">\n Close\n </button>\n </div></div></div><script
1489
+ id=\"datasetForm:previewGuestbook_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"viewGuestbook\",{id:\"datasetForm:previewGuestbook\",modal:true});});</script><div
1490
+ id=\"datasetForm:downloadPackagePopup\" class=\"ui-dialog ui-widget ui-widget-content
1491
+ ui-corner-all ui-shadow ui-hidden-container smallPopUp\"><div class=\"ui-dialog-titlebar
1492
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:downloadPackagePopup_title\"
1493
+ class=\"ui-dialog-title\">Package File Download</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1494
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1495
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1496
+ id=\"datasetForm:downloadPackagePopup_content\"><div id=\"datasetForm:packagePopupDownloadInfo\">\n
1497
+ \ <div class=\"col-sm-12\">\n <p class=\"help-block no-margin-top\">Use
1498
+ the Download URL in a Wget command or a download manager to download this
1499
+ package file. Download via web browser is not recommended. <a href=\"https://guides.dataverse.org/en/5.13/user/find-use-data.html#downloading-a-dataverse-package-via-url\"
1500
+ title=\"User Guide - Downloading a Dataverse Package via URL\" target=\"_blank\">User
1501
+ Guide - Downloading a Dataverse Package via URL</a>\n </p>\n </div>\n
1502
+ \ <div class=\"col-sm-12 margin-bottom\">\n </div>\n <div
1503
+ class=\"col-sm-12\">\n <label>Download URL</label> \n <p><code>https://dataverse.harvard.edu/api/access/datafile/</code></p>\n
1504
+ \ </div>\n <div class=\"col-sm-12 button-block margin-top\"><button
1505
+ id=\"datasetForm:downloadPackagePopupCancelButton\" name=\"datasetForm:downloadPackagePopupCancelButton\"
1506
+ class=\"ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only
1507
+ btn btn-default\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('downloadPackagePopup').hide();},function(event){PrimeFaces.ab({s:&quot;datasetForm:downloadPackagePopupCancelButton&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm:downloadPackagePopup&quot;});return
1508
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Close</span></button><script
1509
+ id=\"datasetForm:downloadPackagePopupCancelButton_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_downloadPackagePopupCancelButton\",{id:\"datasetForm:downloadPackagePopupCancelButton\"});});</script>\n
1510
+ \ </div></div></div></div><script id=\"datasetForm:downloadPackagePopup_s\"
1511
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"downloadPackagePopup\",{id:\"datasetForm:downloadPackagePopup\",modal:true});});</script><div
1512
+ id=\"datasetForm:requestAccessPopup\" class=\"ui-dialog ui-widget ui-widget-content
1513
+ ui-corner-all ui-shadow ui-hidden-container largePopUp\"><div class=\"ui-dialog-titlebar
1514
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:requestAccessPopup_title\"
1515
+ class=\"ui-dialog-title\">Request Access</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1516
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1517
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1518
+ id=\"datasetForm:requestAccessPopup_content\">\n <p class=\"help-block\">\n
1519
+ \ Please confirm and/or complete the information needed below in
1520
+ order to request access to files in this dataset.\n </p>\n <div
1521
+ class=\"form-horizontal\">\n </div>\n <div class=\"button-block\"><button
1522
+ id=\"datasetForm:j_idt2473\" name=\"datasetForm:j_idt2473\" class=\"ui-button
1523
+ ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-default\"
1524
+ onclick=\"PrimeFaces.ab({s:&quot;datasetForm:j_idt2473&quot;,f:&quot;datasetForm&quot;,u:&quot;@([id$=requestAccessConsolidated])
1525
+ @([id$=requestPanel]) @([id$=messagePanel]) @([id$=filesTable])&quot;,onco:function(xhr,status,args,data){PF('requestAccessPopup').hide();;}});return
1526
+ false;\" type=\"submit\"><span class=\"ui-button-text ui-c\">Accept</span></button><script
1527
+ id=\"datasetForm:j_idt2473_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2473\",{id:\"datasetForm:j_idt2473\"});});</script>\n
1528
+ \ <button class=\"btn btn-link\" onclick=\"PF('requestAccessPopup').hide();PF('blockDatasetForm').hide();\"
1529
+ type=\"button\">\n Cancel\n </button>\n </div></div></div><script
1530
+ id=\"datasetForm:requestAccessPopup_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"requestAccessPopup\",{id:\"datasetForm:requestAccessPopup\",modal:true});});</script><script
1531
+ id=\"datasetForm:j_idt2491\" type=\"text/javascript\">linkDatasetCommand =
1532
+ function() {return PrimeFaces.ab({s:\"datasetForm:j_idt2491\",f:\"datasetForm\",u:\"messagePanel
1533
+ @([id$=Messages])\",onco:function(xhr,status,args,data){PF('linkDatasetForm').hide();;},pa:arguments[0]});}</script><div
1534
+ id=\"datasetForm:computeBatchListPopup\" class=\"ui-dialog ui-widget ui-widget-content
1535
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1536
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:computeBatchListPopup_title\"
1537
+ class=\"ui-dialog-title\">Compute Batch</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1538
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1539
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1540
+ id=\"datasetForm:computeBatchListPopup_content\">\n <div
1541
+ class=\"text-right\">\n <span class=\"glyphicon
1542
+ glyphicon-remove\"></span>Clear Batch<button id=\"datasetForm:j_idt2493\"
1543
+ name=\"datasetForm:j_idt2493\" class=\" btn btn-default\" onclick=\"PrimeFaces.ab({s:&quot;datasetForm:j_idt2493&quot;,f:&quot;datasetForm&quot;,u:&quot;datasetForm
1544
+ messagePanel&quot;});return false;\" type=\"submit\"><span class=\"ui-button-text
1545
+ ui-c\">ui-button</span></button><script id=\"datasetForm:j_idt2493_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2493\",{id:\"datasetForm:j_idt2493\"});});</script>\n
1546
+ \ </div><table id=\"datasetForm:computeBatch\" class=\"table
1547
+ table-striped\">\n<thead>\n<tr>\n<th scope=\"col\">Dataset</th>\n<th scope=\"col\">Persistent
1548
+ Identifier</th>\n<th scope=\"col\">Change Compute Batch</th>\n</tr>\n</thead>\n<tbody>\n<tr><td></td><td></td><td></td></tr></tbody>\n</table>\n\n
1549
+ \ <div class=\"button-block\"><a href=\"https://dataverse.harvard.edu/;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
1550
+ onclick=\"PF('computeBatchListPopup').hide()\" target=\"_blank\" class=\"btn
1551
+ btn-default\">Compute Batch</a>\n <button class=\"btn
1552
+ btn-link\" onclick=\"PF('computeBatchListPopup').hide();\" type=\"button\">\n
1553
+ \ Cancel\n </button>\n
1554
+ \ </div></div></div><script id=\"datasetForm:computeBatchListPopup_s\"
1555
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"computeBatchListPopup\",{id:\"datasetForm:computeBatchListPopup\",modal:true});});</script><div
1556
+ id=\"datasetForm:inreview\" class=\"ui-dialog ui-widget ui-widget-content
1557
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1558
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:inreview_title\"
1559
+ class=\"ui-dialog-title\">Submit for Review</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1560
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1561
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1562
+ id=\"datasetForm:inreview_content\">\n <p class=\"text-warning\">\n
1563
+ \ <span class=\"glyphicon glyphicon-warning-sign\"></span>
1564
+ You will not be able to make changes to this dataset while it is in review.\n
1565
+ \ </p>\n <div class=\"button-block\"><button
1566
+ id=\"datasetForm:j_idt2512\" name=\"datasetForm:j_idt2512\" class=\"ui-button
1567
+ ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-default\"
1568
+ onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('inreview').hide();
1569
+ \ PF('blockDatasetForm').hide();},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2512&quot;,f:&quot;datasetForm&quot;});return
1570
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Submit</span></button><script
1571
+ id=\"datasetForm:j_idt2512_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2512\",{id:\"datasetForm:j_idt2512\"});});</script>\n
1572
+ \ <button class=\"btn btn-link\" onclick=\"PF('inreview').hide();PF('blockDatasetForm').hide();\"
1573
+ type=\"button\">\n Cancel\n </button>\n
1574
+ \ </div></div></div><script id=\"datasetForm:inreview_s\"
1575
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"inreview\",{id:\"datasetForm:inreview\",modal:true});});</script><div
1576
+ id=\"datasetForm:publishDataset\" class=\"ui-dialog ui-widget ui-widget-content
1577
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1578
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:publishDataset_title\"
1579
+ class=\"ui-dialog-title\">Publish Dataset</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1580
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1581
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1582
+ id=\"datasetForm:publishDataset_content\"><span id=\"datasetForm:j_idt2525\"></span><script
1583
+ type=\"text/javascript\">$(function(){PrimeFaces.focus('datasetForm:options');});</script>\n
1584
+ \ <p class=\"text-warning\">\n <span
1585
+ class=\"glyphicon glyphicon-warning-sign\"></span> Are you sure you want to
1586
+ republish this dataset?\n </p><div class=\"well
1587
+ terms-agreement-block\">By default datasets are published with the CC0-“Public
1588
+ Domain Dedication” waiver. Learn more about the CC0 waiver <a target=_blank
1589
+ href='http://creativecommons.org/choose/zero/'>here</a>. <br><br> To publish
1590
+ with custom Terms of Use, click the Cancel button and go to the Terms tab
1591
+ for this dataset.</div>\n <p class=\"help-block\">\n
1592
+ \ Select if this is a minor or major version
1593
+ update.\n </p><table id=\"datasetForm:options\"
1594
+ role=\"presentation\" class=\"ui-selectoneradio ui-widget\"><tr><td><div class=\"ui-radiobutton
1595
+ ui-widget\"><div class=\"ui-helper-hidden-accessible\"><input id=\"datasetForm:options:0\"
1596
+ name=\"datasetForm:options\" type=\"radio\" value=\"1\" checked=\"checked\"
1597
+ /></div><div class=\"ui-radiobutton-box ui-widget ui-corner-all ui-state-default
1598
+ ui-state-active\"><span class=\"ui-radiobutton-icon ui-icon ui-icon-bullet
1599
+ ui-c\"></span></div></div><label for=\"datasetForm:options:0\">Minor Release
1600
+ (1.1)</label></td><td><div class=\"ui-radiobutton ui-widget\"><div class=\"ui-helper-hidden-accessible\"><input
1601
+ id=\"datasetForm:options:1\" name=\"datasetForm:options\" type=\"radio\" value=\"2\"
1602
+ /></div><div class=\"ui-radiobutton-box ui-widget ui-corner-all ui-state-default\"><span
1603
+ class=\"ui-radiobutton-icon ui-icon ui-icon-blank ui-c\"></span></div></div><label
1604
+ for=\"datasetForm:options:1\">Major Release (2.0)</label></td></tr></table><script
1605
+ id=\"datasetForm:options_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"SelectOneRadio\",\"widget_datasetForm_options\",{id:\"datasetForm:options\",unselectable:false});});</script>\n
1606
+ \ <p>\n </p>\n <div
1607
+ class=\"button-block\"><button id=\"datasetForm:j_idt2543\" name=\"datasetForm:j_idt2543\"
1608
+ class=\"ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only
1609
+ btn btn-default\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('publishDataset').hide();
1610
+ \ PF('blockDatasetForm').hide();},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2543&quot;,f:&quot;datasetForm&quot;});return
1611
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Continue</span></button><script
1612
+ id=\"datasetForm:j_idt2543_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2543\",{id:\"datasetForm:j_idt2543\"});});</script>\n
1613
+ \ <button class=\"btn btn-link\" onclick=\"PF('publishDataset').hide();
1614
+ \ PF('blockDatasetForm').hide();\" type=\"button\">\n
1615
+ \ Cancel\n </button>\n
1616
+ \ </div></div></div><script id=\"datasetForm:publishDataset_s\"
1617
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"publishDataset\",{id:\"datasetForm:publishDataset\",modal:true,width:\"70%\"});});</script><div
1618
+ id=\"datasetForm:mayNotRelease\" class=\"ui-dialog ui-widget ui-widget-content
1619
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1620
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:mayNotRelease_title\"
1621
+ class=\"ui-dialog-title\">Publish Dataset</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1622
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1623
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1624
+ id=\"datasetForm:mayNotRelease_content\">\n <p class=\"text-danger\">\n
1625
+ \ <span class=\"glyphicon glyphicon-exclamation-sign\"></span>This
1626
+ dataset cannot be published until \n <a
1627
+ href=\"/dataverse.xhtml?alias=harvard\" title=\"Harvard Dataverse\">Harvard
1628
+ Dataverse\n </a> is published by its administrator.\n
1629
+ \ </p>\n <div class=\"button-block\">\n
1630
+ \ <button class=\"btn btn-default\" onclick=\"PF('mayNotRelease').hide();
1631
+ \ PF('blockDatasetForm').hide();\" type=\"button\">\n
1632
+ \ Close\n </button>\n
1633
+ \ </div></div></div><script id=\"datasetForm:mayNotRelease_s\"
1634
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"mayNotRelease\",{id:\"datasetForm:mayNotRelease\",modal:true});});</script><div
1635
+ id=\"datasetForm:sendBackToContributor\" class=\"ui-dialog ui-widget ui-widget-content
1636
+ ui-corner-all ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar
1637
+ ui-widget-header ui-helper-clearfix ui-corner-top\"><span id=\"datasetForm:sendBackToContributor_title\"
1638
+ class=\"ui-dialog-title\">Return to Author</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1639
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1640
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1641
+ id=\"datasetForm:sendBackToContributor_content\">\n <p
1642
+ class=\"text-warning\">\n <span class=\"glyphicon
1643
+ glyphicon-warning-sign\"></span> Return this dataset to contributor for modification.\n
1644
+ \ </p>\n \n <div
1645
+ class=\"button-block\"><button id=\"datasetForm:j_idt2564\" name=\"datasetForm:j_idt2564\"
1646
+ class=\"ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only
1647
+ btn btn-default\" onclick=\"PrimeFaces.bcn(this,event,[function(event){PF('sendBackToContributor').hide()},function(event){PrimeFaces.ab({s:&quot;datasetForm:j_idt2564&quot;,f:&quot;datasetForm&quot;});return
1648
+ false;}]);\" type=\"submit\"><span class=\"ui-button-text ui-c\">Continue</span></button><script
1649
+ id=\"datasetForm:j_idt2564_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_datasetForm_j_idt2564\",{id:\"datasetForm:j_idt2564\"});});</script>\n
1650
+ \ <button class=\"btn btn-link\" onclick=\"PF('sendBackToContributor').hide();
1651
+ \ PF('blockDatasetForm').hide();\" type=\"button\">\n
1652
+ \ Cancel\n </button>\n
1653
+ \ </div></div></div><script id=\"datasetForm:sendBackToContributor_s\"
1654
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"sendBackToContributor\",{id:\"datasetForm:sendBackToContributor\",modal:true});});</script><script
1655
+ id=\"datasetForm:j_idt2566\" type=\"text/javascript\">returnToAuthorCommand
1656
+ = function() {return PrimeFaces.ab({s:\"datasetForm:j_idt2566\",f:\"datasetForm\",pa:arguments[0]});}</script><script
1657
+ id=\"datasetForm:j_idt2567\" type=\"text/javascript\">linkEditTerms = function()
1658
+ {return PrimeFaces.ab({s:\"datasetForm:j_idt2567\",f:\"datasetForm\",u:\"datasetForm
1659
+ datasetForm messagePanel\",pa:arguments[0]});}</script><script id=\"datasetForm:j_idt2568\"
1660
+ type=\"text/javascript\">editMedatdataCommand = function() {return PrimeFaces.ab({s:\"datasetForm:j_idt2568\",f:\"datasetForm\",u:\"datasetForm
1661
+ datasetForm messagePanel\",pa:arguments[0]});}</script><script id=\"datasetForm:j_idt2569\"
1662
+ type=\"text/javascript\">datasetSaveCommand = function() {return PrimeFaces.ab({s:\"datasetForm:j_idt2569\",f:\"datasetForm\",u:\"datasetForm
1663
+ messagePanel\",pa:arguments[0]});}</script><input type=\"hidden\" name=\"javax.faces.ViewState\"
1664
+ id=\"j_id1:javax.faces.ViewState:2\" value=\"8430983003554814109:-1483913141546431451\"
1665
+ autocomplete=\"off\" />\n</form>\n <script>\n //<![CDATA[\n
1666
+ \ $(document).ready(function () {\n popoverHTML('Allowed
1667
+ HTML Tags', '&lt;a&gt;, &lt;b&gt;, &lt;blockquote&gt;, &lt;br&gt;, &lt;code&gt;,
1668
+ &lt;del&gt;, &lt;dd&gt;, &lt;dl&gt;, &lt;dt&gt;, &lt;em&gt;, &lt;hr&gt;, &lt;h1&gt;-&lt;h3&gt;,
1669
+ &lt;i&gt;, &lt;img&gt;, &lt;kbd&gt;, &lt;li&gt;, &lt;ol&gt;, &lt;p&gt;, &lt;pre&gt;,
1670
+ &lt;s&gt;, &lt;sup&gt;, &lt;sub&gt;, &lt;strong&gt;, &lt;strike&gt;, &lt;u&gt;,
1671
+ &lt;ul&gt;');\n summaryDescTruncation();\n });\n
1672
+ \ function summaryDescTruncation() {\n //
1673
+ truncate summary description, contentTruncate function in dv_rebind_bootstrap_ui.js\n
1674
+ \ // add summary desc row id to pass as selector param\n
1675
+ \ var descId = 'dsDescription td > div';\n //
1676
+ add metadata dynamic label text, tooltip text from bundle as param\n var
1677
+ truncMoreBtn = 'Read full Description [+]';\n var truncMoreTip
1678
+ = 'Click to read the full Description.';\n var truncLessBtn
1679
+ = 'Collapse Description [-]';\n var truncLessTip =
1680
+ 'Click to collapse the Description.';\n\n // pass bundle
1681
+ text variabls as params to function\n contentTruncate(descId,
1682
+ truncMoreBtn, truncMoreTip, truncLessBtn, truncLessTip);\n }\n
1683
+ \ function openDialog() {\n PF('details').show();\n
1684
+ \ }\n function openCompareTwo() {\n PF('compareTwo').show();\n
1685
+ \ }\n function editTerms(){ \n linkEditTerms();\n
1686
+ \ }\n function editMetadata(){ \n
1687
+ \ var validTOA = document.getElementById(\"datasetForm:validTermsofAccess\").value;\n
1688
+ \ if (validTOA === 'false'){ \n
1689
+ \ PF('blockDatasetForm').show();\n PF('accessPopup').show();\n
1690
+ \ } else {\n editMedatdataCommand();\n
1691
+ \ } \n }\n
1692
+ \ \n function testCheckBoxes() {\n var
1693
+ count = PF('versionsTable').getSelectedRowsCount();\n if
1694
+ (count !== 2) {\n PF('compareTwo').show();\n }
1695
+ else {\n $('button[id$=\"compareVersions\"]').trigger('click');\n
1696
+ \ }\n }\n function
1697
+ testFilesSelected() {\n var count = PF('filesTable').getSelectedRowsCount();\n
1698
+ \ if (count == 0) {\n PF('selectFiles').show();\n
1699
+ \ } else {\n return true;\n
1700
+ \ }\n }\n function
1701
+ testTermsOfAccess() {\n var valid = document.getElementById(\"datasetForm:validTermsofAccess\").value;\n
1702
+ \ if (valid === false) {\n PF('accessPopup').show();\n
1703
+ \ return false;\n } else
1704
+ {\n return true;\n }\n }\n
1705
+ \ function updateTemplate() {\n $('button[id$=\"updateTemplate\"]').trigger('click');\n
1706
+ \ }\n function updateOwnerDataverse()
1707
+ {\n $('button[id$=\"updateOwnerDataverse\"]').trigger('click');\n
1708
+ \ }\n \n function
1709
+ showPopup() {\n var outcome = document.getElementById(\"datasetForm:validateFilesOutcome\").value;\n
1710
+ \ if (outcome ==='Mixed'){\n PF('downloadMixed').show();\n
1711
+ \ }\n if (outcome ==='FailEmpty'){\n
1712
+ \ PF('selectFilesForDownload').show();\n }\n
1713
+ \ if (outcome ==='FailSize'){\n PF('downloadTooLarge').show();\n
1714
+ \ }\n if (outcome ==='FailRestricted'){\n
1715
+ \ PF('downloadInvalid').show();\n }\n
1716
+ \ if (outcome ==='GuestbookRequired'){\n PF('downloadPopup').show();\n
1717
+ \ }\n }\n \n function
1718
+ testTOADatasetPage() {\n var termsofAccessHidden, fileAccessRequestHidden;\n
1719
+ \ try{\n termsofAccessHidden
1720
+ = document.getElementById(\"datasetForm:tabView:termsofAccessHiddenLT\").value;\n
1721
+ \ fileAccessRequestHidden = document.getElementById(\"datasetForm:tabView:fileAccessRequestHiddenLT\").value;
1722
+ \ \n }\n catch (error){\n //terms
1723
+ not present so save...\n PF('blockDatasetForm').show();\n
1724
+ \ datasetSaveCommand(); \n
1725
+ \ } \n if
1726
+ ('false' === 'true' && fileAccessRequestHidden === 'false' && termsofAccessHidden
1727
+ === '') {\n //Not compliant show error keep page
1728
+ open...\n } else {\n PF('blockDatasetForm').show();\n
1729
+ \ datasetSaveCommand();\n }\n
1730
+ \ }\n \n //]]>\n
1731
+ \ </script>\n </div>\n <footer>\n <div id=\"dvfooter\">\n
1732
+ \ <div class=\"container\">\n <div class=\"row\"><div
1733
+ class=\"col-sm-8 small\">\n <p>Copyright &#169; 2023,
1734
+ The President &#38; Fellows of Harvard College |  <a href=\"https://support.dataverse.harvard.edu/harvard-dataverse-privacy-policy\"
1735
+ rel=\"noopener\" target=\"_blank\">Privacy Policy</a>\n </p></div>\n
1736
+ \ <div class=\"col-sm-4 text-right\">\n <div
1737
+ class=\"poweredbylogo\">\n <span>Powered by</span>\n
1738
+ \ <a href=\"http://dataverse.org/\" title=\"The
1739
+ Dataverse Project\" target=\"_blank\" rel=\"noopener\"><img src=\"/resources/images/dataverse_project_logo.svg\"
1740
+ width=\"118\" height=\"40\" onerror=\"this.src='/resources/images/dataverseproject_logo.png'\"
1741
+ alt=\"The Dataverse Project logo\" /></a><span class=\"version\">v. 5.13 build
1742
+ 1244-79d6e57</span>\n </div>\n </div>\n
1743
+ \ </div>\n </div>\n </div><script>\n //<![CDATA[\n
1744
+ \ $(document).ready(function () {\n $(\"#footer > div.container > div.row
1745
+ > div.col-sm-8.small > p\").append(\"&#160;|&#160; <a href=\\\"https://www.harvard.edu/copyright-issue\\\"
1746
+ target=\\\"_blank\\\" rel=\\\"noopener\\\">Report Copyright Infringement</a>
1747
+ &#160;|&#160; <a href=\\\"https://accessibility.huit.harvard.edu/digital-accessibility-policy\\\"
1748
+ target=\\\"_blank\\\" rel=\\\"noopener\\\">Accessibility</a>\");\n });\n
1749
+ \ //]]>\n</script>\n\n<style>\n#feedbackTab {position:fixed; bottom:0; right:50px;}\n#feedbackTab
1750
+ a.btn-feedback {border-bottom-right-radius:0; border-bottom-left-radius:0;}\n.btn-feedback
1751
+ {background-color:#C55B28; border-color:#C55B28; color:#fff;}\n.btn-feedback:hover,
1752
+ .btn-feedback:focus,\n.btn-feedback:active, .btn-feedback.active {background-color:#b05124;
1753
+ border-color: #9b471f; color:#fff;}\n</style>\n\n<div id=\"feedbackTab\">\n
1754
+ \ <a class=\"btn btn-feedback bootstrap-button-tooltip\" href=\"https://goo.gl/forms/p7uu3GfiWYSlJrsi1\"
1755
+ role=\"button\" target=\"_blank\" rel=\"noopener\" aria-label=\"Help improve
1756
+ Dataverse!\" data-original-title=\"Help improve Dataverse!\">\n Feedback\n
1757
+ \ </a>\n</div>\n\n </footer><div id=\"ajaxStatusPanel\"><div id=\"ajaxStatusPanel_start\"
1758
+ style=\"display:none\"><img src=\"/resources/images/ajax-loading.gif;jsessionid=ff0d48dfcc720cb3f91fd57ab360\"
1759
+ alt=\"Loading...\" /></div></div><script id=\"ajaxStatusPanel_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"AjaxStatus\",\"widget_ajaxStatusPanel\",{id:\"ajaxStatusPanel\",delay:0});});</script><div
1760
+ id=\"contactDialog\" class=\"ui-dialog ui-widget ui-widget-content ui-corner-all
1761
+ ui-shadow ui-hidden-container\"><div class=\"ui-dialog-titlebar ui-widget-header
1762
+ ui-helper-clearfix ui-corner-top\"><span id=\"contactDialog_title\" class=\"ui-dialog-title\">Contact
1763
+ Harvard Dataverse Support</span><a href=\"#\" class=\"ui-dialog-titlebar-icon
1764
+ ui-dialog-titlebar-close ui-corner-all\" aria-label=\"Close\"><span class=\"ui-icon
1765
+ ui-icon-closethick\"></span></a></div><div class=\"ui-dialog-content ui-widget-content\"
1766
+ id=\"contactDialog_content\"><div id=\"j_idt2598\">\n<form id=\"emailForm\"
1767
+ name=\"emailForm\" method=\"post\" action=\"/dataset.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?persistentId=doi%3A10.7910%2FDVN%2FNJ7XSO\"
1768
+ class=\"form-horizontal\" enctype=\"application/x-www-form-urlencoded\">\n<input
1769
+ type=\"hidden\" name=\"emailForm\" value=\"emailForm\" />\n<span id=\"emailForm:j_idt2599\"></span><script
1770
+ type=\"text/javascript\">$(function(){PrimeFaces.focus(null, 'contactDialog');});</script>\n
1771
+ \ \n <div class=\"form-group\">\n <label
1772
+ for=\"messageTo\" class=\"col-sm-3 control-label\">To</label>\n <div
1773
+ class=\"col-sm-9\">\n <p id=\"messageTo\" class=\"form-control-static\">Harvard
1774
+ Dataverse Support</p>\n </div>\n </div>\n
1775
+ \ \n <div class=\"form-group\"><label for=\"emailForm:userEmail\"
1776
+ class=\"col-sm-3 control-label\">From <span class=\"glyphicon glyphicon-asterisk
1777
+ text-danger\" title=\"Required field\"></span></label>\n <div
1778
+ class=\"col-sm-9\"><input id=\"emailForm:userEmail\" name=\"emailForm:userEmail\"
1779
+ type=\"text\" value=\"\" class=\"ui-inputfield ui-inputtext ui-widget ui-state-default
1780
+ ui-corner-all form-control\" size=\"30\" /><script id=\"emailForm:userEmail_s\"
1781
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"InputText\",\"widget_emailForm_userEmail\",{id:\"emailForm:userEmail\"});});</script>\n
1782
+ \ </div>\n </div>\n \n
1783
+ \ <div class=\"form-group\"><label for=\"emailForm:messageSubject\"
1784
+ class=\"col-sm-3 control-label\">Subject <span class=\"glyphicon glyphicon-asterisk
1785
+ text-danger\" title=\"Required field\"></span></label>\n <div
1786
+ class=\"col-sm-9\"><input id=\"emailForm:messageSubject\" name=\"emailForm:messageSubject\"
1787
+ type=\"text\" value=\"\" class=\"ui-inputfield ui-inputtext ui-widget ui-state-default
1788
+ ui-corner-all form-control\" /><script id=\"emailForm:messageSubject_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"InputText\",\"widget_emailForm_messageSubject\",{id:\"emailForm:messageSubject\"});});</script>\n
1789
+ \ </div>\n </div> \n \n
1790
+ \ <div class=\"form-group\"><label for=\"emailForm:userMessage\"
1791
+ class=\"col-sm-3 control-label\">Message <span class=\"glyphicon glyphicon-asterisk
1792
+ text-danger\" title=\"Required field\"></span></label>\n <div
1793
+ class=\"col-sm-9\"><textarea id=\"emailForm:userMessage\" name=\"emailForm:userMessage\"
1794
+ class=\"ui-inputfield ui-inputtextarea ui-widget ui-state-default ui-corner-all
1795
+ form-control\" cols=\"20\" rows=\"10\" title=\"Message\" maxlength=\"2147483647\"></textarea><script
1796
+ id=\"emailForm:userMessage_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"InputTextarea\",\"widget_emailForm_userMessage\",{id:\"emailForm:userMessage\",autoResize:false});});</script>\n
1797
+ \ </div>\n </div>\n \n <div
1798
+ class=\"form-group\">\n <div class=\"col-sm-offset-3 col-sm-9\">\n
1799
+ \ <p><span class=\"highlightBold\">Please fill this
1800
+ out to prove you are not a robot.</span> <span class=\"glyphicon glyphicon-asterisk
1801
+ text-danger\" title=\"Required field\"></span>\n </p>\n
1802
+ \ <label for=\"emailForm:messageSum\"> + = \n </label><input
1803
+ id=\"emailForm:messageSum\" name=\"emailForm:messageSum\" type=\"text\" class=\"ui-inputfield
1804
+ ui-inputtext ui-widget ui-state-default ui-corner-all \" size=\"4\" title=\"Human
1805
+ Access Validation Answer\" /><script id=\"emailForm:messageSum_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"InputText\",\"widget_emailForm_messageSum\",{id:\"emailForm:messageSum\"});});</script>\n
1806
+ \ </div>\n </div>\n \n <div
1807
+ class=\"button-block\"><button id=\"emailForm:j_idt2627\" name=\"emailForm:j_idt2627\"
1808
+ class=\"ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only
1809
+ btn btn-default\" onclick=\"PrimeFaces.ab({s:&quot;emailForm:j_idt2627&quot;,f:&quot;emailForm&quot;,u:&quot;emailForm&quot;,onco:function(xhr,status,args,data){if
1810
+ (args &amp;&amp; !args.validationFailed) PF('contactForm').hide();;},pa:[{name:&quot;DO_VALIDATION&quot;,value:&quot;true&quot;}],fp:&quot;j_idt2598&quot;});return
1811
+ false;\" type=\"submit\"><span class=\"ui-button-text ui-c\">Send Message</span></button><script
1812
+ id=\"emailForm:j_idt2627_s\" type=\"text/javascript\">$(function(){PrimeFaces.cw(\"CommandButton\",\"widget_emailForm_j_idt2627\",{id:\"emailForm:j_idt2627\"});});</script>\n
1813
+ \ <button class=\"btn btn-link\" onclick=\"PF('contactForm').hide()\"
1814
+ type=\"button\">\n Cancel\n </button>\n
1815
+ \ </div><input type=\"hidden\" name=\"javax.faces.ViewState\"
1816
+ id=\"j_id1:javax.faces.ViewState:3\" value=\"8430983003554814109:-1483913141546431451\"
1817
+ autocomplete=\"off\" />\n</form></div></div></div><script id=\"contactDialog_s\"
1818
+ type=\"text/javascript\">$(function(){PrimeFaces.cw(\"Dialog\",\"contactForm\",{id:\"contactDialog\",modal:true});});</script>\n
1819
+ \ <script src=\"/javax.faces.resource/js/dv_rebind_bootstrap_ui.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"></script>\n
1820
+ \ <script src=\"/javax.faces.resource/bs/js/bootstrap.min.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"></script>\n
1821
+ \ <script defer=\"defer\" src=\"/javax.faces.resource/js/ie-compat.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"></script>\n
1822
+ \ <script defer=\"defer\" src=\"/javax.faces.resource/js/owl.carousel.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"></script>\n
1823
+ \ <script defer=\"defer\" src=\"/javax.faces.resource/js/jquery.matchHeight.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"></script>\n
1824
+ \ <script src=\"/javax.faces.resource/js/jquery.sharrre.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"></script>\n
1825
+ \ <script src=\"/javax.faces.resource/js/clipboard.min.js.xhtml;jsessionid=ff0d48dfcc720cb3f91fd57ab360?version=5.13\"></script> \n
1826
+ \ \n <script>\n //<![CDATA[\n $(document).ready(function
1827
+ () {\n // Navbar Search Toggle\n $(document).on('click',
1828
+ '#navbar-search-toggle', function (e) {\n $(this).parent(\"li\").hide();\n
1829
+ \ $(\"form.navbar-form[role='search']\").show();\n });\n
1830
+ \ $('body').click(function (e) {\n if (!$(e.target).closest(\"form.navbar-form[role='search']\").length)
1831
+ {\n $(\"form.navbar-form[role='search']\").hide();\n
1832
+ \ $(\"#navbar-search-toggle\").parent(\"li\").show();\n
1833
+ \ }\n ;\n });\n });\n
1834
+ \ function clickSupportLink() {\n $(\"[id$='headerSupportLink']\").click();\n
1835
+ \ }\n //]]>\n </script><script type=\"text/javascript\"
1836
+ id=\"j_idt2631\">bind_bsui_components();</script></body>\n</html>"
1837
+ recorded_at: Tue, 14 Mar 2023 11:45:49 GMT
1838
+ recorded_with: VCR 6.1.0