hyrax 1.1.1 → 2.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1201) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +5 -4
  3. data/.eslintrc +1 -1
  4. data/.fcrepo_wrapper +4 -0
  5. data/.github/CODE_OF_CONDUCT.md +36 -0
  6. data/.github/CONTRIBUTING.md +73 -17
  7. data/.github/PULL_REQUEST_TEMPLATE.md +4 -4
  8. data/.github/SUPPORT.md +3 -0
  9. data/.hound.yml +4 -0
  10. data/.rubocop.yml +57 -21
  11. data/{.rubocop_todo.yml → .rubocop_fixme.yml} +15 -35
  12. data/.solr_wrapper +6 -0
  13. data/.travis.yml +13 -11
  14. data/Gemfile +3 -3
  15. data/LICENSE +205 -15
  16. data/README.md +87 -54
  17. data/Rakefile +0 -0
  18. data/app/actors/hyrax/actors/abstract_actor.rb +79 -12
  19. data/app/actors/hyrax/actors/add_to_work_actor.rb +27 -27
  20. data/app/actors/hyrax/actors/apply_order_actor.rb +21 -21
  21. data/app/actors/hyrax/actors/apply_permission_template_actor.rb +25 -0
  22. data/app/actors/hyrax/actors/assign_representative_actor.rb +8 -6
  23. data/app/actors/hyrax/actors/attach_members_actor.rb +14 -18
  24. data/app/actors/hyrax/actors/base_actor.rb +58 -32
  25. data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +30 -0
  26. data/app/actors/hyrax/actors/cleanup_trophies_actor.rb +20 -0
  27. data/app/actors/hyrax/actors/collections_membership_actor.rb +35 -0
  28. data/app/actors/hyrax/actors/create_with_files_actor.rb +53 -0
  29. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +55 -0
  30. data/app/actors/hyrax/actors/default_admin_set_actor.rb +48 -0
  31. data/app/actors/hyrax/actors/environment.rb +21 -0
  32. data/app/actors/hyrax/actors/featured_work_actor.rb +32 -0
  33. data/app/actors/hyrax/actors/file_actor.rb +35 -39
  34. data/app/actors/hyrax/actors/file_set_actor.rb +76 -67
  35. data/app/actors/hyrax/actors/initialize_workflow_actor.rb +6 -4
  36. data/app/actors/hyrax/actors/interpret_visibility_actor.rb +60 -49
  37. data/app/actors/hyrax/actors/model_actor.rb +32 -0
  38. data/app/actors/hyrax/actors/optimistic_lock_validator.rb +7 -5
  39. data/app/actors/hyrax/actors/terminator.rb +18 -0
  40. data/app/actors/hyrax/actors/transactional_request.rb +8 -4
  41. data/app/assets/javascripts/hyrax.js +13 -6
  42. data/app/assets/javascripts/hyrax/admin/admin_set/group_participants.es6 +20 -0
  43. data/app/assets/javascripts/hyrax/admin/admin_set/participants.es6 +13 -2
  44. data/app/assets/javascripts/hyrax/admin/admin_set/registered_users.es6 +31 -0
  45. data/app/assets/javascripts/hyrax/admin/admin_set_controls.es6 +16 -8
  46. data/app/assets/javascripts/hyrax/admin/graphs.es6 +1 -1
  47. data/app/assets/javascripts/hyrax/app.js +52 -29
  48. data/app/assets/javascripts/hyrax/authority_select.es6 +31 -37
  49. data/app/assets/javascripts/hyrax/autocomplete.es6 +13 -7
  50. data/app/assets/javascripts/hyrax/autocomplete/default.es6 +10 -5
  51. data/app/assets/javascripts/hyrax/autocomplete/linked_data.es6 +65 -0
  52. data/app/assets/javascripts/hyrax/batch_select.es6 +11 -0
  53. data/app/assets/javascripts/hyrax/batch_select_all.js +17 -25
  54. data/app/assets/javascripts/hyrax/browse_everything.js +11 -7
  55. data/app/assets/javascripts/hyrax/collections/editor.es6 +11 -0
  56. data/app/assets/javascripts/hyrax/config.js.erb +3 -0
  57. data/app/assets/javascripts/hyrax/editor.es6 +49 -2
  58. data/app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6 +122 -0
  59. data/app/assets/javascripts/hyrax/{fileupload.js.erb → fileupload.js} +0 -5
  60. data/app/assets/javascripts/hyrax/monkey_patch_turbolinks.js.coffee +1 -1
  61. data/app/assets/javascripts/hyrax/notification.es6 +37 -0
  62. data/app/assets/javascripts/hyrax/notifications.es6 +5 -10
  63. data/app/assets/javascripts/hyrax/per_page.es6 +15 -0
  64. data/app/assets/javascripts/hyrax/save_work/save_work_control.es6 +8 -1
  65. data/app/assets/javascripts/hyrax/save_work/visibility_component.es6 +8 -13
  66. data/app/assets/javascripts/hyrax/sorting.js +0 -8
  67. data/app/assets/javascripts/hyrax/tabs.js +3 -1
  68. data/app/assets/javascripts/hyrax/thumbnail_select.es6 +29 -0
  69. data/app/assets/javascripts/hyrax/trophy.js +1 -1
  70. data/app/assets/javascripts/hyrax/uploader.js +1 -5
  71. data/app/assets/stylesheets/hyrax/_batch-edit.scss +8 -4
  72. data/app/assets/stylesheets/hyrax/_buttons.scss +9 -7
  73. data/app/assets/stylesheets/hyrax/_catalog.scss +11 -0
  74. data/app/assets/stylesheets/hyrax/_collections.scss +6 -19
  75. data/app/assets/stylesheets/hyrax/_file-listing.scss +5 -25
  76. data/app/assets/stylesheets/hyrax/_file_manager.scss +1 -0
  77. data/app/assets/stylesheets/hyrax/_footer.scss +5 -0
  78. data/app/assets/stylesheets/hyrax/_forms.scss +25 -1
  79. data/app/assets/stylesheets/hyrax/_header.scss +6 -0
  80. data/app/assets/stylesheets/hyrax/_hyrax.scss +8 -2
  81. data/app/assets/stylesheets/hyrax/_positioning.scss +3 -126
  82. data/app/assets/stylesheets/hyrax/_styles.scss +0 -4
  83. data/app/assets/stylesheets/hyrax/_users.scss +15 -0
  84. data/app/assets/stylesheets/hyrax/_variables.scss +1 -0
  85. data/app/assets/stylesheets/hyrax/_work_editor.scss +17 -0
  86. data/app/assets/stylesheets/hyrax/controlled_vocabulary.scss +7 -0
  87. data/app/assets/stylesheets/hyrax/dashboard.scss +247 -0
  88. data/app/assets/stylesheets/hyrax/sidebar.scss +147 -0
  89. data/app/assets/stylesheets/typeahead.css +64 -0
  90. data/app/authorities/qa/authorities/find_works.rb +11 -2
  91. data/app/controlled_vocabularies/hyrax/controlled_vocabularies/location.rb +13 -0
  92. data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +2 -2
  93. data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +11 -1
  94. data/app/controllers/concerns/hyrax/breadcrumbs.rb +1 -1
  95. data/app/controllers/concerns/hyrax/breadcrumbs_for_collections.rb +1 -1
  96. data/app/controllers/concerns/hyrax/breadcrumbs_for_works.rb +26 -14
  97. data/app/controllers/concerns/hyrax/collections.rb +4 -0
  98. data/{lib → app/controllers/concerns}/hyrax/collections/accepts_batches.rb +1 -1
  99. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -190
  100. data/app/controllers/concerns/hyrax/controller.rb +1 -23
  101. data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +38 -0
  102. data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +37 -0
  103. data/app/controllers/concerns/hyrax/manages_embargoes.rb +18 -0
  104. data/app/controllers/concerns/hyrax/parent_container.rb +2 -2
  105. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +225 -11
  106. data/app/controllers/hyrax/admin/admin_sets_controller.rb +32 -18
  107. data/app/controllers/hyrax/admin/appearances_controller.rb +33 -0
  108. data/app/controllers/hyrax/admin/features_controller.rb +4 -3
  109. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +16 -7
  110. data/app/controllers/hyrax/admin/users_controller.rb +1 -1
  111. data/app/controllers/hyrax/admin/workflow_roles_controller.rb +2 -2
  112. data/app/controllers/hyrax/admin/workflows_controller.rb +10 -11
  113. data/app/controllers/hyrax/api/zotero_controller.rb +4 -4
  114. data/app/controllers/hyrax/batch_edits_controller.rb +99 -2
  115. data/app/controllers/hyrax/batch_uploads_controller.rb +92 -2
  116. data/app/controllers/hyrax/citations_controller.rb +2 -2
  117. data/app/controllers/hyrax/collections_controller.rb +26 -0
  118. data/app/controllers/hyrax/contact_form_controller.rb +42 -1
  119. data/app/controllers/hyrax/content_blocks_controller.rb +25 -19
  120. data/app/controllers/hyrax/dashboard/collections_controller.rb +311 -0
  121. data/app/controllers/hyrax/dashboard/profiles_controller.rb +69 -0
  122. data/app/controllers/hyrax/dashboard/works_controller.rb +31 -0
  123. data/app/controllers/hyrax/dashboard_controller.rb +16 -1
  124. data/app/controllers/hyrax/depositors_controller.rb +41 -1
  125. data/app/controllers/hyrax/downloads_controller.rb +83 -1
  126. data/app/controllers/hyrax/embargoes_controller.rb +5 -0
  127. data/app/controllers/hyrax/featured_work_lists_controller.rb +1 -1
  128. data/app/controllers/hyrax/file_sets_controller.rb +236 -1
  129. data/app/controllers/hyrax/fixity_checks_controller.rb +32 -0
  130. data/app/controllers/hyrax/homepage_controller.rb +47 -1
  131. data/app/controllers/hyrax/leases_controller.rb +5 -0
  132. data/app/controllers/hyrax/my/collections_controller.rb +8 -5
  133. data/app/controllers/hyrax/my/highlights_controller.rb +3 -3
  134. data/app/controllers/hyrax/my/shares_controller.rb +3 -3
  135. data/app/controllers/hyrax/my/works_controller.rb +10 -5
  136. data/app/controllers/hyrax/my_controller.rb +79 -2
  137. data/app/controllers/hyrax/{mailbox_controller.rb → notifications_controller.rb} +5 -1
  138. data/app/controllers/hyrax/pages_controller.rb +42 -3
  139. data/app/controllers/hyrax/permissions_controller.rb +30 -1
  140. data/app/controllers/hyrax/single_use_links_controller.rb +46 -1
  141. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +87 -12
  142. data/app/controllers/hyrax/static_controller.rb +0 -1
  143. data/app/controllers/hyrax/stats_controller.rb +2 -2
  144. data/app/controllers/hyrax/transfers_controller.rb +79 -1
  145. data/app/controllers/hyrax/uploads_controller.rb +12 -1
  146. data/app/controllers/hyrax/users_controller.rb +67 -1
  147. data/app/controllers/hyrax/workflow_actions_controller.rb +15 -9
  148. data/app/forms/hyrax/forms/admin/appearance.rb +139 -0
  149. data/app/forms/hyrax/forms/admin_set_form.rb +12 -6
  150. data/app/forms/hyrax/forms/batch_edit_form.rb +22 -21
  151. data/app/forms/hyrax/forms/collection_form.rb +50 -11
  152. data/app/forms/hyrax/forms/file_set_edit_form.rb +2 -2
  153. data/app/forms/hyrax/forms/permission_template_form.rb +2 -8
  154. data/app/forms/hyrax/forms/work_form.rb +46 -9
  155. data/app/forms/hyrax/forms/workflow_action_form.rb +2 -1
  156. data/app/forms/hyrax/forms/workflow_responsibility_form.rb +0 -6
  157. data/app/helpers/hyrax/ability_helper.rb +2 -2
  158. data/app/helpers/hyrax/batch_edits_helper.rb +16 -0
  159. data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +14 -22
  160. data/app/helpers/hyrax/citations_behaviors/formatters/open_url_formatter.rb +17 -21
  161. data/app/helpers/hyrax/citations_behaviors/publication_behavior.rb +4 -3
  162. data/app/helpers/hyrax/citations_behaviors/title_behavior.rb +1 -1
  163. data/app/helpers/hyrax/collections_helper.rb +12 -4
  164. data/app/helpers/hyrax/content_block_helper_behavior.rb +5 -41
  165. data/app/helpers/hyrax/dashboard_helper_behavior.rb +0 -41
  166. data/app/helpers/hyrax/file_set_helper.rb +2 -0
  167. data/app/helpers/hyrax/hyrax_helper_behavior.rb +20 -7
  168. data/app/helpers/hyrax/trophy_helper.rb +5 -3
  169. data/app/indexers/concerns/hyrax/indexes_basic_metadata.rb +9 -0
  170. data/app/indexers/concerns/hyrax/indexes_linked_metadata.rb +9 -0
  171. data/app/indexers/hyrax/admin_set_indexer.rb +0 -1
  172. data/app/indexers/hyrax/basic_metadata_indexer.rb +57 -0
  173. data/app/indexers/hyrax/collection_indexer.rb +4 -1
  174. data/app/indexers/hyrax/collection_with_basic_metadata_indexer.rb +5 -0
  175. data/app/indexers/hyrax/deep_indexing_service.rb +102 -0
  176. data/app/indexers/hyrax/file_set_indexer.rb +19 -19
  177. data/app/indexers/hyrax/work_indexer.rb +7 -6
  178. data/app/inputs/controlled_vocabulary_input.rb +87 -0
  179. data/app/inputs/multi_value_select_input.rb +2 -0
  180. data/app/jobs/attach_files_to_work_job.rb +25 -21
  181. data/app/jobs/batch_create_job.rb +1 -1
  182. data/app/jobs/characterize_job.rb +7 -5
  183. data/app/jobs/create_derivatives_job.rb +1 -1
  184. data/app/jobs/create_work_job.rb +7 -5
  185. data/app/jobs/event_job.rb +4 -5
  186. data/app/jobs/fixity_check_job.rb +63 -0
  187. data/app/jobs/hyrax/application_job.rb +7 -0
  188. data/app/jobs/hyrax/grant_edit_job.rb +14 -0
  189. data/app/jobs/hyrax/grant_edit_to_members_job.rb +24 -0
  190. data/app/jobs/hyrax/grant_read_job.rb +14 -0
  191. data/app/jobs/hyrax/grant_read_to_members_job.rb +24 -0
  192. data/app/jobs/hyrax/revoke_edit_from_members_job.rb +23 -0
  193. data/app/jobs/hyrax/revoke_edit_job.rb +14 -0
  194. data/app/jobs/import_export_job.rb +31 -0
  195. data/app/jobs/import_url_job.rb +27 -23
  196. data/app/jobs/ingest_job.rb +18 -0
  197. data/app/jobs/ingest_local_file_job.rb +1 -1
  198. data/app/jobs/inherit_permissions_job.rb +1 -1
  199. data/app/jobs/resolrize_job.rb +1 -1
  200. data/app/jobs/visibility_copy_job.rb +20 -11
  201. data/app/models/admin_set.rb +109 -3
  202. data/app/models/batch_upload_item.rb +3 -1
  203. data/app/models/checksum_audit_log.rb +59 -12
  204. data/app/models/concerns/hyrax/ability.rb +61 -8
  205. data/app/models/concerns/hyrax/basic_metadata.rb +26 -57
  206. data/app/models/concerns/hyrax/collection_behavior.rb +9 -9
  207. data/app/models/concerns/hyrax/{required_metadata.rb → core_metadata.rb} +3 -1
  208. data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +2 -2
  209. data/app/models/concerns/hyrax/file_set/derivatives.rb +1 -1
  210. data/app/models/concerns/hyrax/file_set/indexing.rb +0 -1
  211. data/app/models/concerns/hyrax/file_set_behavior.rb +2 -2
  212. data/app/models/concerns/hyrax/nested_works.rb +1 -1
  213. data/app/models/concerns/hyrax/proxy_deposit.rb +1 -1
  214. data/app/models/concerns/hyrax/solr_document/metadata.rb +88 -0
  215. data/app/models/concerns/hyrax/solr_document_behavior.rb +9 -151
  216. data/app/models/concerns/hyrax/user.rb +16 -9
  217. data/app/models/concerns/hyrax/with_file_sets.rb +0 -25
  218. data/app/models/concerns/hyrax/work_behavior.rb +3 -4
  219. data/app/models/content_block.rb +102 -1
  220. data/app/models/featured_work_list.rb +7 -3
  221. data/app/models/hyrax/operation.rb +6 -4
  222. data/app/models/hyrax/permission_template.rb +2 -2
  223. data/app/models/hyrax/permission_template_access.rb +26 -1
  224. data/app/models/hyrax/uploaded_file.rb +2 -0
  225. data/app/models/job_io_wrapper.rb +105 -0
  226. data/app/models/proxy_deposit_request.rb +16 -12
  227. data/app/models/single_use_link.rb +1 -1
  228. data/app/models/sipity/method.rb +11 -0
  229. data/app/presenters/hyrax/admin/users_presenter.rb +1 -1
  230. data/app/presenters/hyrax/admin_set_options_presenter.rb +7 -2
  231. data/app/presenters/hyrax/admin_stats_presenter.rb +21 -13
  232. data/app/presenters/hyrax/characterization_behavior.rb +1 -1
  233. data/app/presenters/hyrax/collection_options_presenter.rb +1 -1
  234. data/app/presenters/hyrax/collection_presenter.rb +4 -3
  235. data/app/presenters/hyrax/dashboard/user_presenter.rb +60 -0
  236. data/app/presenters/hyrax/embargo_presenter.rb +1 -1
  237. data/app/presenters/hyrax/file_set_presenter.rb +12 -17
  238. data/app/presenters/hyrax/fixity_status_presenter.rb +89 -0
  239. data/app/presenters/hyrax/homepage_presenter.rb +15 -3
  240. data/app/presenters/hyrax/lease_presenter.rb +1 -1
  241. data/app/presenters/hyrax/member_presenter_factory.rb +3 -1
  242. data/app/presenters/hyrax/menu_presenter.rb +31 -7
  243. data/app/presenters/hyrax/permission_badge.rb +12 -14
  244. data/app/presenters/hyrax/presenter_factory.rb +25 -6
  245. data/app/presenters/hyrax/presenter_renderer.rb +1 -1
  246. data/app/presenters/hyrax/select_type_presenter.rb +16 -0
  247. data/app/presenters/hyrax/transfers_presenter.rb +37 -0
  248. data/app/presenters/hyrax/trophy_presenter.rb +1 -5
  249. data/app/presenters/hyrax/twitter_presenter.rb +18 -0
  250. data/app/presenters/hyrax/work_show_presenter.rb +25 -15
  251. data/app/presenters/hyrax/workflow_presenter.rb +7 -0
  252. data/app/renderers/hyrax/renderers/attribute_renderer.rb +2 -2
  253. data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +1 -1
  254. data/app/renderers/hyrax/renderers/{rights_attribute_renderer.rb → license_attribute_renderer.rb} +4 -6
  255. data/app/search_builders/hyrax/README.md +3 -3
  256. data/app/search_builders/hyrax/admin_set_search_builder.rb +3 -21
  257. data/app/search_builders/hyrax/collection_member_search_builder.rb +9 -1
  258. data/app/search_builders/hyrax/collection_search_builder.rb +1 -25
  259. data/app/search_builders/hyrax/deposit_search_builder.rb +26 -0
  260. data/app/search_builders/hyrax/filter_by_type.rb +1 -3
  261. data/app/search_builders/hyrax/member_with_files_search_builder.rb +1 -1
  262. data/app/search_builders/hyrax/my/collections_search_builder.rb +8 -0
  263. data/app/search_builders/hyrax/{find_works_search_builder.rb → my/find_works_search_builder.rb} +2 -3
  264. data/app/search_builders/hyrax/{my_highlights_search_builder.rb → my/highlights_search_builder.rb} +2 -2
  265. data/app/search_builders/hyrax/my/search_builder.rb +21 -0
  266. data/app/search_builders/hyrax/{my_search_builder_behavior.rb → my/search_builder_behavior.rb} +1 -1
  267. data/app/search_builders/hyrax/{my_shares_search_builder.rb → my/shares_search_builder.rb} +3 -3
  268. data/app/search_builders/hyrax/{my_works_search_builder.rb → my/works_search_builder.rb} +6 -2
  269. data/app/search_builders/hyrax/parent_collection_search_builder.rb +12 -0
  270. data/app/search_builders/hyrax/search_builder.rb +0 -8
  271. data/app/search_builders/hyrax/search_filters.rb +11 -5
  272. data/app/search_builders/hyrax/single_admin_set_search_builder.rb +4 -2
  273. data/app/search_builders/hyrax/works_search_builder.rb +6 -1
  274. data/app/services/hyrax/admin_set_create_service.rb +37 -12
  275. data/app/services/hyrax/admin_set_service.rb +3 -2
  276. data/app/services/hyrax/analytics.rb +1 -1
  277. data/app/services/hyrax/collection_thumbnail_path_service.rb +1 -0
  278. data/{lib → app/services}/hyrax/collections/search_service.rb +1 -1
  279. data/app/services/hyrax/collections_service.rb +2 -2
  280. data/app/services/hyrax/curation_concern.rb +39 -7
  281. data/app/services/hyrax/default_middleware_stack.rb +27 -0
  282. data/app/services/hyrax/file_set_csv_service.rb +1 -1
  283. data/app/services/hyrax/file_set_derivatives_service.rb +6 -1
  284. data/app/services/hyrax/file_set_fixity_check_service.rb +122 -0
  285. data/app/services/hyrax/fixity_check_failure_service.rb +25 -0
  286. data/app/services/hyrax/form_metadata_service.rb +9 -3
  287. data/app/services/hyrax/lock_manager.rb +1 -14
  288. data/app/services/hyrax/microdata.rb +44 -13
  289. data/app/services/hyrax/noid.rb +0 -5
  290. data/app/services/hyrax/qa_select_service.rb +1 -1
  291. data/app/services/hyrax/quick_classification_query.rb +2 -2
  292. data/app/services/hyrax/repository_fixity_check_service.rb +12 -0
  293. data/app/services/hyrax/resource_types_service.rb +4 -1
  294. data/app/services/hyrax/statistics/depositors/summary.rb +9 -1
  295. data/app/services/hyrax/statistics/system_stats.rb +9 -0
  296. data/app/services/hyrax/statistics/term_query.rb +7 -0
  297. data/app/services/hyrax/statistics/works/count.rb +11 -0
  298. data/app/services/hyrax/thumbnail_path_service.rb +1 -1
  299. data/app/services/hyrax/user_stat_importer.rb +20 -18
  300. data/app/services/hyrax/workflow/abstract_notification.rb +1 -3
  301. data/app/services/hyrax/workflow/changes_required_notification.rb +1 -3
  302. data/app/services/hyrax/workflow/deposited_notification.rb +1 -3
  303. data/app/services/hyrax/workflow/grant_edit_to_depositor.rb +5 -0
  304. data/app/services/hyrax/workflow/grant_read_to_depositor.rb +3 -0
  305. data/app/services/hyrax/workflow/notification_service.rb +12 -4
  306. data/app/services/hyrax/workflow/pending_review_notification.rb +1 -3
  307. data/app/services/hyrax/workflow/permission_generator.rb +26 -2
  308. data/app/services/hyrax/workflow/permission_query.rb +21 -24
  309. data/app/services/hyrax/workflow/revoke_edit_from_depositor.rb +3 -0
  310. data/app/services/hyrax/workflow/workflow_action_service.rb +3 -3
  311. data/app/services/hyrax/working_directory.rb +3 -0
  312. data/app/uploaders/hyrax/avatar_uploader.rb +1 -1
  313. data/app/views/_flash_msg.html.erb +1 -1
  314. data/app/views/_masthead.html.erb +0 -2
  315. data/app/views/_user_util_links.html.erb +7 -10
  316. data/app/views/catalog/_document.html.erb +1 -3
  317. data/app/views/catalog/_index_list_default.html.erb +2 -1
  318. data/app/views/catalog/_search_form.html.erb +5 -5
  319. data/app/views/catalog/_thumbnail_list_default.html.erb +1 -2
  320. data/app/views/collections/edit_fields/_based_near.html.erb +8 -0
  321. data/app/views/hyrax/admin/admin_sets/_form.html.erb +3 -1
  322. data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +12 -3
  323. data/app/views/hyrax/admin/admin_sets/_show_document_list.html.erb +1 -1
  324. data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +2 -2
  325. data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
  326. data/app/views/hyrax/admin/admin_sets/index.html.erb +8 -9
  327. data/app/views/hyrax/admin/admin_sets/index.json.jbuilder +5 -0
  328. data/app/views/hyrax/admin/admin_sets/new.html.erb +1 -1
  329. data/app/views/hyrax/admin/admin_sets/show.html.erb +22 -16
  330. data/app/views/hyrax/admin/appearances/show.html.erb +16 -0
  331. data/app/views/hyrax/admin/features/index.html.erb +5 -5
  332. data/app/views/hyrax/admin/stats/_deposits.html.erb +1 -2
  333. data/app/views/hyrax/admin/stats/_new_users.html.erb +1 -2
  334. data/app/views/hyrax/admin/stats/_works.html.erb +6 -6
  335. data/app/views/hyrax/admin/users/index.html.erb +3 -4
  336. data/app/views/hyrax/admin/workflow_roles/index.html.erb +58 -39
  337. data/app/views/hyrax/admin/workflows/index.html.erb +1 -1
  338. data/app/views/hyrax/base/_attribute_rows.html.erb +2 -1
  339. data/app/views/hyrax/base/_attributes.html.erb +1 -1
  340. data/app/views/hyrax/base/_form.html.erb +4 -3
  341. data/app/views/hyrax/base/_form_files.html.erb +2 -2
  342. data/app/views/hyrax/base/_form_member_of_collections.html.erb +1 -0
  343. data/app/views/hyrax/base/_form_metadata.html.erb +15 -15
  344. data/app/views/hyrax/base/_form_permission_under_embargo.html.erb +5 -4
  345. data/app/views/hyrax/base/_form_permission_under_lease.html.erb +3 -4
  346. data/app/views/hyrax/base/_form_progress.html.erb +6 -3
  347. data/app/views/hyrax/base/_form_share.html.erb +6 -6
  348. data/app/views/hyrax/base/_form_visibility_component.html.erb +9 -1
  349. data/app/views/hyrax/base/_guts4form.html.erb +39 -37
  350. data/app/views/hyrax/base/_metadata.html.erb +1 -1
  351. data/app/views/hyrax/base/_relationships_parent_rows.html.erb +8 -20
  352. data/app/views/hyrax/base/_work_title.erb +3 -1
  353. data/app/views/hyrax/base/edit.html.erb +1 -1
  354. data/app/views/hyrax/base/show.html.erb +5 -3
  355. data/app/views/hyrax/base/show.json.jbuilder +1 -1
  356. data/app/views/hyrax/base/unavailable.html.erb +3 -2
  357. data/app/views/hyrax/batch_edits/edit.html.erb +1 -1
  358. data/app/views/{batch_select → hyrax/batch_select}/_add_button.html.erb +0 -0
  359. data/app/views/hyrax/batch_uploads/_form.html.erb +2 -3
  360. data/app/views/hyrax/citations/work.html.erb +0 -2
  361. data/app/views/hyrax/collections/_collection_description.erb +1 -1
  362. data/app/views/hyrax/{my/_index_partials → collections}/_default_group.html.erb +4 -4
  363. data/app/views/hyrax/collections/_document_list.html.erb +1 -1
  364. data/app/views/hyrax/{my/_index_partials → collections}/_list_collections.html.erb +1 -1
  365. data/app/views/hyrax/collections/_list_works.html.erb +36 -0
  366. data/app/views/hyrax/collections/_media_display.html.erb +8 -1
  367. data/app/views/hyrax/collections/_search_form.html.erb +1 -1
  368. data/app/views/hyrax/collections/_show_document_list.html.erb +0 -3
  369. data/app/views/hyrax/collections/_show_document_list_row.html.erb +0 -5
  370. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +0 -10
  371. data/app/views/hyrax/collections/show.html.erb +2 -5
  372. data/app/views/hyrax/content_blocks/_form.html.erb +63 -0
  373. data/app/views/hyrax/content_blocks/edit.html.erb +9 -0
  374. data/app/views/hyrax/content_blocks/templates/agreement.html.erb +44 -0
  375. data/app/views/hyrax/content_blocks/templates/terms.html.erb +62 -0
  376. data/app/views/hyrax/{admin/_collections.html.erb → dashboard/_admin_sets.html.erb} +3 -5
  377. data/app/views/hyrax/dashboard/_index_partials/_transfers.html.erb +3 -3
  378. data/app/views/hyrax/dashboard/_sidebar.html.erb +19 -0
  379. data/app/views/hyrax/{collections → dashboard/collections}/_batch_edits_actions.html.erb +0 -0
  380. data/app/views/hyrax/dashboard/collections/_bookmark_control.html.erb +23 -0
  381. data/app/views/hyrax/dashboard/collections/_button_create_collection.html.erb +1 -0
  382. data/app/views/hyrax/{collections → dashboard/collections}/_button_for_remove_selected_from_collection.html.erb +1 -1
  383. data/app/views/hyrax/{collections → dashboard/collections}/_button_for_update_collection.html.erb +1 -1
  384. data/app/views/hyrax/{collections → dashboard/collections}/_button_remove_from_collection.html.erb +1 -1
  385. data/app/views/hyrax/dashboard/collections/_document_list.html.erb +13 -0
  386. data/app/views/hyrax/{collections → dashboard/collections}/_edit_actions.html.erb +3 -2
  387. data/app/views/hyrax/dashboard/collections/_form.html.erb +86 -0
  388. data/app/views/hyrax/dashboard/collections/_form_default_group.html.erb +25 -0
  389. data/app/views/hyrax/{collections → dashboard/collections}/_form_for_select_collection.html.erb +5 -5
  390. data/app/views/hyrax/{collections → dashboard/collections}/_form_permission.html.erb +0 -0
  391. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +90 -0
  392. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +45 -0
  393. data/app/views/hyrax/dashboard/collections/_list_works.html.erb +40 -0
  394. data/app/views/hyrax/{collections → dashboard/collections}/_show_actions.html.erb +4 -3
  395. data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +7 -0
  396. data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +17 -0
  397. data/app/views/hyrax/{collections → dashboard/collections}/_show_document_list_menu.html.erb +1 -1
  398. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +49 -0
  399. data/app/views/hyrax/dashboard/collections/_show_fields.html.erb +0 -0
  400. data/app/views/hyrax/{collections → dashboard/collections}/_single_item_action_fields.html.erb +0 -0
  401. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +32 -0
  402. data/app/views/hyrax/{collections → dashboard/collections}/_work_action_menu.html.erb +0 -0
  403. data/app/views/hyrax/dashboard/collections/edit.html.erb +35 -0
  404. data/app/views/hyrax/{collections → dashboard/collections}/edit_fields/_description.html.erb +0 -0
  405. data/app/views/hyrax/dashboard/collections/new.html.erb +11 -0
  406. data/app/views/hyrax/dashboard/collections/show.html.erb +36 -0
  407. data/app/views/hyrax/{users → dashboard/profiles}/_edit_primary.html.erb +3 -8
  408. data/app/views/hyrax/{users → dashboard/profiles}/_edit_secondary.html.erb +0 -0
  409. data/app/views/hyrax/{users → dashboard/profiles}/_trophy_edit.html.erb +0 -0
  410. data/app/views/hyrax/{users → dashboard/profiles}/_zotero.html.erb +0 -0
  411. data/app/views/hyrax/dashboard/profiles/edit.html.erb +14 -0
  412. data/app/views/hyrax/dashboard/profiles/show.html.erb +22 -0
  413. data/app/views/hyrax/{admin/show.html.erb → dashboard/show_admin.html.erb} +1 -1
  414. data/app/views/hyrax/dashboard/{_index_partials/_contents.html.erb → show_user.html.erb} +14 -10
  415. data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +27 -0
  416. data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +31 -0
  417. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +17 -0
  418. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +12 -0
  419. data/app/views/hyrax/dashboard/works/_default_group.html.erb +19 -0
  420. data/app/views/hyrax/{my/_index_partials → dashboard/works}/_list_works.html.erb +0 -6
  421. data/app/views/hyrax/embargoes/_embargo_history.html.erb +8 -0
  422. data/app/views/hyrax/embargoes/_list_active_embargoes.html.erb +18 -0
  423. data/app/views/hyrax/embargoes/_list_deactivated_embargoes.html.erb +4 -0
  424. data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +53 -0
  425. data/app/views/hyrax/embargoes/_table_headers.html.erb +5 -0
  426. data/app/views/hyrax/embargoes/edit.html.erb +45 -0
  427. data/app/views/hyrax/embargoes/index.html.erb +25 -0
  428. data/app/views/hyrax/file_sets/_actions.html.erb +1 -2
  429. data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +1 -1
  430. data/app/views/hyrax/file_sets/_file_set_title.erb +9 -0
  431. data/app/views/hyrax/file_sets/_permission_form.html.erb +2 -2
  432. data/app/views/hyrax/file_sets/_show_characterization_details.html.erb +1 -1
  433. data/app/views/hyrax/file_sets/_show_details.html.erb +2 -2
  434. data/app/views/hyrax/file_sets/media_display/_image.html.erb +1 -2
  435. data/app/views/hyrax/file_sets/show.html.erb +2 -4
  436. data/app/views/hyrax/homepage/_announcement.html.erb +2 -2
  437. data/app/views/hyrax/homepage/_explore_collections.html.erb +8 -7
  438. data/app/views/hyrax/homepage/_featured_researcher.html.erb +5 -7
  439. data/app/views/hyrax/homepage/_home_content.html.erb +14 -18
  440. data/app/views/hyrax/homepage/_marketing.html.erb +2 -3
  441. data/app/views/hyrax/homepage/index.html.erb +2 -2
  442. data/app/views/hyrax/leases/_lease_history.html.erb +8 -0
  443. data/app/views/hyrax/leases/_list_active_leases.html.erb +18 -0
  444. data/app/views/hyrax/leases/_list_deactivated_leases.html.erb +4 -0
  445. data/app/views/hyrax/leases/_list_expired_active_leases.html.erb +53 -0
  446. data/app/views/hyrax/leases/_table_headers.html.erb +5 -0
  447. data/app/views/hyrax/leases/edit.html.erb +45 -0
  448. data/app/views/hyrax/leases/index.html.erb +24 -0
  449. data/app/views/hyrax/my/_collection_action_menu.html.erb +3 -3
  450. data/app/views/hyrax/my/_constraints.html.erb +11 -9
  451. data/app/views/hyrax/my/_document_list.html.erb +1 -1
  452. data/app/views/hyrax/my/_facet_layout.html.erb +6 -11
  453. data/app/views/hyrax/my/_facet_limit.html.erb +5 -1
  454. data/app/views/hyrax/my/_scripts.js.erb +0 -5
  455. data/app/views/hyrax/my/_search_form.html.erb +14 -0
  456. data/app/views/hyrax/my/_search_header.html.erb +25 -1
  457. data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -27
  458. data/app/views/hyrax/my/_work_action_menu.html.erb +1 -1
  459. data/app/views/hyrax/my/collections/_default_group.html.erb +18 -0
  460. data/app/views/hyrax/my/collections/_facets.html.erb +7 -0
  461. data/app/views/hyrax/my/collections/_list_collections.html.erb +43 -0
  462. data/app/views/hyrax/my/collections/_tabs.html.erb +9 -0
  463. data/app/views/hyrax/my/collections/index.html.erb +38 -0
  464. data/app/views/hyrax/my/index.html.erb +18 -27
  465. data/app/views/hyrax/my/works/_default_group.html.erb +20 -0
  466. data/app/views/hyrax/my/works/_facets.html.erb +7 -0
  467. data/app/views/hyrax/my/works/_list_works.html.erb +40 -0
  468. data/app/views/hyrax/my/works/_tabs.html.erb +9 -0
  469. data/app/views/hyrax/my/works/index.html.erb +62 -0
  470. data/app/views/hyrax/notifications/_notifications.html.erb +37 -0
  471. data/app/views/hyrax/notifications/index.html.erb +15 -0
  472. data/app/views/hyrax/pages/_form.html.erb +82 -0
  473. data/app/views/hyrax/pages/edit.html.erb +9 -0
  474. data/app/views/hyrax/pages/show.html.erb +3 -1
  475. data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
  476. data/app/views/hyrax/stats/file.html.erb +1 -1
  477. data/app/views/hyrax/stats/work.html.erb +1 -1
  478. data/app/views/hyrax/transfers/_received.html.erb +9 -11
  479. data/app/views/hyrax/transfers/_sent.html.erb +7 -9
  480. data/app/views/hyrax/transfers/index.html.erb +27 -5
  481. data/app/views/hyrax/transfers/new.html.erb +9 -3
  482. data/app/views/hyrax/uploads/_js_templates.html.erb +4 -3
  483. data/app/views/hyrax/users/_activity_log.html.erb +7 -2
  484. data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
  485. data/app/views/hyrax/users/_notify_number.html.erb +8 -3
  486. data/app/views/hyrax/users/_profile_tabs.html.erb +1 -1
  487. data/app/views/hyrax/users/_user.html.erb +1 -5
  488. data/app/views/hyrax/users/_user_row.html.erb +3 -3
  489. data/app/views/layouts/_head_tag_content.html.erb +1 -1
  490. data/app/views/layouts/dashboard.html.erb +34 -0
  491. data/app/views/layouts/hyrax.html.erb +13 -34
  492. data/app/views/records/edit_fields/_based_near.html.erb +5 -1
  493. data/app/views/records/edit_fields/{_rights.html.erb → _license.html.erb} +1 -1
  494. data/app/views/records/edit_fields/_rights_statement.html.erb +5 -0
  495. data/app/views/shared/_appearance_styles.html.erb +59 -0
  496. data/app/views/shared/_citations.html.erb +5 -5
  497. data/app/views/shared/_footer.html.erb +1 -1
  498. data/app/views/shared/_select_work_type_modal.html.erb +2 -2
  499. data/artifacts/entity-relationship-diagram.dot +76 -0
  500. data/artifacts/entity-relationship-diagram.pdf +0 -0
  501. data/config/brakeman.ignore +105 -0
  502. data/config/features.rb +4 -0
  503. data/config/i18n-tasks.yml +127 -0
  504. data/config/initializers/hyrax_callbacks.rb +5 -6
  505. data/config/locales/hyrax.de.yml +865 -0
  506. data/config/locales/hyrax.en.yml +224 -102
  507. data/config/locales/hyrax.es.yml +649 -526
  508. data/config/locales/hyrax.fr.yml +865 -0
  509. data/config/locales/hyrax.it.yml +865 -0
  510. data/config/locales/hyrax.pt-BR.yml +865 -0
  511. data/config/locales/hyrax.zh.yml +627 -497
  512. data/config/locales/simple_form.de.yml +10 -0
  513. data/config/locales/simple_form.es.yml +10 -0
  514. data/config/locales/simple_form.fr.yml +10 -0
  515. data/config/locales/simple_form.it.yml +10 -0
  516. data/config/locales/simple_form.pt-BR.yml +10 -0
  517. data/config/locales/simple_form.zh.yml +10 -0
  518. data/config/routes.rb +69 -28
  519. data/db/migrate/20170307142607_tidy_up_because_of_bad_exception.rb +1 -1
  520. data/db/migrate/20170504192714_change_checksum_audit_log.rb +18 -0
  521. data/db/migrate/20170621201939_create_job_io_wrappers.rb +15 -0
  522. data/hyrax.gemspec +23 -27
  523. data/lib/generators/hyrax/assets_generator.rb +1 -0
  524. data/lib/generators/hyrax/clamav_generator.rb +1 -0
  525. data/lib/generators/hyrax/config_generator.rb +6 -0
  526. data/lib/generators/hyrax/install_generator.rb +0 -12
  527. data/lib/generators/hyrax/models_generator.rb +2 -0
  528. data/lib/generators/hyrax/templates/app/models/collection.rb +1 -0
  529. data/lib/generators/hyrax/templates/catalog_controller.rb +4 -4
  530. data/lib/generators/hyrax/templates/config/hyrax.rb +23 -33
  531. data/lib/generators/hyrax/templates/config/locales/hyrax.de.yml +56 -0
  532. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +3 -3
  533. data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +9 -8
  534. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +56 -0
  535. data/lib/generators/hyrax/templates/config/locales/hyrax.it.yml +56 -0
  536. data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +56 -0
  537. data/lib/generators/hyrax/templates/config/locales/hyrax.zh.yml +9 -8
  538. data/lib/generators/hyrax/work/templates/controller.rb.erb +3 -0
  539. data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +1 -1
  540. data/lib/generators/hyrax/work/templates/indexer.rb.erb +19 -0
  541. data/lib/generators/hyrax/work/templates/locale.de.yml.erb +8 -0
  542. data/lib/generators/hyrax/work/templates/locale.fr.yml.erb +8 -0
  543. data/lib/generators/hyrax/work/templates/locale.it.yml.erb +8 -0
  544. data/lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb +8 -0
  545. data/lib/generators/hyrax/work/templates/model.rb.erb +7 -2
  546. data/lib/generators/hyrax/work/templates/presenter.rb.erb +6 -0
  547. data/lib/generators/hyrax/work/templates/presenter_spec.rb.erb +9 -0
  548. data/lib/generators/hyrax/work/work_generator.rb +25 -10
  549. data/lib/hyrax.rb +0 -1
  550. data/lib/hyrax/arkivo/actor.rb +14 -5
  551. data/lib/hyrax/arkivo/create_subscription_job.rb +1 -1
  552. data/lib/hyrax/arkivo/schema_validator.rb +1 -1
  553. data/lib/hyrax/configuration.rb +58 -100
  554. data/lib/hyrax/controller_resource.rb +1 -1
  555. data/lib/hyrax/engine.rb +7 -4
  556. data/lib/hyrax/rails/routes.rb +2 -18
  557. data/lib/hyrax/resource_sync/capability_list_writer.rb +3 -0
  558. data/lib/hyrax/resource_sync/change_list_writer.rb +14 -2
  559. data/lib/hyrax/role_registry.rb +5 -0
  560. data/lib/hyrax/version.rb +1 -1
  561. data/lib/tasks/default_admin_set.rake +12 -1
  562. data/lib/tasks/migrate.rake +21 -4
  563. data/spec/abilities/ability_spec.rb +98 -8
  564. data/spec/abilities/admin_ability_spec.rb +5 -2
  565. data/spec/abilities/admin_set_abilities_spec.rb +2 -2
  566. data/spec/abilities/collection_abilities_spec.rb +5 -2
  567. data/spec/abilities/embargo_and_lease_ability_spec.rb +1 -2
  568. data/spec/abilities/file_set_abilities_spec.rb +8 -5
  569. data/spec/abilities/generic_work_abilities_spec.rb +10 -7
  570. data/spec/abilities/operation_ability_spec.rb +4 -3
  571. data/spec/abilities/proxies_and_transfer_abilities_spec.rb +13 -2
  572. data/spec/actors/hyrax/actors/apply_order_actor_spec.rb +25 -35
  573. data/spec/actors/hyrax/{apply_permission_template_actor_spec.rb → actors/apply_permission_template_actor_spec.rb} +15 -16
  574. data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +16 -16
  575. data/spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb +24 -0
  576. data/spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb +25 -0
  577. data/spec/actors/hyrax/actors/{add_as_member_of_collections_actor_spec.rb → collections_membership_actor_spec.rb} +29 -20
  578. data/spec/actors/hyrax/{create_with_files_actor_spec.rb → actors/create_with_files_actor_spec.rb} +27 -16
  579. data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +68 -0
  580. data/spec/actors/hyrax/{default_admin_set_actor_spec.rb → actors/default_admin_set_actor_spec.rb} +19 -18
  581. data/spec/actors/hyrax/actors/embargo_actor_spec.rb +2 -3
  582. data/spec/actors/hyrax/actors/featured_work_actor_spec.rb +38 -0
  583. data/spec/actors/hyrax/actors/file_actor_spec.rb +102 -35
  584. data/spec/actors/hyrax/actors/file_set_actor_spec.rb +102 -175
  585. data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +86 -54
  586. data/spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb +15 -15
  587. data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +71 -52
  588. data/spec/actors/hyrax/actors/lease_actor_spec.rb +2 -3
  589. data/spec/actors/hyrax/actors/model_actor_spec.rb +26 -0
  590. data/spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb +19 -17
  591. data/spec/actors/hyrax/actors/transactional_request_spec.rb +17 -11
  592. data/spec/authorities/qa/authorities/find_works_spec.rb +6 -9
  593. data/spec/config/hyrax_events_spec.rb +3 -8
  594. data/spec/controllers/catalog_controller_spec.rb +5 -2
  595. data/spec/controllers/hyrax/accepts_batches_controller_spec.rb +6 -6
  596. data/spec/controllers/hyrax/admin/admin_sets_controller_spec.rb +29 -5
  597. data/spec/controllers/hyrax/admin/appearances_controller_spec.rb +66 -0
  598. data/spec/controllers/hyrax/admin/features_controller_spec.rb +4 -2
  599. data/spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb +29 -12
  600. data/spec/controllers/hyrax/admin/permission_templates_controller_spec.rb +2 -4
  601. data/spec/controllers/hyrax/admin/stats_controller_spec.rb +1 -1
  602. data/spec/controllers/hyrax/admin/strategies_controller_spec.rb +2 -15
  603. data/spec/controllers/hyrax/admin/users_controller_spec.rb +3 -13
  604. data/spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb +4 -8
  605. data/spec/controllers/hyrax/admin/workflows_controller_spec.rb +2 -4
  606. data/spec/controllers/hyrax/api/items_controller_spec.rb +22 -15
  607. data/spec/controllers/hyrax/api/zotero_controller_spec.rb +4 -4
  608. data/spec/controllers/hyrax/batch_edits_controller_spec.rb +7 -6
  609. data/spec/controllers/hyrax/batch_uploads_controller_spec.rb +25 -3
  610. data/spec/controllers/hyrax/citations_controller_spec.rb +3 -3
  611. data/spec/controllers/hyrax/collections_controller_spec.rb +7 -229
  612. data/spec/controllers/hyrax/contact_form_controller_spec.rb +11 -3
  613. data/spec/controllers/hyrax/content_blocks_controller_spec.rb +55 -55
  614. data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +353 -0
  615. data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +155 -0
  616. data/spec/controllers/hyrax/dashboard/works_controller_spec.rb +13 -0
  617. data/spec/controllers/hyrax/dashboard_controller_spec.rb +19 -58
  618. data/spec/controllers/hyrax/depositors_controller_spec.rb +1 -1
  619. data/spec/controllers/hyrax/downloads_controller_spec.rb +19 -15
  620. data/spec/controllers/hyrax/embargoes_controller_spec.rb +106 -0
  621. data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +3 -3
  622. data/spec/controllers/hyrax/featured_works_controller_spec.rb +1 -1
  623. data/spec/controllers/hyrax/file_sets_controller_spec.rb +26 -25
  624. data/spec/controllers/hyrax/{audits_controller_spec.rb → fixity_checks_controller_spec.rb} +17 -10
  625. data/spec/controllers/hyrax/generic_works_controller_json_spec.rb +6 -10
  626. data/spec/controllers/hyrax/generic_works_controller_spec.rb +104 -82
  627. data/spec/controllers/hyrax/homepage_controller_spec.rb +19 -26
  628. data/spec/controllers/hyrax/leases_controller_spec.rb +106 -0
  629. data/spec/controllers/hyrax/my/collections_controller_spec.rb +23 -16
  630. data/spec/controllers/hyrax/my/highlights_controller_spec.rb +2 -3
  631. data/spec/controllers/hyrax/my/shares_controller_spec.rb +2 -1
  632. data/spec/controllers/hyrax/my/works_controller_spec.rb +33 -30
  633. data/spec/controllers/hyrax/{mailbox_controller_spec.rb → notifications_controller_spec.rb} +2 -2
  634. data/spec/controllers/hyrax/operations_controller_spec.rb +2 -3
  635. data/spec/controllers/hyrax/pages_controller_spec.rb +100 -12
  636. data/spec/controllers/hyrax/permissions_controller_spec.rb +7 -3
  637. data/spec/controllers/hyrax/resource_sync_controller_spec.rb +1 -1
  638. data/spec/controllers/hyrax/single_use_links_controller_spec.rb +4 -3
  639. data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +1 -3
  640. data/spec/controllers/hyrax/static_controller_spec.rb +1 -1
  641. data/spec/controllers/hyrax/stats_controller_spec.rb +10 -7
  642. data/spec/controllers/hyrax/transfers_controller_spec.rb +12 -31
  643. data/spec/controllers/hyrax/uploads_controller_spec.rb +3 -1
  644. data/spec/controllers/hyrax/users_controller_spec.rb +17 -166
  645. data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +3 -4
  646. data/spec/conversions/power_converters/polymorphic_type_spec.rb +1 -1
  647. data/spec/conversions/power_converters/sipity_action_name_spec.rb +1 -1
  648. data/spec/conversions/power_converters/sipity_action_spec.rb +1 -1
  649. data/spec/conversions/power_converters/sipity_entity_spec.rb +5 -0
  650. data/spec/conversions/power_converters/sipity_role_spec.rb +0 -2
  651. data/spec/conversions/power_converters/sipity_workflow_state_spec.rb +1 -2
  652. data/spec/factories/admin_sets.rb +1 -1
  653. data/spec/factories/api_items.rb +3 -3
  654. data/spec/factories/collections_factory.rb +2 -2
  655. data/spec/factories/content_blocks.rb +1 -1
  656. data/spec/factories/featured_works.rb +1 -1
  657. data/spec/factories/file_sets.rb +3 -36
  658. data/spec/factories/generic_works.rb +15 -15
  659. data/spec/factories/operations.rb +1 -1
  660. data/spec/factories/permission_template_accesses.rb +5 -2
  661. data/spec/factories/permission_templates.rb +1 -1
  662. data/spec/factories/proxy_deposit_requests.rb +2 -2
  663. data/spec/factories/single_use_links.rb +1 -1
  664. data/spec/factories/sipity_entities.rb +1 -1
  665. data/spec/factories/uploaded_files.rb +1 -1
  666. data/spec/factories/users.rb +2 -2
  667. data/spec/factories/workflow_actions.rb +1 -1
  668. data/spec/factories/workflow_states.rb +1 -1
  669. data/spec/factories/workflows.rb +1 -1
  670. data/spec/features/admin_admin_set_spec.rb +5 -8
  671. data/spec/features/admin_spec.rb +2 -4
  672. data/spec/features/batch_create_spec.rb +1 -1
  673. data/spec/features/batch_edit_spec.rb +47 -115
  674. data/spec/features/browse_catalog_spec.rb +1 -1
  675. data/spec/features/browse_dashboard_works_spec.rb +55 -0
  676. data/spec/features/catalog_search_spec.rb +1 -1
  677. data/spec/features/collection_spec.rb +14 -222
  678. data/spec/features/contact_form_spec.rb +1 -1
  679. data/spec/features/create_child_work_spec.rb +3 -2
  680. data/spec/features/create_work_spec.rb +52 -41
  681. data/spec/features/dashboard/all_works.rb +14 -0
  682. data/spec/features/dashboard/collection_spec.rb +262 -0
  683. data/spec/features/dashboard/display_dashboard_spec.rb +18 -0
  684. data/spec/features/delete_work_spec.rb +1 -1
  685. data/spec/features/edit_file_spec.rb +1 -1
  686. data/spec/features/edit_work_spec.rb +1 -1
  687. data/spec/features/embargo_spec.rb +35 -0
  688. data/spec/features/homepage_spec.rb +5 -8
  689. data/spec/features/lease_spec.rb +35 -0
  690. data/spec/features/notifications_spec.rb +4 -3
  691. data/spec/features/ownership_transfer_spec.rb +8 -7
  692. data/spec/features/proxy_spec.rb +11 -4
  693. data/spec/features/search_spec.rb +3 -3
  694. data/spec/features/static_pages_spec.rb +0 -2
  695. data/spec/features/users_spec.rb +3 -12
  696. data/spec/features/work_generator_spec.rb +5 -3
  697. data/spec/features/work_show_spec.rb +4 -1
  698. data/spec/features/workflow_roles_spec.rb +2 -3
  699. data/spec/features/workflow_state_changes_spec.rb +2 -3
  700. data/spec/fixtures/config/schema_org.yml +2 -0
  701. data/spec/fixtures/config/schema_org_second.yml +7 -0
  702. data/spec/forms/hyrax/forms/admin/appearance_spec.rb +46 -0
  703. data/spec/forms/hyrax/forms/admin_set_form_spec.rb +71 -3
  704. data/spec/forms/hyrax/forms/batch_edit_form_spec.rb +10 -6
  705. data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +9 -3
  706. data/spec/forms/hyrax/forms/collection_form_spec.rb +39 -13
  707. data/spec/forms/hyrax/forms/file_manager_form_spec.rb +2 -2
  708. data/spec/forms/hyrax/forms/file_set_edit_form_spec.rb +3 -4
  709. data/spec/forms/hyrax/forms/permission_template_form_spec.rb +58 -5
  710. data/spec/forms/hyrax/forms/work_form_spec.rb +70 -16
  711. data/spec/forms/hyrax/forms/workflow_action_form_spec.rb +23 -7
  712. data/spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb +3 -3
  713. data/spec/forms/hyrax/generic_work_form_spec.rb +14 -7
  714. data/spec/helpers/blacklight_helper_spec.rb +32 -19
  715. data/spec/helpers/dashboard_helper_spec.rb +4 -19
  716. data/spec/helpers/hyrax/ability_helper_spec.rb +10 -5
  717. data/spec/helpers/{batch_edits_helper_spec.rb → hyrax/batch_edits_helper_spec.rb} +6 -1
  718. data/spec/helpers/hyrax/charts_helper_spec.rb +4 -3
  719. data/spec/helpers/hyrax/collections_helper_spec.rb +11 -10
  720. data/spec/helpers/hyrax/content_block_helper_spec.rb +22 -51
  721. data/spec/helpers/hyrax/file_set_helper_spec.rb +8 -4
  722. data/spec/helpers/hyrax/trophy_helper_spec.rb +2 -2
  723. data/spec/helpers/hyrax_helper_spec.rb +49 -3
  724. data/spec/indexers/hyrax/collection_indexer_spec.rb +24 -11
  725. data/spec/indexers/hyrax/file_set_indexer_spec.rb +36 -37
  726. data/spec/indexers/hyrax/{work_indexer_spec.rb → generic_work_indexer_spec.rb} +42 -5
  727. data/spec/inputs/controlled_vocabulary_input_spec.rb +57 -0
  728. data/spec/inputs/multifile_input_spec.rb +2 -3
  729. data/spec/javascripts/authority_select_spec.js +22 -0
  730. data/spec/javascripts/autocomplete_spec.js.coffee +16 -8
  731. data/spec/javascripts/batch_select_spec.js +15 -0
  732. data/spec/javascripts/fixtures/chart_example.html +1 -1
  733. data/spec/javascripts/fixtures/dashboard_batch_forms.html +11 -0
  734. data/spec/javascripts/jasmine_spec.rb +1 -1
  735. data/spec/javascripts/save_work_spec.js +19 -6
  736. data/spec/javascripts/visibility_component_spec.js +17 -36
  737. data/spec/jobs/attach_files_to_work_job_spec.rb +17 -16
  738. data/spec/jobs/batch_create_job_spec.rb +2 -1
  739. data/spec/jobs/characterize_job_spec.rb +24 -12
  740. data/spec/jobs/content_delete_event_job_spec.rb +1 -1
  741. data/spec/jobs/content_deposit_event_job_spec.rb +6 -7
  742. data/spec/jobs/content_depositor_change_event_job_spec.rb +4 -3
  743. data/spec/jobs/content_new_version_event_job_spec.rb +2 -2
  744. data/spec/jobs/content_restored_version_event_job_spec.rb +3 -2
  745. data/spec/jobs/content_update_event_job_spec.rb +6 -7
  746. data/spec/jobs/create_derivatives_job_spec.rb +1 -3
  747. data/spec/jobs/create_work_job_spec.rb +10 -7
  748. data/spec/jobs/file_set_attached_event_job_spec.rb +3 -3
  749. data/spec/jobs/fixity_check_job_spec.rb +51 -0
  750. data/spec/jobs/hyrax/grant_edit_job_spec.rb +11 -0
  751. data/spec/jobs/hyrax/grant_edit_to_members_job_spec.rb +16 -0
  752. data/spec/jobs/hyrax/grant_read_job_spec.rb +11 -0
  753. data/spec/jobs/hyrax/grant_read_to_members_job_spec.rb +16 -0
  754. data/spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb +16 -0
  755. data/spec/jobs/hyrax/revoke_edit_job_spec.rb +11 -0
  756. data/spec/jobs/import_export_job_spec.rb +28 -0
  757. data/spec/jobs/import_url_job_spec.rb +3 -19
  758. data/spec/jobs/ingest_local_file_job_spec.rb +1 -3
  759. data/spec/jobs/inherit_permissions_job_spec.rb +1 -3
  760. data/spec/jobs/user_edit_profile_event_job_spec.rb +2 -1
  761. data/spec/jobs/visibility_copy_job_spec.rb +3 -5
  762. data/spec/lib/hyrax/analytics_spec.rb +1 -1
  763. data/spec/lib/hyrax/arkivo/actor_spec.rb +18 -16
  764. data/spec/lib/hyrax/arkivo/create_subscription_job_spec.rb +1 -3
  765. data/spec/lib/hyrax/arkivo/metadata_munger_spec.rb +2 -4
  766. data/spec/lib/hyrax/arkivo/schema_validator_spec.rb +5 -7
  767. data/spec/lib/hyrax/arkivo_spec.rb +1 -3
  768. data/spec/lib/hyrax/collections/search_service_spec.rb +2 -3
  769. data/spec/lib/hyrax/configuration_spec.rb +14 -13
  770. data/spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb +3 -1
  771. data/spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb +1 -1
  772. data/spec/lib/hyrax/move_all_works_to_admin_set_spec.rb +2 -2
  773. data/spec/lib/hyrax/name_spec.rb +4 -3
  774. data/spec/lib/hyrax/redis_event_store_spec.rb +5 -1
  775. data/spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb +1 -3
  776. data/spec/lib/hyrax/resource_sync/change_list_writer_spec.rb +38 -28
  777. data/spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb +2 -4
  778. data/spec/lib/hyrax/resource_sync/source_description_writer_spec.rb +1 -4
  779. data/spec/lib/hyrax/role_registry_spec.rb +9 -2
  780. data/spec/lib/hyrax/search_state_spec.rb +3 -2
  781. data/spec/lib/hyrax/zotero/config_spec.rb +2 -4
  782. data/spec/lib/hyrax/zotero_spec.rb +2 -1
  783. data/spec/models/admin_set_spec.rb +26 -12
  784. data/spec/models/batch_upload_item_spec.rb +1 -2
  785. data/spec/models/checksum_audit_log_spec.rb +131 -35
  786. data/spec/models/collection_spec.rb +5 -2
  787. data/spec/models/content_block_spec.rb +158 -49
  788. data/spec/models/featured_work_list_spec.rb +32 -11
  789. data/spec/models/featured_work_spec.rb +5 -1
  790. data/spec/models/file_download_stat_spec.rb +9 -6
  791. data/spec/models/file_set_spec.rb +84 -57
  792. data/spec/models/file_view_stat_spec.rb +5 -4
  793. data/spec/models/flipflop_spec.rb +11 -2
  794. data/spec/models/generic_work_spec.rb +14 -42
  795. data/spec/models/hyrax/download_spec.rb +1 -1
  796. data/spec/models/hyrax/operation_spec.rb +10 -3
  797. data/spec/models/hyrax/pageview_spec.rb +1 -1
  798. data/spec/models/hyrax/permission_template_access_spec.rb +57 -0
  799. data/spec/models/hyrax/permission_template_spec.rb +38 -1
  800. data/spec/models/hyrax/permissions/readable_permissions_spec.rb +4 -6
  801. data/spec/models/hyrax/permissions/writable_permissions_spec.rb +1 -3
  802. data/spec/models/hyrax/uploaded_file_spec.rb +2 -1
  803. data/spec/models/hyrax/user_usage_stats_spec.rb +2 -2
  804. data/spec/models/hyrax/work_behavior_spec.rb +4 -5
  805. data/spec/models/job_io_wrapper_spec.rb +172 -0
  806. data/spec/models/proxy_deposit_request_spec.rb +4 -5
  807. data/spec/models/single_use_link_spec.rb +3 -3
  808. data/spec/models/sipity/agent_spec.rb +1 -2
  809. data/spec/models/sipity/comment_spec.rb +3 -1
  810. data/spec/models/sipity/entity_spec.rb +2 -3
  811. data/spec/models/sipity/entity_specific_responsibility_spec.rb +1 -0
  812. data/spec/models/sipity/notifiable_context_spec.rb +1 -2
  813. data/spec/models/sipity/notification_recipient_spec.rb +1 -2
  814. data/spec/models/sipity/notification_spec.rb +2 -2
  815. data/spec/models/sipity/role_spec.rb +1 -2
  816. data/spec/models/sipity/workflow_action_spec.rb +1 -0
  817. data/spec/models/sipity/workflow_responsibility_spec.rb +1 -0
  818. data/spec/models/sipity/workflow_spec.rb +4 -0
  819. data/spec/models/sipity/workflow_state_action_permission_spec.rb +1 -0
  820. data/spec/models/sipity/workflow_state_action_spec.rb +1 -0
  821. data/spec/models/sipity/workflow_state_spec.rb +2 -0
  822. data/spec/models/solr_document_spec.rb +57 -3
  823. data/spec/models/trophy_spec.rb +1 -1
  824. data/spec/models/user_mailbox_spec.rb +4 -1
  825. data/spec/models/user_spec.rb +33 -10
  826. data/spec/models/work_view_stat_spec.rb +8 -4
  827. data/spec/presenters/hyrax/admin/dashboard_presenter_spec.rb +3 -2
  828. data/spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb +1 -2
  829. data/spec/presenters/hyrax/admin/repository_object_presenter_spec.rb +2 -2
  830. data/spec/presenters/hyrax/admin/user_activity_presenter_spec.rb +1 -2
  831. data/spec/presenters/hyrax/admin/users_presenter_spec.rb +3 -3
  832. data/spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb +0 -2
  833. data/spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb +0 -2
  834. data/spec/presenters/hyrax/admin_set_options_presenter_spec.rb +4 -4
  835. data/spec/presenters/hyrax/admin_set_presenter_spec.rb +14 -19
  836. data/spec/presenters/hyrax/admin_stats_presenter_spec.rb +20 -114
  837. data/spec/presenters/hyrax/collection_options_presenter_spec.rb +1 -2
  838. data/spec/presenters/hyrax/collection_presenter_spec.rb +13 -2
  839. data/spec/presenters/hyrax/dashboard/user_presenter_spec.rb +65 -0
  840. data/spec/presenters/hyrax/embargo_presenter_spec.rb +6 -3
  841. data/spec/presenters/hyrax/file_set_presenter_spec.rb +38 -15
  842. data/spec/presenters/hyrax/file_usage_spec.rb +14 -10
  843. data/spec/presenters/hyrax/fixity_status_presenter_spec.rb +55 -0
  844. data/spec/presenters/hyrax/homepage_presenter_spec.rb +30 -10
  845. data/spec/presenters/hyrax/inspect_work_presenter_spec.rb +3 -2
  846. data/spec/presenters/hyrax/lease_presenter_spec.rb +6 -3
  847. data/spec/presenters/hyrax/member_presenter_factory_spec.rb +5 -4
  848. data/spec/presenters/hyrax/menu_presenter_spec.rb +51 -7
  849. data/spec/presenters/hyrax/permission_badge_spec.rb +14 -9
  850. data/spec/presenters/hyrax/presenter_factory_spec.rb +10 -9
  851. data/spec/presenters/hyrax/presenter_renderer_spec.rb +3 -1
  852. data/spec/presenters/hyrax/select_type_list_presenter_spec.rb +10 -3
  853. data/spec/presenters/hyrax/select_type_presenter_spec.rb +43 -2
  854. data/spec/presenters/hyrax/single_use_link_presenter_spec.rb +3 -3
  855. data/spec/presenters/hyrax/transfers_presenter_spec.rb +44 -0
  856. data/spec/presenters/hyrax/trophy_presenter_spec.rb +7 -0
  857. data/spec/presenters/hyrax/twitter_presenter_spec.rb +27 -0
  858. data/spec/presenters/hyrax/user_profile_presenter_spec.rb +2 -0
  859. data/spec/presenters/hyrax/version_list_presenter_spec.rb +1 -3
  860. data/spec/presenters/hyrax/version_presenter_spec.rb +6 -3
  861. data/spec/presenters/hyrax/work_show_presenter_spec.rb +63 -6
  862. data/spec/presenters/hyrax/work_usage_spec.rb +13 -7
  863. data/spec/presenters/hyrax/workflow_presenter_spec.rb +24 -2
  864. data/spec/renderers/hyrax/renderers/attribute_renderer_spec.rb +7 -5
  865. data/spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb +4 -3
  866. data/spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb +3 -3
  867. data/spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb +15 -3
  868. data/spec/renderers/hyrax/renderers/{rights_attribute_renderer_spec.rb → license_attribute_renderer_spec.rb} +7 -7
  869. data/spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb +3 -3
  870. data/spec/requests/legacy_routing_spec.rb +1 -1
  871. data/spec/routing/admin_routes_spec.rb +4 -3
  872. data/spec/routing/api_route_spec.rb +1 -1
  873. data/spec/routing/citations_route_spec.rb +1 -1
  874. data/spec/routing/featured_works_route_spec.rb +1 -1
  875. data/spec/routing/operations_spec.rb +1 -1
  876. data/spec/routing/ownership_transfers_route_spec.rb +1 -1
  877. data/spec/routing/resource_sync_spec.rb +1 -1
  878. data/spec/routing/route_spec.rb +51 -26
  879. data/spec/routing/single_use_link_spec.rb +1 -3
  880. data/spec/routing/stats_route_spec.rb +1 -1
  881. data/spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb +1 -2
  882. data/spec/{search_builder → search_builders}/hyrax/admin_set_search_builder_spec.rb +7 -9
  883. data/spec/{search_builder → search_builders}/hyrax/catalog_search_builder_spec.rb +4 -1
  884. data/spec/{search_builder → search_builders}/hyrax/embargo_search_builder_spec.rb +3 -3
  885. data/spec/{search_builder → search_builders}/hyrax/file_set_search_builder_spec.rb +2 -3
  886. data/spec/{search_builder → search_builders}/hyrax/lease_search_builder_spec.rb +3 -3
  887. data/spec/{search_builder/hyrax → search_builders/hyrax/my}/find_works_search_builder_spec.rb +6 -3
  888. data/spec/{search_builder/hyrax/my_shares_search_builder_spec.rb → search_builders/hyrax/my/shares_search_builder_spec.rb} +1 -1
  889. data/spec/{search_builder/hyrax/my_works_search_builder_spec.rb → search_builders/hyrax/my/works_search_builder_spec.rb} +3 -1
  890. data/spec/{search_builder → search_builders}/hyrax/single_admin_set_search_builder_spec.rb +2 -2
  891. data/spec/{search_builder → search_builders}/hyrax/stats/work_status_search_builder_spec.rb +0 -2
  892. data/spec/{search_builder → search_builders}/hyrax/work_relation_spec.rb +2 -3
  893. data/spec/{search_builder → search_builders}/hyrax/work_search_builder_spec.rb +5 -1
  894. data/spec/search_builders/hyrax/works_search_builder_spec.rb +1 -2
  895. data/spec/services/hyrax/admin_set_create_service_spec.rb +32 -15
  896. data/spec/services/hyrax/admin_set_service_spec.rb +13 -7
  897. data/spec/services/hyrax/batch_create_failure_service_spec.rb +1 -1
  898. data/spec/services/hyrax/batch_create_success_service_spec.rb +1 -1
  899. data/spec/services/hyrax/change_content_depositor_service_spec.rb +1 -1
  900. data/spec/services/hyrax/collection_member_service_spec.rb +1 -1
  901. data/spec/services/hyrax/collection_size_service_spec.rb +1 -1
  902. data/spec/services/hyrax/collections_service_spec.rb +5 -3
  903. data/spec/services/hyrax/curation_concern_spec.rb +4 -5
  904. data/spec/services/hyrax/default_middleware_stack_spec.rb +36 -0
  905. data/spec/services/hyrax/derivative_path_spec.rb +7 -3
  906. data/spec/services/hyrax/derivative_service_spec.rb +4 -1
  907. data/spec/services/hyrax/embargo_service_spec.rb +6 -7
  908. data/spec/services/hyrax/file_set_csv_service_spec.rb +19 -10
  909. data/spec/services/hyrax/file_set_derivatives_service_spec.rb +2 -1
  910. data/spec/services/hyrax/file_set_fixity_check_service_spec.rb +116 -0
  911. data/spec/services/hyrax/fixity_check_failure_service_spec.rb +29 -0
  912. data/spec/services/hyrax/graph_exporter_spec.rb +3 -2
  913. data/spec/services/hyrax/import_url_failure_service_spec.rb +1 -1
  914. data/spec/services/hyrax/lease_service_spec.rb +2 -5
  915. data/spec/services/hyrax/license_service_spec.rb +1 -3
  916. data/spec/services/hyrax/lock_manager_spec.rb +2 -3
  917. data/spec/services/hyrax/microdata_spec.rb +94 -0
  918. data/spec/services/hyrax/noid_spec.rb +3 -6
  919. data/spec/services/hyrax/parent_service_spec.rb +0 -2
  920. data/spec/services/hyrax/persist_derivatives_spec.rb +1 -3
  921. data/spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb +2 -3
  922. data/spec/services/hyrax/qa_select_service_spec.rb +8 -4
  923. data/spec/services/hyrax/query_service_spec.rb +17 -1
  924. data/spec/services/hyrax/quick_classification_query_spec.rb +6 -3
  925. data/spec/services/hyrax/repository_fixity_check_service_spec.rb +18 -0
  926. data/spec/services/hyrax/resource_types_service_spec.rb +4 -3
  927. data/spec/services/hyrax/rights_statements_spec.rb +1 -3
  928. data/spec/services/hyrax/statistics/collections/over_time_spec.rb +1 -1
  929. data/spec/services/hyrax/statistics/depositors/summary_spec.rb +10 -2
  930. data/spec/services/hyrax/statistics/file_sets/by_format_spec.rb +4 -5
  931. data/spec/services/hyrax/statistics/system_stats_spec.rb +5 -4
  932. data/spec/services/hyrax/statistics/users/over_time_spec.rb +1 -2
  933. data/spec/services/hyrax/statistics/works/by_depositor_spec.rb +3 -4
  934. data/spec/services/hyrax/statistics/works/by_resource_type_spec.rb +1 -1
  935. data/spec/services/hyrax/statistics/works/count_spec.rb +7 -7
  936. data/spec/services/hyrax/statistics/works/over_time_spec.rb +1 -1
  937. data/spec/services/hyrax/thumbnail_path_service_spec.rb +12 -4
  938. data/spec/services/hyrax/user_stat_importer_spec.rb +52 -46
  939. data/spec/services/hyrax/versioning_service_spec.rb +1 -3
  940. data/spec/services/hyrax/work_query_service_spec.rb +6 -0
  941. data/spec/services/hyrax/workflow/action_taken_service_spec.rb +2 -2
  942. data/spec/services/hyrax/workflow/activate_object_spec.rb +1 -1
  943. data/spec/services/hyrax/workflow/changes_required_notification_spec.rb +4 -5
  944. data/spec/services/hyrax/workflow/deactivate_object_spec.rb +1 -1
  945. data/spec/services/hyrax/workflow/deposited_notification_spec.rb +4 -5
  946. data/spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb +19 -1
  947. data/spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb +48 -0
  948. data/spec/services/hyrax/workflow/method_generator_spec.rb +1 -2
  949. data/spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb +1 -2
  950. data/spec/services/hyrax/workflow/notification_generator_spec.rb +3 -3
  951. data/spec/services/hyrax/workflow/notification_service_spec.rb +37 -3
  952. data/spec/services/hyrax/workflow/pending_review_notification_spec.rb +4 -5
  953. data/spec/services/hyrax/workflow/permission_generator_spec.rb +4 -6
  954. data/spec/services/hyrax/workflow/permission_query_spec.rb +25 -3
  955. data/spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb +16 -3
  956. data/spec/services/hyrax/workflow/sipity_actions_generator_spec.rb +0 -2
  957. data/spec/services/hyrax/workflow/state_machine_generator_spec.rb +12 -13
  958. data/spec/services/hyrax/workflow/status_list_service_spec.rb +2 -4
  959. data/spec/services/hyrax/workflow/workflow_factory_spec.rb +2 -1
  960. data/spec/services/hyrax/workflow/workflow_importer_spec.rb +7 -0
  961. data/spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb +2 -0
  962. data/spec/services/hyrax/workflow/workflow_schema_spec.rb +2 -2
  963. data/spec/services/hyrax/working_directory_spec.rb +3 -3
  964. data/spec/spec_helper.rb +35 -61
  965. data/spec/strategies/hyrax/strategies/yaml_strategy_spec.rb +2 -2
  966. data/spec/support/controller_level_helpers.rb +1 -0
  967. data/spec/support/features.rb +2 -2
  968. data/spec/support/features/batch_edit_actions.rb +28 -0
  969. data/spec/support/features/session_helpers.rb +1 -1
  970. data/spec/support/features/workflow.rb +9 -0
  971. data/spec/support/logging_formatter.rb +66 -0
  972. data/spec/support/spec_statistic.rb +23 -0
  973. data/spec/tasks/rake_spec.rb +1 -1
  974. data/spec/test_app_templates/disable_animations_in_test_environment.rb +54 -0
  975. data/spec/test_app_templates/lib/generators/test_app_generator.rb +10 -1
  976. data/spec/views/_flash_msg.html.erb_spec.rb +4 -1
  977. data/spec/views/_user_util_links.html.erb_spec.rb +8 -8
  978. data/spec/views/catalog/_index_list_default.html.erb_spec.rb +1 -0
  979. data/spec/views/catalog/_search_form.html.erb_spec.rb +0 -2
  980. data/spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb +1 -1
  981. data/spec/views/catalog/index.html.erb_spec.rb +1 -1
  982. data/spec/views/content_blocks/edit.html.erb_spec.rb +21 -0
  983. data/spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb +7 -3
  984. data/spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb +6 -2
  985. data/spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb +1 -2
  986. data/spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb +0 -2
  987. data/spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb +1 -2
  988. data/spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb +4 -18
  989. data/spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb +2 -2
  990. data/spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb +11 -2
  991. data/spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb +30 -0
  992. data/spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb +7 -9
  993. data/spec/views/hyrax/admin/features/index.html.erb_spec.rb +2 -1
  994. data/spec/views/hyrax/admin/stats/show.html.erb_spec.rb +6 -1
  995. data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +2 -2
  996. data/spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb +17 -10
  997. data/spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb +11 -4
  998. data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +1 -3
  999. data/spec/views/hyrax/base/_browse_everything.html.erb_spec.rb +7 -4
  1000. data/spec/views/hyrax/base/_citations.html.erb_spec.rb +2 -3
  1001. data/spec/views/hyrax/base/_find_work_widget.html.erb_spec.rb +1 -2
  1002. data/spec/views/hyrax/base/_form.html.erb_spec.rb +30 -7
  1003. data/spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb +4 -3
  1004. data/spec/views/hyrax/base/_form_metadata.html.erb_spec.rb +40 -0
  1005. data/spec/views/hyrax/base/_form_progress.html.erb_spec.rb +17 -8
  1006. data/spec/views/hyrax/base/_form_relationships.html.erb_spec.rb +7 -8
  1007. data/spec/views/hyrax/base/_items.html.erb_spec.rb +25 -34
  1008. data/spec/views/hyrax/base/_member.html.erb_spec.rb +6 -4
  1009. data/spec/views/hyrax/base/_relationships.html.erb_spec.rb +9 -48
  1010. data/spec/views/hyrax/base/_show_actions.html.erb_spec.rb +8 -11
  1011. data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +1 -3
  1012. data/spec/views/hyrax/base/edit.html.erb_spec.rb +4 -4
  1013. data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +1 -3
  1014. data/spec/views/hyrax/base/show.html.erb_spec.rb +151 -7
  1015. data/spec/views/hyrax/base/show.json.jbuilder_spec.rb +3 -5
  1016. data/spec/views/hyrax/base/unauthorized.html.erb_spec.rb +3 -3
  1017. data/spec/views/hyrax/base/unavailable.html.erb_spec.rb +6 -6
  1018. data/spec/views/hyrax/batch_edits/check_all_spec.rb +1 -1
  1019. data/spec/views/hyrax/batch_edits/edit.html.erb_spec.rb +8 -4
  1020. data/spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb +5 -8
  1021. data/spec/views/hyrax/citations/work.html.erb_spec.rb +1 -1
  1022. data/spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb +14 -9
  1023. data/spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb +14 -18
  1024. data/spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb +1 -2
  1025. data/spec/views/hyrax/collections/show.html.erb_spec.rb +2 -7
  1026. data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +105 -0
  1027. data/spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb +56 -0
  1028. data/spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb +55 -0
  1029. data/spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb +42 -0
  1030. data/spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb +32 -0
  1031. data/spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb +24 -0
  1032. data/spec/views/hyrax/{collections → dashboard/collections}/_show_document_list_menu.html.erb_spec.rb +6 -6
  1033. data/spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb +31 -0
  1034. data/spec/views/hyrax/{collections → dashboard/collections}/edit.html.erb_spec.rb +4 -4
  1035. data/spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb +37 -0
  1036. data/spec/views/hyrax/{users → dashboard/profiles}/edit.html.erb_spec.rb +3 -2
  1037. data/spec/views/hyrax/dashboard/show_user_spec.rb +34 -0
  1038. data/spec/views/hyrax/embargoes/index.html.erb_spec.rb +14 -0
  1039. data/spec/views/hyrax/file_sets/_permission.html.erb_spec.rb +1 -3
  1040. data/spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb +1 -3
  1041. data/spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb +2 -3
  1042. data/spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb +2 -5
  1043. data/spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb +2 -3
  1044. data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +1 -1
  1045. data/spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb +1 -3
  1046. data/spec/views/hyrax/file_sets/show.html.erb_spec.rb +13 -8
  1047. data/spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb +0 -2
  1048. data/spec/views/hyrax/homepage/_announcement.html.erb_spec.rb +5 -28
  1049. data/spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb +4 -1
  1050. data/spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb +3 -1
  1051. data/spec/views/hyrax/homepage/index.html.erb_spec.rb +5 -2
  1052. data/spec/views/hyrax/leases/index.html.erb_spec.rb +14 -0
  1053. data/spec/views/hyrax/my/{_sort_and_per_page.html.erb_spec.rb → _search_header.html.erb_spec.rb} +10 -11
  1054. data/spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb +1 -3
  1055. data/spec/views/hyrax/my/{_list_collections.html.erb_spec.rb → collections/_list_collections.html.erb_spec.rb} +5 -5
  1056. data/spec/views/hyrax/my/facet.html.erb_spec.rb +2 -1
  1057. data/spec/views/hyrax/my/{_list_works.html.erb_spec.rb → works/_list_works.html.erb_spec.rb} +3 -3
  1058. data/spec/views/hyrax/my/works/index.html.erb_spec.rb +64 -0
  1059. data/spec/views/hyrax/permissions/confirm.html.erb_spec.rb +4 -5
  1060. data/spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb +1 -12
  1061. data/spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb +1 -3
  1062. data/spec/views/hyrax/stats/file.html.erb_spec.rb +1 -1
  1063. data/spec/views/hyrax/uploads/create.json.jbuilder_spec.rb +1 -3
  1064. data/spec/views/hyrax/users/_user_info.html.erb_spec.rb +1 -1
  1065. data/spec/views/hyrax/users/index.html.erb_spec.rb +2 -1
  1066. data/spec/views/hyrax/users/show.html.erb_spec.rb +1 -1
  1067. data/spec/views/layouts/error.html.erb_spec.rb +1 -3
  1068. data/spec/views/pages/edit.html.erb_spec.rb +27 -0
  1069. data/spec/views/pages/show.html.erb_spec.rb +16 -0
  1070. data/spec/views/records/edit_fields/_based_near.html.erb_spec.rb +1 -1
  1071. data/spec/views/records/edit_fields/_description.html.erb_spec.rb +2 -1
  1072. data/spec/views/records/edit_fields/_language.html.erb_spec.rb +1 -1
  1073. data/spec/views/records/edit_fields/_subject.html.erb_spec.rb +1 -1
  1074. data/spec/views/shared/select_work_type_modal.html.erb_spec.rb +4 -11
  1075. data/tasks/{hyrax-dev.rake → hyrax_dev.rake} +2 -2
  1076. data/template.rb +1 -5
  1077. data/vendor/assets/javascripts/handlebars-v4.0.5.js +4612 -0
  1078. metadata +453 -396
  1079. data/CONTRIBUTING.md +0 -159
  1080. data/app/actors/hyrax/actors/actor_stack.rb +0 -70
  1081. data/app/actors/hyrax/actors/add_as_member_of_collections_actor.rb +0 -26
  1082. data/app/actors/hyrax/actors/attach_files_actor.rb +0 -53
  1083. data/app/actors/hyrax/actors/root_actor.rb +0 -20
  1084. data/app/actors/hyrax/apply_permission_template_actor.rb +0 -21
  1085. data/app/actors/hyrax/create_with_files_actor.rb +0 -46
  1086. data/app/actors/hyrax/create_with_remote_files_actor.rb +0 -71
  1087. data/app/actors/hyrax/default_admin_set_actor.rb +0 -42
  1088. data/app/assets/javascripts/batch_edit.js.coffee +0 -166
  1089. data/app/assets/javascripts/hyrax/batch_select.js +0 -10
  1090. data/app/assets/javascripts/hyrax/featured_researcher.js +0 -14
  1091. data/app/assets/stylesheets/hyrax/_dashboard.scss +0 -153
  1092. data/app/assets/stylesheets/hyrax/_multi_value_fields.css.scss +0 -18
  1093. data/app/assets/stylesheets/hyrax/admin.scss +0 -178
  1094. data/app/controllers/concerns/hydra/batch_edit_behavior.rb +0 -73
  1095. data/app/controllers/concerns/hyrax/batch_edits_controller_behavior.rb +0 -84
  1096. data/app/controllers/concerns/hyrax/batch_uploads_controller_behavior.rb +0 -69
  1097. data/app/controllers/concerns/hyrax/contact_form_controller_behavior.rb +0 -45
  1098. data/app/controllers/concerns/hyrax/curation_concern_controller.rb +0 -241
  1099. data/app/controllers/concerns/hyrax/dashboard_controller_behavior.rb +0 -47
  1100. data/app/controllers/concerns/hyrax/depositors_controller_behavior.rb +0 -48
  1101. data/app/controllers/concerns/hyrax/download_behavior.rb +0 -87
  1102. data/app/controllers/concerns/hyrax/file_sets_controller_behavior.rb +0 -273
  1103. data/app/controllers/concerns/hyrax/homepage_controller_behavior.rb +0 -52
  1104. data/app/controllers/concerns/hyrax/my_controller_behavior.rb +0 -59
  1105. data/app/controllers/concerns/hyrax/permissions_controller_behavior.rb +0 -38
  1106. data/app/controllers/concerns/hyrax/single_use_links_controller_behavior.rb +0 -53
  1107. data/app/controllers/concerns/hyrax/single_use_links_viewer_controller_behavior.rb +0 -85
  1108. data/app/controllers/concerns/hyrax/transfers_controller_behavior.rb +0 -80
  1109. data/app/controllers/concerns/hyrax/uploads_controller_behavior.rb +0 -18
  1110. data/app/controllers/concerns/hyrax/users_controller_behavior.rb +0 -113
  1111. data/app/controllers/hyrax/admin_controller.rb +0 -20
  1112. data/app/controllers/hyrax/admin_sets_controller.rb +0 -25
  1113. data/app/controllers/hyrax/audits_controller.rb +0 -16
  1114. data/app/controllers/hyrax/tinymce_assets_controller.rb +0 -14
  1115. data/app/helpers/batch_edits_helper.rb +0 -14
  1116. data/app/helpers/contact_form_helper.rb +0 -2
  1117. data/app/helpers/file_set_helper.rb +0 -7
  1118. data/app/helpers/hyrax/search_paths_helper.rb +0 -11
  1119. data/app/jobs/audit_job.rb +0 -47
  1120. data/app/jobs/ingest_file_job.rb +0 -37
  1121. data/app/models/concerns/hyrax/admin_set_behavior.rb +0 -118
  1122. data/app/models/concerns/hyrax/content_block_behavior.rb +0 -47
  1123. data/app/models/concerns/hyrax/works/featured.rb +0 -23
  1124. data/app/models/concerns/hyrax/works/trophies.rb +0 -12
  1125. data/app/models/hyrax/classify_concern.rb +0 -43
  1126. data/app/models/tinymce_asset.rb +0 -3
  1127. data/app/search_builders/deposit_search_builder.rb +0 -24
  1128. data/app/search_builders/hyrax/active_works_search_builder.rb +0 -13
  1129. data/app/search_builders/hyrax/admin_set_member_search_builder.rb +0 -12
  1130. data/app/search_builders/hyrax/my_collections_search_builder.rb +0 -11
  1131. data/app/search_builders/parent_collection_search_builder.rb +0 -10
  1132. data/app/services/hyrax/actor_factory.rb +0 -33
  1133. data/app/services/hyrax/audit_failure_service.rb +0 -20
  1134. data/app/services/hyrax/file_set_audit_service.rb +0 -122
  1135. data/app/services/hyrax/import_url_success_service.rb +0 -22
  1136. data/app/services/hyrax/repository_audit_service.rb +0 -9
  1137. data/app/services/hyrax/workflow/workflow_by_model_name_strategy.rb +0 -14
  1138. data/app/uploaders/tinymce_asset_uploader.rb +0 -45
  1139. data/app/views/_toolbar.html.erb +0 -75
  1140. data/app/views/hyrax/admin/_menu.html.erb +0 -5
  1141. data/app/views/hyrax/admin/_sidebar.html.erb +0 -33
  1142. data/app/views/hyrax/admin_sets/_admin_set.html.erb +0 -25
  1143. data/app/views/hyrax/admin_sets/_document_list.html.erb +0 -30
  1144. data/app/views/hyrax/admin_sets/_member_document.html.erb +0 -26
  1145. data/app/views/hyrax/admin_sets/_search_form.html.erb +0 -11
  1146. data/app/views/hyrax/admin_sets/_sort_and_per_page.html.erb +0 -5
  1147. data/app/views/hyrax/admin_sets/index.html.erb +0 -2
  1148. data/app/views/hyrax/admin_sets/show.html.erb +0 -32
  1149. data/app/views/hyrax/base/_relationships_parent_row_empty.html.erb +0 -6
  1150. data/app/views/hyrax/collections/_button_create_collection.html.erb +0 -1
  1151. data/app/views/hyrax/collections/_dashboard_document_list.html.erb +0 -4
  1152. data/app/views/hyrax/collections/_form.html.erb +0 -41
  1153. data/app/views/hyrax/collections/edit.html.erb +0 -29
  1154. data/app/views/hyrax/collections/new.html.erb +0 -3
  1155. data/app/views/hyrax/content_blocks/_featured_researcher.html.erb +0 -3
  1156. data/app/views/hyrax/content_blocks/index.html.erb +0 -7
  1157. data/app/views/hyrax/dashboard/_create_work_action.html.erb +0 -20
  1158. data/app/views/hyrax/dashboard/_index_partials/_heading_actions.html.erb +0 -25
  1159. data/app/views/hyrax/dashboard/_index_partials/_heading_greetings.html.erb +0 -3
  1160. data/app/views/hyrax/dashboard/index.html.erb +0 -10
  1161. data/app/views/hyrax/file_sets/_edit.js.erb +0 -20
  1162. data/app/views/hyrax/mailbox/_notifications.html.erb +0 -27
  1163. data/app/views/hyrax/mailbox/index.html.erb +0 -8
  1164. data/app/views/hyrax/my/_facets.html.erb +0 -18
  1165. data/app/views/hyrax/static/agreement.html.erb +0 -44
  1166. data/app/views/hyrax/static/help.html.erb +0 -4
  1167. data/app/views/hyrax/static/terms.html.erb +0 -62
  1168. data/app/views/hyrax/users/edit.html.erb +0 -8
  1169. data/app/views/layouts/admin.html.erb +0 -11
  1170. data/app/views/records/edit_fields/_default.html.erb +0 -6
  1171. data/lib/hyrax/collections.rb +0 -7
  1172. data/lib/hyrax/collections_migration.rb +0 -18
  1173. data/spec/actors/hyrax/actors/actor_stack_spec.rb +0 -35
  1174. data/spec/actors/hyrax/create_with_remote_files_actor_spec.rb +0 -105
  1175. data/spec/controllers/hyrax/admin_controller_spec.rb +0 -19
  1176. data/spec/controllers/hyrax/admin_sets_controller_spec.rb +0 -28
  1177. data/spec/controllers/hyrax/tinymce_assets_controller_spec.rb +0 -37
  1178. data/spec/features/browse_dashboard_files_spec.rb +0 -67
  1179. data/spec/features/cloud_upload_spec.rb +0 -15
  1180. data/spec/features/display_dashboard_spec.rb +0 -28
  1181. data/spec/features/show_admin_set_spec.rb +0 -11
  1182. data/spec/features/user_admin_set_spec.rb +0 -55
  1183. data/spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb +0 -10
  1184. data/spec/jobs/audit_job_spec.rb +0 -57
  1185. data/spec/jobs/ingest_file_job_spec.rb +0 -79
  1186. data/spec/lib/hyrax/collections_migration_spec.rb +0 -34
  1187. data/spec/routing/admin_sets_spec.rb +0 -7
  1188. data/spec/search_builders/hyrax/active_works_search_builder_spec.rb +0 -53
  1189. data/spec/services/hyrax/actor_factory_spec.rb +0 -55
  1190. data/spec/services/hyrax/audit_failure_service_spec.rb +0 -26
  1191. data/spec/services/hyrax/file_set_audit_service_spec.rb +0 -156
  1192. data/spec/services/hyrax/import_url_success_service_spec.rb +0 -20
  1193. data/spec/services/hyrax/repository_audit_service_spec.rb +0 -17
  1194. data/spec/support/locations.rb +0 -17
  1195. data/spec/support/proxies.rb +0 -15
  1196. data/spec/views/_toolbar.html.erb_spec.rb +0 -93
  1197. data/spec/views/hyrax/collections/_form.html.erb_spec.rb +0 -33
  1198. data/spec/views/hyrax/collections/_form_for_select_collection.html.erb_spec.rb +0 -51
  1199. data/spec/views/hyrax/dashboard/create_work_action.html.erb_spec.rb +0 -27
  1200. data/spec/views/hyrax/dashboard/index_spec.rb +0 -169
  1201. data/vendor/assets/javascripts/jquery.validate.js +0 -1248
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyrax
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 2.0.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Coyne
@@ -14,42 +14,50 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2018-09-19 00:00:00.000000000 Z
17
+ date: 2017-09-01 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
- name: hydra-head
20
+ name: rails
21
21
  requirement: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: '10.4'
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- version: 10.4.0
25
+ version: '5.0'
29
26
  type: :runtime
30
27
  prerelease: false
31
28
  version_requirements: !ruby/object:Gem::Requirement
32
29
  requirements:
33
30
  - - "~>"
34
31
  - !ruby/object:Gem::Version
35
- version: '10.4'
32
+ version: '5.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: hydra-head
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
36
37
  - - ">="
37
38
  - !ruby/object:Gem::Version
38
- version: 10.4.0
39
+ version: 10.5.0
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 10.5.0
39
47
  - !ruby/object:Gem::Dependency
40
48
  name: hydra-editor
41
49
  requirement: !ruby/object:Gem::Requirement
42
50
  requirements:
43
51
  - - "~>"
44
52
  - !ruby/object:Gem::Version
45
- version: '3.2'
53
+ version: '3.3'
46
54
  type: :runtime
47
55
  prerelease: false
48
56
  version_requirements: !ruby/object:Gem::Requirement
49
57
  requirements:
50
58
  - - "~>"
51
59
  - !ruby/object:Gem::Version
52
- version: '3.2'
60
+ version: '3.3'
53
61
  - !ruby/object:Gem::Dependency
54
62
  name: hydra-works
55
63
  requirement: !ruby/object:Gem::Requirement
@@ -82,9 +90,6 @@ dependencies:
82
90
  name: browse-everything
83
91
  requirement: !ruby/object:Gem::Requirement
84
92
  requirements:
85
- - - "~>"
86
- - !ruby/object:Gem::Version
87
- version: '0.10'
88
93
  - - ">="
89
94
  - !ruby/object:Gem::Version
90
95
  version: 0.10.5
@@ -92,9 +97,6 @@ dependencies:
92
97
  prerelease: false
93
98
  version_requirements: !ruby/object:Gem::Requirement
94
99
  requirements:
95
- - - "~>"
96
- - !ruby/object:Gem::Version
97
- version: '0.10'
98
100
  - - ">="
99
101
  - !ruby/object:Gem::Version
100
102
  version: 0.10.5
@@ -140,20 +142,6 @@ dependencies:
140
142
  - - "~>"
141
143
  - !ruby/object:Gem::Version
142
144
  version: '4.1'
143
- - !ruby/object:Gem::Dependency
144
- name: tinymce-rails-imageupload
145
- requirement: !ruby/object:Gem::Requirement
146
- requirements:
147
- - - "~>"
148
- - !ruby/object:Gem::Version
149
- version: 4.0.17.beta
150
- type: :runtime
151
- prerelease: false
152
- version_requirements: !ruby/object:Gem::Requirement
153
- requirements:
154
- - - "~>"
155
- - !ruby/object:Gem::Version
156
- version: 4.0.17.beta
157
145
  - !ruby/object:Gem::Dependency
158
146
  name: font-awesome-rails
159
147
  requirement: !ruby/object:Gem::Requirement
@@ -173,9 +161,6 @@ dependencies:
173
161
  requirement: !ruby/object:Gem::Requirement
174
162
  requirements:
175
163
  - - "~>"
176
- - !ruby/object:Gem::Version
177
- version: '3.5'
178
- - - ">="
179
164
  - !ruby/object:Gem::Version
180
165
  version: 3.5.9
181
166
  type: :runtime
@@ -183,9 +168,6 @@ dependencies:
183
168
  version_requirements: !ruby/object:Gem::Requirement
184
169
  requirements:
185
170
  - - "~>"
186
- - !ruby/object:Gem::Version
187
- version: '3.5'
188
- - - ">="
189
171
  - !ruby/object:Gem::Version
190
172
  version: 3.5.9
191
173
  - !ruby/object:Gem::Dependency
@@ -333,9 +315,6 @@ dependencies:
333
315
  requirement: !ruby/object:Gem::Requirement
334
316
  requirements:
335
317
  - - "~>"
336
- - !ruby/object:Gem::Version
337
- version: '1.5'
338
- - - ">="
339
318
  - !ruby/object:Gem::Version
340
319
  version: 1.5.2
341
320
  type: :runtime
@@ -343,9 +322,6 @@ dependencies:
343
322
  version_requirements: !ruby/object:Gem::Requirement
344
323
  requirements:
345
324
  - - "~>"
346
- - !ruby/object:Gem::Version
347
- version: '1.5'
348
- - - ">="
349
325
  - !ruby/object:Gem::Version
350
326
  version: 1.5.2
351
327
  - !ruby/object:Gem::Dependency
@@ -409,9 +385,6 @@ dependencies:
409
385
  requirement: !ruby/object:Gem::Requirement
410
386
  requirements:
411
387
  - - "~>"
412
- - !ruby/object:Gem::Version
413
- version: '3.4'
414
- - - ">="
415
388
  - !ruby/object:Gem::Version
416
389
  version: 3.4.0
417
390
  type: :runtime
@@ -419,9 +392,6 @@ dependencies:
419
392
  version_requirements: !ruby/object:Gem::Requirement
420
393
  requirements:
421
394
  - - "~>"
422
- - !ruby/object:Gem::Version
423
- version: '3.4'
424
- - - ">="
425
395
  - !ruby/object:Gem::Version
426
396
  version: 3.4.0
427
397
  - !ruby/object:Gem::Dependency
@@ -438,20 +408,6 @@ dependencies:
438
408
  - - ">="
439
409
  - !ruby/object:Gem::Version
440
410
  version: '0'
441
- - !ruby/object:Gem::Dependency
442
- name: railties
443
- requirement: !ruby/object:Gem::Requirement
444
- requirements:
445
- - - "~>"
446
- - !ruby/object:Gem::Version
447
- version: '5.0'
448
- type: :runtime
449
- prerelease: false
450
- version_requirements: !ruby/object:Gem::Requirement
451
- requirements:
452
- - - "~>"
453
- - !ruby/object:Gem::Version
454
- version: '5.0'
455
411
  - !ruby/object:Gem::Dependency
456
412
  name: clipboard-rails
457
413
  requirement: !ruby/object:Gem::Requirement
@@ -466,20 +422,6 @@ dependencies:
466
422
  - - "~>"
467
423
  - !ruby/object:Gem::Version
468
424
  version: '1.5'
469
- - !ruby/object:Gem::Dependency
470
- name: devise
471
- requirement: !ruby/object:Gem::Requirement
472
- requirements:
473
- - - "<="
474
- - !ruby/object:Gem::Version
475
- version: 4.4.99
476
- type: :runtime
477
- prerelease: false
478
- version_requirements: !ruby/object:Gem::Requirement
479
- requirements:
480
- - - "<="
481
- - !ruby/object:Gem::Version
482
- version: 4.4.99
483
425
  - !ruby/object:Gem::Dependency
484
426
  name: rails_autolink
485
427
  requirement: !ruby/object:Gem::Requirement
@@ -618,32 +560,18 @@ dependencies:
618
560
  - - "~>"
619
561
  - !ruby/object:Gem::Version
620
562
  version: '0.1'
621
- - !ruby/object:Gem::Dependency
622
- name: active_attr
623
- requirement: !ruby/object:Gem::Requirement
624
- requirements:
625
- - - "~>"
626
- - !ruby/object:Gem::Version
627
- version: '0.9'
628
- type: :runtime
629
- prerelease: false
630
- version_requirements: !ruby/object:Gem::Requirement
631
- requirements:
632
- - - "~>"
633
- - !ruby/object:Gem::Version
634
- version: '0.9'
635
563
  - !ruby/object:Gem::Dependency
636
564
  name: redlock
637
565
  requirement: !ruby/object:Gem::Requirement
638
566
  requirements:
639
- - - "~>"
567
+ - - ">="
640
568
  - !ruby/object:Gem::Version
641
569
  version: 0.1.2
642
570
  type: :runtime
643
571
  prerelease: false
644
572
  version_requirements: !ruby/object:Gem::Requirement
645
573
  requirements:
646
- - - "~>"
574
+ - - ">="
647
575
  - !ruby/object:Gem::Version
648
576
  version: 0.1.2
649
577
  - !ruby/object:Gem::Dependency
@@ -670,9 +598,6 @@ dependencies:
670
598
  name: active-fedora
671
599
  requirement: !ruby/object:Gem::Requirement
672
600
  requirements:
673
- - - "~>"
674
- - !ruby/object:Gem::Version
675
- version: '11.3'
676
601
  - - ">="
677
602
  - !ruby/object:Gem::Version
678
603
  version: 11.3.1
@@ -680,9 +605,6 @@ dependencies:
680
605
  prerelease: false
681
606
  version_requirements: !ruby/object:Gem::Requirement
682
607
  requirements:
683
- - - "~>"
684
- - !ruby/object:Gem::Version
685
- version: '11.3'
686
608
  - - ">="
687
609
  - !ruby/object:Gem::Version
688
610
  version: 11.3.1
@@ -748,20 +670,14 @@ dependencies:
748
670
  requirements:
749
671
  - - "~>"
750
672
  - !ruby/object:Gem::Version
751
- version: '0.5'
752
- - - "<"
753
- - !ruby/object:Gem::Version
754
- version: '3.0'
673
+ version: '1.1'
755
674
  type: :development
756
675
  prerelease: false
757
676
  version_requirements: !ruby/object:Gem::Requirement
758
677
  requirements:
759
678
  - - "~>"
760
679
  - !ruby/object:Gem::Version
761
- version: '0.5'
762
- - - "<"
763
- - !ruby/object:Gem::Version
764
- version: '3.0'
680
+ version: '1.1'
765
681
  - !ruby/object:Gem::Dependency
766
682
  name: fcrepo_wrapper
767
683
  requirement: !ruby/object:Gem::Requirement
@@ -839,21 +755,49 @@ dependencies:
839
755
  - !ruby/object:Gem::Version
840
756
  version: '2.4'
841
757
  - !ruby/object:Gem::Dependency
842
- name: poltergeist
758
+ name: capybara-maleficent
843
759
  requirement: !ruby/object:Gem::Requirement
844
760
  requirements:
845
761
  - - "~>"
846
762
  - !ruby/object:Gem::Version
847
- version: '1.5'
763
+ version: '0.2'
848
764
  type: :development
849
765
  prerelease: false
850
766
  version_requirements: !ruby/object:Gem::Requirement
851
767
  requirements:
852
768
  - - "~>"
853
769
  - !ruby/object:Gem::Version
854
- version: '1.5'
770
+ version: '0.2'
771
+ - !ruby/object:Gem::Dependency
772
+ name: chromedriver-helper
773
+ requirement: !ruby/object:Gem::Requirement
774
+ requirements:
775
+ - - ">="
776
+ - !ruby/object:Gem::Version
777
+ version: '0'
778
+ type: :development
779
+ prerelease: false
780
+ version_requirements: !ruby/object:Gem::Requirement
781
+ requirements:
782
+ - - ">="
783
+ - !ruby/object:Gem::Version
784
+ version: '0'
785
+ - !ruby/object:Gem::Dependency
786
+ name: selenium-webdriver
787
+ requirement: !ruby/object:Gem::Requirement
788
+ requirements:
789
+ - - ">="
790
+ - !ruby/object:Gem::Version
791
+ version: '0'
792
+ type: :development
793
+ prerelease: false
794
+ version_requirements: !ruby/object:Gem::Requirement
795
+ requirements:
796
+ - - ">="
797
+ - !ruby/object:Gem::Version
798
+ version: '0'
855
799
  - !ruby/object:Gem::Dependency
856
- name: factory_bot_rails
800
+ name: factory_girl_rails
857
801
  requirement: !ruby/object:Gem::Requirement
858
802
  requirements:
859
803
  - - "~>"
@@ -900,28 +844,28 @@ dependencies:
900
844
  requirements:
901
845
  - - "~>"
902
846
  - !ruby/object:Gem::Version
903
- version: 0.47.0
847
+ version: 0.49.1
904
848
  type: :development
905
849
  prerelease: false
906
850
  version_requirements: !ruby/object:Gem::Requirement
907
851
  requirements:
908
852
  - - "~>"
909
853
  - !ruby/object:Gem::Version
910
- version: 0.47.0
854
+ version: 0.49.1
911
855
  - !ruby/object:Gem::Dependency
912
856
  name: rubocop-rspec
913
857
  requirement: !ruby/object:Gem::Requirement
914
858
  requirements:
915
859
  - - "~>"
916
860
  - !ruby/object:Gem::Version
917
- version: 1.10.0
861
+ version: 1.15.0
918
862
  type: :development
919
863
  prerelease: false
920
864
  version_requirements: !ruby/object:Gem::Requirement
921
865
  requirements:
922
866
  - - "~>"
923
867
  - !ruby/object:Gem::Version
924
- version: 1.10.0
868
+ version: 1.15.0
925
869
  - !ruby/object:Gem::Dependency
926
870
  name: shoulda-matchers
927
871
  requirement: !ruby/object:Gem::Requirement
@@ -940,14 +884,14 @@ dependencies:
940
884
  name: rails-controller-testing
941
885
  requirement: !ruby/object:Gem::Requirement
942
886
  requirements:
943
- - - ">="
887
+ - - "~>"
944
888
  - !ruby/object:Gem::Version
945
889
  version: '0'
946
890
  type: :development
947
891
  prerelease: false
948
892
  version_requirements: !ruby/object:Gem::Requirement
949
893
  requirements:
950
- - - ">="
894
+ - - "~>"
951
895
  - !ruby/object:Gem::Version
952
896
  version: '0'
953
897
  - !ruby/object:Gem::Dependency
@@ -964,20 +908,6 @@ dependencies:
964
908
  - - ">="
965
909
  - !ruby/object:Gem::Version
966
910
  version: '0'
967
- - !ruby/object:Gem::Dependency
968
- name: i18n-debug
969
- requirement: !ruby/object:Gem::Requirement
970
- requirements:
971
- - - ">="
972
- - !ruby/object:Gem::Version
973
- version: '0'
974
- type: :development
975
- prerelease: false
976
- version_requirements: !ruby/object:Gem::Requirement
977
- requirements:
978
- - - ">="
979
- - !ruby/object:Gem::Version
980
- version: '0'
981
911
  - !ruby/object:Gem::Dependency
982
912
  name: i18n_yaml_sorter
983
913
  requirement: !ruby/object:Gem::Requirement
@@ -992,26 +922,6 @@ dependencies:
992
922
  - - ">="
993
923
  - !ruby/object:Gem::Version
994
924
  version: '0'
995
- - !ruby/object:Gem::Dependency
996
- name: simple_form
997
- requirement: !ruby/object:Gem::Requirement
998
- requirements:
999
- - - "~>"
1000
- - !ruby/object:Gem::Version
1001
- version: '3.2'
1002
- - - "<="
1003
- - !ruby/object:Gem::Version
1004
- version: 3.5.0
1005
- type: :runtime
1006
- prerelease: false
1007
- version_requirements: !ruby/object:Gem::Requirement
1008
- requirements:
1009
- - - "~>"
1010
- - !ruby/object:Gem::Version
1011
- version: '3.2'
1012
- - - "<="
1013
- - !ruby/object:Gem::Version
1014
- version: 3.5.0
1015
925
  description: Hyrax is a featureful Samvera front-end based on the latest and greatest
1016
926
  Samvera software components.
1017
927
  email:
@@ -1030,43 +940,49 @@ files:
1030
940
  - ".engine_cart.yml"
1031
941
  - ".eslintignore"
1032
942
  - ".eslintrc"
943
+ - ".fcrepo_wrapper"
944
+ - ".github/CODE_OF_CONDUCT.md"
1033
945
  - ".github/CONTRIBUTING.md"
1034
946
  - ".github/ISSUE_TEMPLATE.md"
1035
947
  - ".github/PULL_REQUEST_TEMPLATE.md"
948
+ - ".github/SUPPORT.md"
1036
949
  - ".gitignore"
1037
950
  - ".hound.yml"
1038
951
  - ".rspec"
1039
952
  - ".rubocop.yml"
1040
- - ".rubocop_todo.yml"
953
+ - ".rubocop_fixme.yml"
1041
954
  - ".scss-lint.yml"
955
+ - ".solr_wrapper"
1042
956
  - ".travis.yml"
1043
- - CONTRIBUTING.md
1044
957
  - Gemfile
1045
958
  - LICENSE
1046
959
  - README.md
1047
960
  - Rakefile
1048
961
  - app/actors/hyrax/actors/abstract_actor.rb
1049
- - app/actors/hyrax/actors/actor_stack.rb
1050
- - app/actors/hyrax/actors/add_as_member_of_collections_actor.rb
1051
962
  - app/actors/hyrax/actors/add_to_work_actor.rb
1052
963
  - app/actors/hyrax/actors/apply_order_actor.rb
964
+ - app/actors/hyrax/actors/apply_permission_template_actor.rb
1053
965
  - app/actors/hyrax/actors/assign_representative_actor.rb
1054
- - app/actors/hyrax/actors/attach_files_actor.rb
1055
966
  - app/actors/hyrax/actors/attach_members_actor.rb
1056
967
  - app/actors/hyrax/actors/base_actor.rb
968
+ - app/actors/hyrax/actors/cleanup_file_sets_actor.rb
969
+ - app/actors/hyrax/actors/cleanup_trophies_actor.rb
970
+ - app/actors/hyrax/actors/collections_membership_actor.rb
971
+ - app/actors/hyrax/actors/create_with_files_actor.rb
972
+ - app/actors/hyrax/actors/create_with_remote_files_actor.rb
973
+ - app/actors/hyrax/actors/default_admin_set_actor.rb
1057
974
  - app/actors/hyrax/actors/embargo_actor.rb
975
+ - app/actors/hyrax/actors/environment.rb
976
+ - app/actors/hyrax/actors/featured_work_actor.rb
1058
977
  - app/actors/hyrax/actors/file_actor.rb
1059
978
  - app/actors/hyrax/actors/file_set_actor.rb
1060
979
  - app/actors/hyrax/actors/initialize_workflow_actor.rb
1061
980
  - app/actors/hyrax/actors/interpret_visibility_actor.rb
1062
981
  - app/actors/hyrax/actors/lease_actor.rb
982
+ - app/actors/hyrax/actors/model_actor.rb
1063
983
  - app/actors/hyrax/actors/optimistic_lock_validator.rb
1064
- - app/actors/hyrax/actors/root_actor.rb
984
+ - app/actors/hyrax/actors/terminator.rb
1065
985
  - app/actors/hyrax/actors/transactional_request.rb
1066
- - app/actors/hyrax/apply_permission_template_actor.rb
1067
- - app/actors/hyrax/create_with_files_actor.rb
1068
- - app/actors/hyrax/create_with_remote_files_actor.rb
1069
- - app/actors/hyrax/default_admin_set_actor.rb
1070
986
  - app/assets/images/audio.png
1071
987
  - app/assets/images/collection.png
1072
988
  - app/assets/images/default.png
@@ -1077,9 +993,10 @@ files:
1077
993
  - app/assets/images/progressbar.gif
1078
994
  - app/assets/images/work.png
1079
995
  - app/assets/images/zotero.png
1080
- - app/assets/javascripts/batch_edit.js.coffee
1081
996
  - app/assets/javascripts/hyrax.js
997
+ - app/assets/javascripts/hyrax/admin/admin_set/group_participants.es6
1082
998
  - app/assets/javascripts/hyrax/admin/admin_set/participants.es6
999
+ - app/assets/javascripts/hyrax/admin/admin_set/registered_users.es6
1083
1000
  - app/assets/javascripts/hyrax/admin/admin_set/visibility.es6
1084
1001
  - app/assets/javascripts/hyrax/admin/admin_set_controls.es6
1085
1002
  - app/assets/javascripts/hyrax/admin/graphs.es6
@@ -1087,30 +1004,35 @@ files:
1087
1004
  - app/assets/javascripts/hyrax/authority_select.es6
1088
1005
  - app/assets/javascripts/hyrax/autocomplete.es6
1089
1006
  - app/assets/javascripts/hyrax/autocomplete/default.es6
1007
+ - app/assets/javascripts/hyrax/autocomplete/linked_data.es6
1090
1008
  - app/assets/javascripts/hyrax/autocomplete/work.es6
1091
1009
  - app/assets/javascripts/hyrax/batch.js
1092
1010
  - app/assets/javascripts/hyrax/batch_edit.js
1093
- - app/assets/javascripts/hyrax/batch_select.js
1011
+ - app/assets/javascripts/hyrax/batch_select.es6
1094
1012
  - app/assets/javascripts/hyrax/batch_select_all.js
1095
1013
  - app/assets/javascripts/hyrax/browse_everything.js
1096
1014
  - app/assets/javascripts/hyrax/collections.js
1015
+ - app/assets/javascripts/hyrax/collections/editor.es6
1016
+ - app/assets/javascripts/hyrax/config.js.erb
1097
1017
  - app/assets/javascripts/hyrax/content_blocks.js
1098
1018
  - app/assets/javascripts/hyrax/dashboard_actions.js
1099
1019
  - app/assets/javascripts/hyrax/editor.es6
1100
1020
  - app/assets/javascripts/hyrax/editor/admin_set_widget.es6
1021
+ - app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6
1101
1022
  - app/assets/javascripts/hyrax/facets.js
1102
- - app/assets/javascripts/hyrax/featured_researcher.js
1103
1023
  - app/assets/javascripts/hyrax/featured_works.js
1104
1024
  - app/assets/javascripts/hyrax/file_manager.es6
1105
1025
  - app/assets/javascripts/hyrax/file_manager/member.es6
1106
1026
  - app/assets/javascripts/hyrax/file_manager/save_manager.es6
1107
1027
  - app/assets/javascripts/hyrax/file_manager/sorting.es6
1108
- - app/assets/javascripts/hyrax/fileupload.js.erb
1028
+ - app/assets/javascripts/hyrax/fileupload.js
1109
1029
  - app/assets/javascripts/hyrax/flot_stats.js
1110
1030
  - app/assets/javascripts/hyrax/ga_events.js
1111
1031
  - app/assets/javascripts/hyrax/initialize.js
1112
1032
  - app/assets/javascripts/hyrax/monkey_patch_turbolinks.js.coffee
1033
+ - app/assets/javascripts/hyrax/notification.es6
1113
1034
  - app/assets/javascripts/hyrax/notifications.es6
1035
+ - app/assets/javascripts/hyrax/per_page.es6
1114
1036
  - app/assets/javascripts/hyrax/permissions.js
1115
1037
  - app/assets/javascripts/hyrax/permissions/control.es6
1116
1038
  - app/assets/javascripts/hyrax/permissions/grant.es6
@@ -1139,6 +1061,7 @@ files:
1139
1061
  - app/assets/javascripts/hyrax/single_use_links_manager.js
1140
1062
  - app/assets/javascripts/hyrax/sorting.js
1141
1063
  - app/assets/javascripts/hyrax/tabs.js
1064
+ - app/assets/javascripts/hyrax/thumbnail_select.es6
1142
1065
  - app/assets/javascripts/hyrax/trophy.js
1143
1066
  - app/assets/javascripts/hyrax/uploader.js
1144
1067
  - app/assets/javascripts/hyrax/user_search.js
@@ -1149,7 +1072,6 @@ files:
1149
1072
  - app/assets/stylesheets/hyrax/_buttons.scss
1150
1073
  - app/assets/stylesheets/hyrax/_catalog.scss
1151
1074
  - app/assets/stylesheets/hyrax/_collections.scss
1152
- - app/assets/stylesheets/hyrax/_dashboard.scss
1153
1075
  - app/assets/stylesheets/hyrax/_featured.scss
1154
1076
  - app/assets/stylesheets/hyrax/_file-listing.scss
1155
1077
  - app/assets/stylesheets/hyrax/_file-show.scss
@@ -1165,7 +1087,6 @@ files:
1165
1087
  - app/assets/stylesheets/hyrax/_home-page.scss
1166
1088
  - app/assets/stylesheets/hyrax/_hyrax.scss
1167
1089
  - app/assets/stylesheets/hyrax/_modal.scss
1168
- - app/assets/stylesheets/hyrax/_multi_value_fields.css.scss
1169
1090
  - app/assets/stylesheets/hyrax/_nestable.scss
1170
1091
  - app/assets/stylesheets/hyrax/_positioning.scss
1171
1092
  - app/assets/stylesheets/hyrax/_proxy-rights.scss
@@ -1175,45 +1096,40 @@ files:
1175
1096
  - app/assets/stylesheets/hyrax/_styles.scss
1176
1097
  - app/assets/stylesheets/hyrax/_tinymce.scss
1177
1098
  - app/assets/stylesheets/hyrax/_usage-stats.scss
1099
+ - app/assets/stylesheets/hyrax/_users.scss
1178
1100
  - app/assets/stylesheets/hyrax/_variables.scss
1179
1101
  - app/assets/stylesheets/hyrax/_work-show.scss
1180
- - app/assets/stylesheets/hyrax/admin.scss
1102
+ - app/assets/stylesheets/hyrax/_work_editor.scss
1181
1103
  - app/assets/stylesheets/hyrax/blacklight_gallery.scss
1104
+ - app/assets/stylesheets/hyrax/controlled_vocabulary.scss
1105
+ - app/assets/stylesheets/hyrax/dashboard.scss
1106
+ - app/assets/stylesheets/hyrax/sidebar.scss
1107
+ - app/assets/stylesheets/typeahead.css
1182
1108
  - app/authorities/qa/authorities/find_works.rb
1183
1109
  - app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
1184
1110
  - app/builders/hyrax/form_builder.rb
1185
1111
  - app/connections/hyrax/clean_connection.rb
1186
- - app/controllers/concerns/hydra/batch_edit_behavior.rb
1112
+ - app/controlled_vocabularies/hyrax/controlled_vocabularies/location.rb
1187
1113
  - app/controllers/concerns/hyrax/admin/stats_behavior.rb
1188
1114
  - app/controllers/concerns/hyrax/admin/users_controller_behavior.rb
1189
1115
  - app/controllers/concerns/hyrax/api.rb
1190
- - app/controllers/concerns/hyrax/batch_edits_controller_behavior.rb
1191
- - app/controllers/concerns/hyrax/batch_uploads_controller_behavior.rb
1192
1116
  - app/controllers/concerns/hyrax/breadcrumbs.rb
1193
1117
  - app/controllers/concerns/hyrax/breadcrumbs_for_collections.rb
1194
1118
  - app/controllers/concerns/hyrax/breadcrumbs_for_works.rb
1119
+ - app/controllers/concerns/hyrax/collections.rb
1120
+ - app/controllers/concerns/hyrax/collections/accepts_batches.rb
1195
1121
  - app/controllers/concerns/hyrax/collections_controller_behavior.rb
1196
- - app/controllers/concerns/hyrax/contact_form_controller_behavior.rb
1197
1122
  - app/controllers/concerns/hyrax/controller.rb
1198
- - app/controllers/concerns/hyrax/curation_concern_controller.rb
1199
- - app/controllers/concerns/hyrax/dashboard_controller_behavior.rb
1200
1123
  - app/controllers/concerns/hyrax/deny_access_override_behavior.rb
1201
- - app/controllers/concerns/hyrax/depositors_controller_behavior.rb
1202
- - app/controllers/concerns/hyrax/download_behavior.rb
1203
- - app/controllers/concerns/hyrax/file_sets_controller_behavior.rb
1204
- - app/controllers/concerns/hyrax/homepage_controller_behavior.rb
1205
- - app/controllers/concerns/hyrax/my_controller_behavior.rb
1124
+ - app/controllers/concerns/hyrax/embargoes_controller_behavior.rb
1125
+ - app/controllers/concerns/hyrax/leases_controller_behavior.rb
1126
+ - app/controllers/concerns/hyrax/manages_embargoes.rb
1206
1127
  - app/controllers/concerns/hyrax/parent_container.rb
1207
- - app/controllers/concerns/hyrax/permissions_controller_behavior.rb
1208
- - app/controllers/concerns/hyrax/single_use_links_controller_behavior.rb
1209
- - app/controllers/concerns/hyrax/single_use_links_viewer_controller_behavior.rb
1210
1128
  - app/controllers/concerns/hyrax/singular_subresource_controller.rb
1211
1129
  - app/controllers/concerns/hyrax/themed_layout_controller.rb
1212
- - app/controllers/concerns/hyrax/transfers_controller_behavior.rb
1213
- - app/controllers/concerns/hyrax/uploads_controller_behavior.rb
1214
- - app/controllers/concerns/hyrax/users_controller_behavior.rb
1215
1130
  - app/controllers/concerns/hyrax/works_controller_behavior.rb
1216
1131
  - app/controllers/hyrax/admin/admin_sets_controller.rb
1132
+ - app/controllers/hyrax/admin/appearances_controller.rb
1217
1133
  - app/controllers/hyrax/admin/features_controller.rb
1218
1134
  - app/controllers/hyrax/admin/permission_template_accesses_controller.rb
1219
1135
  - app/controllers/hyrax/admin/permission_templates_controller.rb
@@ -1222,30 +1138,33 @@ files:
1222
1138
  - app/controllers/hyrax/admin/users_controller.rb
1223
1139
  - app/controllers/hyrax/admin/workflow_roles_controller.rb
1224
1140
  - app/controllers/hyrax/admin/workflows_controller.rb
1225
- - app/controllers/hyrax/admin_controller.rb
1226
- - app/controllers/hyrax/admin_sets_controller.rb
1227
1141
  - app/controllers/hyrax/api/items_controller.rb
1228
1142
  - app/controllers/hyrax/api/zotero_controller.rb
1229
- - app/controllers/hyrax/audits_controller.rb
1230
1143
  - app/controllers/hyrax/batch_edits_controller.rb
1231
1144
  - app/controllers/hyrax/batch_uploads_controller.rb
1232
1145
  - app/controllers/hyrax/citations_controller.rb
1233
1146
  - app/controllers/hyrax/collections_controller.rb
1234
1147
  - app/controllers/hyrax/contact_form_controller.rb
1235
1148
  - app/controllers/hyrax/content_blocks_controller.rb
1149
+ - app/controllers/hyrax/dashboard/collections_controller.rb
1150
+ - app/controllers/hyrax/dashboard/profiles_controller.rb
1151
+ - app/controllers/hyrax/dashboard/works_controller.rb
1236
1152
  - app/controllers/hyrax/dashboard_controller.rb
1237
1153
  - app/controllers/hyrax/depositors_controller.rb
1238
1154
  - app/controllers/hyrax/downloads_controller.rb
1155
+ - app/controllers/hyrax/embargoes_controller.rb
1239
1156
  - app/controllers/hyrax/featured_work_lists_controller.rb
1240
1157
  - app/controllers/hyrax/featured_works_controller.rb
1241
1158
  - app/controllers/hyrax/file_sets_controller.rb
1159
+ - app/controllers/hyrax/fixity_checks_controller.rb
1242
1160
  - app/controllers/hyrax/homepage_controller.rb
1243
- - app/controllers/hyrax/mailbox_controller.rb
1161
+ - app/controllers/hyrax/leases_controller.rb
1244
1162
  - app/controllers/hyrax/my/collections_controller.rb
1245
1163
  - app/controllers/hyrax/my/highlights_controller.rb
1246
1164
  - app/controllers/hyrax/my/shares_controller.rb
1247
1165
  - app/controllers/hyrax/my/works_controller.rb
1248
1166
  - app/controllers/hyrax/my_controller.rb
1167
+ - app/controllers/hyrax/notifications_controller.rb
1249
1168
  - app/controllers/hyrax/operations_controller.rb
1250
1169
  - app/controllers/hyrax/pages_controller.rb
1251
1170
  - app/controllers/hyrax/permissions_controller.rb
@@ -1254,7 +1173,6 @@ files:
1254
1173
  - app/controllers/hyrax/single_use_links_viewer_controller.rb
1255
1174
  - app/controllers/hyrax/static_controller.rb
1256
1175
  - app/controllers/hyrax/stats_controller.rb
1257
- - app/controllers/hyrax/tinymce_assets_controller.rb
1258
1176
  - app/controllers/hyrax/transfers_controller.rb
1259
1177
  - app/controllers/hyrax/trophies_controller.rb
1260
1178
  - app/controllers/hyrax/uploads_controller.rb
@@ -1269,6 +1187,7 @@ files:
1269
1187
  - app/conversions/power_converters/sipity_role.rb
1270
1188
  - app/conversions/power_converters/sipity_workflow_id.rb
1271
1189
  - app/conversions/power_converters/sipity_workflow_state.rb
1190
+ - app/forms/hyrax/forms/admin/appearance.rb
1272
1191
  - app/forms/hyrax/forms/admin_set_form.rb
1273
1192
  - app/forms/hyrax/forms/batch_edit_form.rb
1274
1193
  - app/forms/hyrax/forms/batch_upload_form.rb
@@ -1281,11 +1200,9 @@ files:
1281
1200
  - app/forms/hyrax/forms/work_form.rb
1282
1201
  - app/forms/hyrax/forms/workflow_action_form.rb
1283
1202
  - app/forms/hyrax/forms/workflow_responsibility_form.rb
1284
- - app/helpers/batch_edits_helper.rb
1285
- - app/helpers/contact_form_helper.rb
1286
1203
  - app/helpers/dashboard_helper.rb
1287
- - app/helpers/file_set_helper.rb
1288
1204
  - app/helpers/hyrax/ability_helper.rb
1205
+ - app/helpers/hyrax/batch_edits_helper.rb
1289
1206
  - app/helpers/hyrax/blacklight_override.rb
1290
1207
  - app/helpers/hyrax/charts_helper.rb
1291
1208
  - app/helpers/hyrax/citations_behavior.rb
@@ -1307,19 +1224,23 @@ files:
1307
1224
  - app/helpers/hyrax/hyrax_helper_behavior.rb
1308
1225
  - app/helpers/hyrax/lease_helper.rb
1309
1226
  - app/helpers/hyrax/permissions_helper.rb
1310
- - app/helpers/hyrax/search_paths_helper.rb
1311
1227
  - app/helpers/hyrax/title_helper.rb
1312
1228
  - app/helpers/hyrax/trophy_helper.rb
1313
1229
  - app/helpers/hyrax/url_helper.rb
1230
+ - app/indexers/concerns/hyrax/indexes_basic_metadata.rb
1231
+ - app/indexers/concerns/hyrax/indexes_linked_metadata.rb
1314
1232
  - app/indexers/hyrax/admin_set_indexer.rb
1233
+ - app/indexers/hyrax/basic_metadata_indexer.rb
1315
1234
  - app/indexers/hyrax/collection_indexer.rb
1235
+ - app/indexers/hyrax/collection_with_basic_metadata_indexer.rb
1236
+ - app/indexers/hyrax/deep_indexing_service.rb
1316
1237
  - app/indexers/hyrax/file_set_indexer.rb
1317
1238
  - app/indexers/hyrax/indexes_workflow.rb
1318
1239
  - app/indexers/hyrax/work_indexer.rb
1240
+ - app/inputs/controlled_vocabulary_input.rb
1319
1241
  - app/inputs/multi_value_select_input.rb
1320
1242
  - app/inputs/multifile_input.rb
1321
1243
  - app/jobs/attach_files_to_work_job.rb
1322
- - app/jobs/audit_job.rb
1323
1244
  - app/jobs/batch_create_job.rb
1324
1245
  - app/jobs/characterize_job.rb
1325
1246
  - app/jobs/content_delete_event_job.rb
@@ -1333,8 +1254,17 @@ files:
1333
1254
  - app/jobs/create_work_job.rb
1334
1255
  - app/jobs/event_job.rb
1335
1256
  - app/jobs/file_set_attached_event_job.rb
1257
+ - app/jobs/fixity_check_job.rb
1258
+ - app/jobs/hyrax/application_job.rb
1259
+ - app/jobs/hyrax/grant_edit_job.rb
1260
+ - app/jobs/hyrax/grant_edit_to_members_job.rb
1261
+ - app/jobs/hyrax/grant_read_job.rb
1262
+ - app/jobs/hyrax/grant_read_to_members_job.rb
1263
+ - app/jobs/hyrax/revoke_edit_from_members_job.rb
1264
+ - app/jobs/hyrax/revoke_edit_job.rb
1265
+ - app/jobs/import_export_job.rb
1336
1266
  - app/jobs/import_url_job.rb
1337
- - app/jobs/ingest_file_job.rb
1267
+ - app/jobs/ingest_job.rb
1338
1268
  - app/jobs/ingest_local_file_job.rb
1339
1269
  - app/jobs/inherit_permissions_job.rb
1340
1270
  - app/jobs/resolrize_job.rb
@@ -1345,10 +1275,9 @@ files:
1345
1275
  - app/models/batch_upload_item.rb
1346
1276
  - app/models/checksum_audit_log.rb
1347
1277
  - app/models/concerns/hyrax/ability.rb
1348
- - app/models/concerns/hyrax/admin_set_behavior.rb
1349
1278
  - app/models/concerns/hyrax/basic_metadata.rb
1350
1279
  - app/models/concerns/hyrax/collection_behavior.rb
1351
- - app/models/concerns/hyrax/content_block_behavior.rb
1280
+ - app/models/concerns/hyrax/core_metadata.rb
1352
1281
  - app/models/concerns/hyrax/file_set/belongs_to_works.rb
1353
1282
  - app/models/concerns/hyrax/file_set/characterization.rb
1354
1283
  - app/models/concerns/hyrax/file_set/derivatives.rb
@@ -1364,10 +1293,10 @@ files:
1364
1293
  - app/models/concerns/hyrax/permissions/readable.rb
1365
1294
  - app/models/concerns/hyrax/permissions/writable.rb
1366
1295
  - app/models/concerns/hyrax/proxy_deposit.rb
1367
- - app/models/concerns/hyrax/required_metadata.rb
1368
1296
  - app/models/concerns/hyrax/serializers.rb
1369
1297
  - app/models/concerns/hyrax/solr_document/characterization.rb
1370
1298
  - app/models/concerns/hyrax/solr_document/export.rb
1299
+ - app/models/concerns/hyrax/solr_document/metadata.rb
1371
1300
  - app/models/concerns/hyrax/solr_document_behavior.rb
1372
1301
  - app/models/concerns/hyrax/suppressible.rb
1373
1302
  - app/models/concerns/hyrax/user.rb
@@ -1375,9 +1304,7 @@ files:
1375
1304
  - app/models/concerns/hyrax/with_events.rb
1376
1305
  - app/models/concerns/hyrax/with_file_sets.rb
1377
1306
  - app/models/concerns/hyrax/work_behavior.rb
1378
- - app/models/concerns/hyrax/works/featured.rb
1379
1307
  - app/models/concerns/hyrax/works/metadata.rb
1380
- - app/models/concerns/hyrax/works/trophies.rb
1381
1308
  - app/models/content_block.rb
1382
1309
  - app/models/featured_work.rb
1383
1310
  - app/models/featured_work_list.rb
@@ -1385,7 +1312,6 @@ files:
1385
1312
  - app/models/file_view_stat.rb
1386
1313
  - app/models/hyrax/avatar_validator.rb
1387
1314
  - app/models/hyrax/batch_create_operation.rb
1388
- - app/models/hyrax/classify_concern.rb
1389
1315
  - app/models/hyrax/contact_form.rb
1390
1316
  - app/models/hyrax/download.rb
1391
1317
  - app/models/hyrax/event.rb
@@ -1400,6 +1326,7 @@ files:
1400
1326
  - app/models/hyrax/uploaded_file.rb
1401
1327
  - app/models/hyrax/version_committer.rb
1402
1328
  - app/models/hyrax/workflow_action_info.rb
1329
+ - app/models/job_io_wrapper.rb
1403
1330
  - app/models/proxy_deposit_request.rb
1404
1331
  - app/models/proxy_deposit_rights.rb
1405
1332
  - app/models/single_use_link.rb
@@ -1419,7 +1346,6 @@ files:
1419
1346
  - app/models/sipity/workflow_state.rb
1420
1347
  - app/models/sipity/workflow_state_action.rb
1421
1348
  - app/models/sipity/workflow_state_action_permission.rb
1422
- - app/models/tinymce_asset.rb
1423
1349
  - app/models/trophy.rb
1424
1350
  - app/models/user_mailbox.rb
1425
1351
  - app/models/user_stat.rb
@@ -1440,9 +1366,11 @@ files:
1440
1366
  - app/presenters/hyrax/collection_options_presenter.rb
1441
1367
  - app/presenters/hyrax/collection_presenter.rb
1442
1368
  - app/presenters/hyrax/composite_presenter_factory.rb
1369
+ - app/presenters/hyrax/dashboard/user_presenter.rb
1443
1370
  - app/presenters/hyrax/embargo_presenter.rb
1444
1371
  - app/presenters/hyrax/file_set_presenter.rb
1445
1372
  - app/presenters/hyrax/file_usage.rb
1373
+ - app/presenters/hyrax/fixity_status_presenter.rb
1446
1374
  - app/presenters/hyrax/homepage_presenter.rb
1447
1375
  - app/presenters/hyrax/inspect_work_presenter.rb
1448
1376
  - app/presenters/hyrax/lease_presenter.rb
@@ -1458,7 +1386,9 @@ files:
1458
1386
  - app/presenters/hyrax/select_type_presenter.rb
1459
1387
  - app/presenters/hyrax/single_use_link_presenter.rb
1460
1388
  - app/presenters/hyrax/stats_usage_presenter.rb
1389
+ - app/presenters/hyrax/transfers_presenter.rb
1461
1390
  - app/presenters/hyrax/trophy_presenter.rb
1391
+ - app/presenters/hyrax/twitter_presenter.rb
1462
1392
  - app/presenters/hyrax/user_profile_presenter.rb
1463
1393
  - app/presenters/hyrax/version_list_presenter.rb
1464
1394
  - app/presenters/hyrax/version_presenter.rb
@@ -1471,20 +1401,18 @@ files:
1471
1401
  - app/renderers/hyrax/renderers/date_attribute_renderer.rb
1472
1402
  - app/renderers/hyrax/renderers/external_link_attribute_renderer.rb
1473
1403
  - app/renderers/hyrax/renderers/faceted_attribute_renderer.rb
1404
+ - app/renderers/hyrax/renderers/license_attribute_renderer.rb
1474
1405
  - app/renderers/hyrax/renderers/linked_attribute_renderer.rb
1475
- - app/renderers/hyrax/renderers/rights_attribute_renderer.rb
1476
- - app/search_builders/deposit_search_builder.rb
1477
1406
  - app/search_builders/hyrax/README.md
1478
1407
  - app/search_builders/hyrax/abstract_type_relation.rb
1479
- - app/search_builders/hyrax/active_works_search_builder.rb
1480
1408
  - app/search_builders/hyrax/admin_admin_set_member_search_builder.rb
1481
- - app/search_builders/hyrax/admin_set_member_search_builder.rb
1482
1409
  - app/search_builders/hyrax/admin_set_search_builder.rb
1483
1410
  - app/search_builders/hyrax/catalog_search_builder.rb
1484
1411
  - app/search_builders/hyrax/collection_member_search_builder.rb
1485
1412
  - app/search_builders/hyrax/collection_search_builder.rb
1486
1413
  - app/search_builders/hyrax/deactivated_embargo_search_builder.rb
1487
1414
  - app/search_builders/hyrax/deactivated_lease_search_builder.rb
1415
+ - app/search_builders/hyrax/deposit_search_builder.rb
1488
1416
  - app/search_builders/hyrax/embargo_search_builder.rb
1489
1417
  - app/search_builders/hyrax/expired_embargo_search_builder.rb
1490
1418
  - app/search_builders/hyrax/expired_lease_search_builder.rb
@@ -1493,15 +1421,17 @@ files:
1493
1421
  - app/search_builders/hyrax/filter_by_type.rb
1494
1422
  - app/search_builders/hyrax/filter_suppressed.rb
1495
1423
  - app/search_builders/hyrax/filter_suppressed_with_roles.rb
1496
- - app/search_builders/hyrax/find_works_search_builder.rb
1497
1424
  - app/search_builders/hyrax/homepage_search_builder.rb
1498
1425
  - app/search_builders/hyrax/lease_search_builder.rb
1499
1426
  - app/search_builders/hyrax/member_with_files_search_builder.rb
1500
- - app/search_builders/hyrax/my_collections_search_builder.rb
1501
- - app/search_builders/hyrax/my_highlights_search_builder.rb
1502
- - app/search_builders/hyrax/my_search_builder_behavior.rb
1503
- - app/search_builders/hyrax/my_shares_search_builder.rb
1504
- - app/search_builders/hyrax/my_works_search_builder.rb
1427
+ - app/search_builders/hyrax/my/collections_search_builder.rb
1428
+ - app/search_builders/hyrax/my/find_works_search_builder.rb
1429
+ - app/search_builders/hyrax/my/highlights_search_builder.rb
1430
+ - app/search_builders/hyrax/my/search_builder.rb
1431
+ - app/search_builders/hyrax/my/search_builder_behavior.rb
1432
+ - app/search_builders/hyrax/my/shares_search_builder.rb
1433
+ - app/search_builders/hyrax/my/works_search_builder.rb
1434
+ - app/search_builders/hyrax/parent_collection_search_builder.rb
1505
1435
  - app/search_builders/hyrax/search_builder.rb
1506
1436
  - app/search_builders/hyrax/search_filters.rb
1507
1437
  - app/search_builders/hyrax/single_admin_set_search_builder.rb
@@ -1512,31 +1442,30 @@ files:
1512
1442
  - app/search_builders/hyrax/work_relation.rb
1513
1443
  - app/search_builders/hyrax/work_search_builder.rb
1514
1444
  - app/search_builders/hyrax/works_search_builder.rb
1515
- - app/search_builders/parent_collection_search_builder.rb
1516
- - app/services/hyrax/actor_factory.rb
1517
1445
  - app/services/hyrax/admin_set_create_service.rb
1518
1446
  - app/services/hyrax/admin_set_service.rb
1519
1447
  - app/services/hyrax/analytics.rb
1520
- - app/services/hyrax/audit_failure_service.rb
1521
1448
  - app/services/hyrax/batch_create_failure_service.rb
1522
1449
  - app/services/hyrax/batch_create_success_service.rb
1523
1450
  - app/services/hyrax/change_content_depositor_service.rb
1524
1451
  - app/services/hyrax/collection_member_service.rb
1525
1452
  - app/services/hyrax/collection_size_service.rb
1526
1453
  - app/services/hyrax/collection_thumbnail_path_service.rb
1454
+ - app/services/hyrax/collections/search_service.rb
1527
1455
  - app/services/hyrax/collections_service.rb
1528
1456
  - app/services/hyrax/contextual_path.rb
1529
1457
  - app/services/hyrax/curation_concern.rb
1458
+ - app/services/hyrax/default_middleware_stack.rb
1530
1459
  - app/services/hyrax/derivative_path.rb
1531
1460
  - app/services/hyrax/derivative_service.rb
1532
1461
  - app/services/hyrax/embargo_service.rb
1533
- - app/services/hyrax/file_set_audit_service.rb
1534
1462
  - app/services/hyrax/file_set_csv_service.rb
1535
1463
  - app/services/hyrax/file_set_derivatives_service.rb
1464
+ - app/services/hyrax/file_set_fixity_check_service.rb
1465
+ - app/services/hyrax/fixity_check_failure_service.rb
1536
1466
  - app/services/hyrax/form_metadata_service.rb
1537
1467
  - app/services/hyrax/graph_exporter.rb
1538
1468
  - app/services/hyrax/import_url_failure_service.rb
1539
- - app/services/hyrax/import_url_success_service.rb
1540
1469
  - app/services/hyrax/indexes_thumbnails.rb
1541
1470
  - app/services/hyrax/institution.rb
1542
1471
  - app/services/hyrax/lease_service.rb
@@ -1554,7 +1483,7 @@ files:
1554
1483
  - app/services/hyrax/qa_select_service.rb
1555
1484
  - app/services/hyrax/query_service.rb
1556
1485
  - app/services/hyrax/quick_classification_query.rb
1557
- - app/services/hyrax/repository_audit_service.rb
1486
+ - app/services/hyrax/repository_fixity_check_service.rb
1558
1487
  - app/services/hyrax/resource_types_service.rb
1559
1488
  - app/services/hyrax/restriction_service.rb
1560
1489
  - app/services/hyrax/rights_statements.rb
@@ -1597,7 +1526,6 @@ files:
1597
1526
  - app/services/hyrax/workflow/state_machine_generator.rb
1598
1527
  - app/services/hyrax/workflow/status_list_service.rb
1599
1528
  - app/services/hyrax/workflow/workflow_action_service.rb
1600
- - app/services/hyrax/workflow/workflow_by_model_name_strategy.rb
1601
1529
  - app/services/hyrax/workflow/workflow_factory.rb
1602
1530
  - app/services/hyrax/workflow/workflow_importer.rb
1603
1531
  - app/services/hyrax/workflow/workflow_permissions_generator.rb
@@ -1606,7 +1534,6 @@ files:
1606
1534
  - app/strategies/hyrax/strategies/yaml_strategy.rb
1607
1535
  - app/uploaders/hyrax/avatar_uploader.rb
1608
1536
  - app/uploaders/hyrax/uploaded_file_uploader.rb
1609
- - app/uploaders/tinymce_asset_uploader.rb
1610
1537
  - app/validators/hyrax/has_one_title_validator.rb
1611
1538
  - app/values/hyrax/chart_data.rb
1612
1539
  - app/views/_controls.html.erb
@@ -1615,9 +1542,7 @@ files:
1615
1542
  - app/views/_head_tag_extras.html.erb
1616
1543
  - app/views/_logo.html.erb
1617
1544
  - app/views/_masthead.html.erb
1618
- - app/views/_toolbar.html.erb
1619
1545
  - app/views/_user_util_links.html.erb
1620
- - app/views/batch_select/_add_button.html.erb
1621
1546
  - app/views/catalog/_document.html.erb
1622
1547
  - app/views/catalog/_document_list.html.erb
1623
1548
  - app/views/catalog/_edit_partials/_default_details.html.erb
@@ -1634,9 +1559,7 @@ files:
1634
1559
  - app/views/catalog/_thumbnail_list_default.html.erb
1635
1560
  - app/views/catalog/index.html.erb
1636
1561
  - app/views/catalog/recent.js.erb
1637
- - app/views/hyrax/admin/_collections.html.erb
1638
- - app/views/hyrax/admin/_menu.html.erb
1639
- - app/views/hyrax/admin/_sidebar.html.erb
1562
+ - app/views/collections/edit_fields/_based_near.html.erb
1640
1563
  - app/views/hyrax/admin/admin_sets/_form.html.erb
1641
1564
  - app/views/hyrax/admin/admin_sets/_form_metadata.html.erb
1642
1565
  - app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb
@@ -1648,10 +1571,11 @@ files:
1648
1571
  - app/views/hyrax/admin/admin_sets/_sort_and_per_page.html.erb
1649
1572
  - app/views/hyrax/admin/admin_sets/edit.html.erb
1650
1573
  - app/views/hyrax/admin/admin_sets/index.html.erb
1574
+ - app/views/hyrax/admin/admin_sets/index.json.jbuilder
1651
1575
  - app/views/hyrax/admin/admin_sets/new.html.erb
1652
1576
  - app/views/hyrax/admin/admin_sets/show.html.erb
1577
+ - app/views/hyrax/admin/appearances/show.html.erb
1653
1578
  - app/views/hyrax/admin/features/index.html.erb
1654
- - app/views/hyrax/admin/show.html.erb
1655
1579
  - app/views/hyrax/admin/stats/_date_form.html.erb
1656
1580
  - app/views/hyrax/admin/stats/_deposits.html.erb
1657
1581
  - app/views/hyrax/admin/stats/_new_users.html.erb
@@ -1662,13 +1586,6 @@ files:
1662
1586
  - app/views/hyrax/admin/users/index.html.erb
1663
1587
  - app/views/hyrax/admin/workflow_roles/index.html.erb
1664
1588
  - app/views/hyrax/admin/workflows/index.html.erb
1665
- - app/views/hyrax/admin_sets/_admin_set.html.erb
1666
- - app/views/hyrax/admin_sets/_document_list.html.erb
1667
- - app/views/hyrax/admin_sets/_member_document.html.erb
1668
- - app/views/hyrax/admin_sets/_search_form.html.erb
1669
- - app/views/hyrax/admin_sets/_sort_and_per_page.html.erb
1670
- - app/views/hyrax/admin_sets/index.html.erb
1671
- - app/views/hyrax/admin_sets/show.html.erb
1672
1589
  - app/views/hyrax/base/_actions.html.erb
1673
1590
  - app/views/hyrax/base/_attribute_rows.html.erb
1674
1591
  - app/views/hyrax/base/_attributes.html.erb
@@ -1710,7 +1627,6 @@ files:
1710
1627
  - app/views/hyrax/base/_metadata.html.erb
1711
1628
  - app/views/hyrax/base/_relationships.html.erb
1712
1629
  - app/views/hyrax/base/_relationships_parent_row.html.erb
1713
- - app/views/hyrax/base/_relationships_parent_row_empty.html.erb
1714
1630
  - app/views/hyrax/base/_relationships_parent_rows.html.erb
1715
1631
  - app/views/hyrax/base/_representative_media.html.erb
1716
1632
  - app/views/hyrax/base/_share_with.html.erb
@@ -1731,63 +1647,98 @@ files:
1731
1647
  - app/views/hyrax/batch_edits/_check_all.html.erb
1732
1648
  - app/views/hyrax/batch_edits/_delete_selected.html.erb
1733
1649
  - app/views/hyrax/batch_edits/edit.html.erb
1650
+ - app/views/hyrax/batch_select/_add_button.html.erb
1734
1651
  - app/views/hyrax/batch_uploads/_form.html.erb
1735
1652
  - app/views/hyrax/citations/file.html.erb
1736
1653
  - app/views/hyrax/citations/work.html.erb
1737
- - app/views/hyrax/collections/_batch_edits_actions.html.erb
1738
1654
  - app/views/hyrax/collections/_bookmark_control.html.erb
1739
- - app/views/hyrax/collections/_button_create_collection.html.erb
1740
- - app/views/hyrax/collections/_button_for_remove_selected_from_collection.html.erb
1741
- - app/views/hyrax/collections/_button_for_update_collection.html.erb
1742
- - app/views/hyrax/collections/_button_remove_from_collection.html.erb
1743
1655
  - app/views/hyrax/collections/_collection.html.erb
1744
1656
  - app/views/hyrax/collections/_collection_description.erb
1745
1657
  - app/views/hyrax/collections/_collection_title.erb
1746
- - app/views/hyrax/collections/_dashboard_document_list.html.erb
1658
+ - app/views/hyrax/collections/_default_group.html.erb
1747
1659
  - app/views/hyrax/collections/_document_list.html.erb
1748
- - app/views/hyrax/collections/_edit_actions.html.erb
1749
- - app/views/hyrax/collections/_form.html.erb
1750
- - app/views/hyrax/collections/_form_for_select_collection.html.erb
1751
- - app/views/hyrax/collections/_form_permission.html.erb
1660
+ - app/views/hyrax/collections/_list_collections.html.erb
1661
+ - app/views/hyrax/collections/_list_works.html.erb
1752
1662
  - app/views/hyrax/collections/_media_display.html.erb
1753
1663
  - app/views/hyrax/collections/_paginate.html.erb
1754
1664
  - app/views/hyrax/collections/_search_form.html.erb
1755
1665
  - app/views/hyrax/collections/_search_results.html.erb
1756
- - app/views/hyrax/collections/_show_actions.html.erb
1757
1666
  - app/views/hyrax/collections/_show_descriptions.html.erb
1758
1667
  - app/views/hyrax/collections/_show_document_list.html.erb
1759
- - app/views/hyrax/collections/_show_document_list_menu.html.erb
1760
1668
  - app/views/hyrax/collections/_show_document_list_row.html.erb
1761
1669
  - app/views/hyrax/collections/_show_fields.html.erb
1762
- - app/views/hyrax/collections/_single_item_action_fields.html.erb
1763
1670
  - app/views/hyrax/collections/_sort_and_per_page.html.erb
1764
1671
  - app/views/hyrax/collections/_view_type_group.html.erb
1765
- - app/views/hyrax/collections/_work_action_menu.html.erb
1766
- - app/views/hyrax/collections/edit.html.erb
1767
- - app/views/hyrax/collections/edit_fields/_description.html.erb
1768
- - app/views/hyrax/collections/new.html.erb
1769
1672
  - app/views/hyrax/collections/show.html.erb
1770
1673
  - app/views/hyrax/contact_form/_directions.html.erb
1771
1674
  - app/views/hyrax/contact_form/create.html.erb
1772
1675
  - app/views/hyrax/contact_form/new.html.erb
1773
1676
  - app/views/hyrax/contact_mailer/contact.html.erb
1774
- - app/views/hyrax/content_blocks/_featured_researcher.html.erb
1775
- - app/views/hyrax/content_blocks/index.html.erb
1776
- - app/views/hyrax/dashboard/_create_work_action.html.erb
1777
- - app/views/hyrax/dashboard/_index_partials/_contents.html.erb
1778
- - app/views/hyrax/dashboard/_index_partials/_heading_actions.html.erb
1779
- - app/views/hyrax/dashboard/_index_partials/_heading_greetings.html.erb
1677
+ - app/views/hyrax/content_blocks/_form.html.erb
1678
+ - app/views/hyrax/content_blocks/edit.html.erb
1679
+ - app/views/hyrax/content_blocks/templates/agreement.html.erb
1680
+ - app/views/hyrax/content_blocks/templates/terms.html.erb
1681
+ - app/views/hyrax/dashboard/_admin_sets.html.erb
1780
1682
  - app/views/hyrax/dashboard/_index_partials/_proxy_rights.html.erb
1781
1683
  - app/views/hyrax/dashboard/_index_partials/_transfers.html.erb
1782
- - app/views/hyrax/dashboard/index.html.erb
1684
+ - app/views/hyrax/dashboard/_sidebar.html.erb
1685
+ - app/views/hyrax/dashboard/collections/_batch_edits_actions.html.erb
1686
+ - app/views/hyrax/dashboard/collections/_bookmark_control.html.erb
1687
+ - app/views/hyrax/dashboard/collections/_button_create_collection.html.erb
1688
+ - app/views/hyrax/dashboard/collections/_button_for_remove_selected_from_collection.html.erb
1689
+ - app/views/hyrax/dashboard/collections/_button_for_update_collection.html.erb
1690
+ - app/views/hyrax/dashboard/collections/_button_remove_from_collection.html.erb
1691
+ - app/views/hyrax/dashboard/collections/_document_list.html.erb
1692
+ - app/views/hyrax/dashboard/collections/_edit_actions.html.erb
1693
+ - app/views/hyrax/dashboard/collections/_form.html.erb
1694
+ - app/views/hyrax/dashboard/collections/_form_default_group.html.erb
1695
+ - app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb
1696
+ - app/views/hyrax/dashboard/collections/_form_permission.html.erb
1697
+ - app/views/hyrax/dashboard/collections/_form_share.html.erb
1698
+ - app/views/hyrax/dashboard/collections/_list_collections.html.erb
1699
+ - app/views/hyrax/dashboard/collections/_list_works.html.erb
1700
+ - app/views/hyrax/dashboard/collections/_show_actions.html.erb
1701
+ - app/views/hyrax/dashboard/collections/_show_descriptions.html.erb
1702
+ - app/views/hyrax/dashboard/collections/_show_document_list.html.erb
1703
+ - app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb
1704
+ - app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb
1705
+ - app/views/hyrax/dashboard/collections/_show_fields.html.erb
1706
+ - app/views/hyrax/dashboard/collections/_single_item_action_fields.html.erb
1707
+ - app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb
1708
+ - app/views/hyrax/dashboard/collections/_work_action_menu.html.erb
1709
+ - app/views/hyrax/dashboard/collections/edit.html.erb
1710
+ - app/views/hyrax/dashboard/collections/edit_fields/_description.html.erb
1711
+ - app/views/hyrax/dashboard/collections/new.html.erb
1712
+ - app/views/hyrax/dashboard/collections/show.html.erb
1713
+ - app/views/hyrax/dashboard/profiles/_edit_primary.html.erb
1714
+ - app/views/hyrax/dashboard/profiles/_edit_secondary.html.erb
1715
+ - app/views/hyrax/dashboard/profiles/_trophy_edit.html.erb
1716
+ - app/views/hyrax/dashboard/profiles/_zotero.html.erb
1717
+ - app/views/hyrax/dashboard/profiles/edit.html.erb
1718
+ - app/views/hyrax/dashboard/profiles/show.html.erb
1719
+ - app/views/hyrax/dashboard/show_admin.html.erb
1720
+ - app/views/hyrax/dashboard/show_user.html.erb
1721
+ - app/views/hyrax/dashboard/sidebar/_activity.html.erb
1722
+ - app/views/hyrax/dashboard/sidebar/_configuration.html.erb
1723
+ - app/views/hyrax/dashboard/sidebar/_repository_content.html.erb
1724
+ - app/views/hyrax/dashboard/sidebar/_tasks.html.erb
1725
+ - app/views/hyrax/dashboard/works/_default_group.html.erb
1726
+ - app/views/hyrax/dashboard/works/_list_works.html.erb
1727
+ - app/views/hyrax/embargoes/_embargo_history.html.erb
1728
+ - app/views/hyrax/embargoes/_list_active_embargoes.html.erb
1729
+ - app/views/hyrax/embargoes/_list_deactivated_embargoes.html.erb
1730
+ - app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb
1731
+ - app/views/hyrax/embargoes/_table_headers.html.erb
1732
+ - app/views/hyrax/embargoes/edit.html.erb
1733
+ - app/views/hyrax/embargoes/index.html.erb
1783
1734
  - app/views/hyrax/file_sets/_actions.html.erb
1784
1735
  - app/views/hyrax/file_sets/_asset_deleted_flash.html.erb
1785
1736
  - app/views/hyrax/file_sets/_asset_permissions_denial_flash.html.erb
1786
1737
  - app/views/hyrax/file_sets/_asset_saved_flash.html.erb
1787
1738
  - app/views/hyrax/file_sets/_asset_updated_flash.html.erb
1788
1739
  - app/views/hyrax/file_sets/_descriptions.html.erb
1789
- - app/views/hyrax/file_sets/_edit.js.erb
1790
1740
  - app/views/hyrax/file_sets/_extra_fields_modal.html.erb
1741
+ - app/views/hyrax/file_sets/_file_set_title.erb
1791
1742
  - app/views/hyrax/file_sets/_form.html.erb
1792
1743
  - app/views/hyrax/file_sets/_groups_description.html.erb
1793
1744
  - app/views/hyrax/file_sets/_permission.html.erb
@@ -1821,8 +1772,13 @@ files:
1821
1772
  - app/views/hyrax/homepage/_recently_uploaded.html.erb
1822
1773
  - app/views/hyrax/homepage/_sortable_featured.html.erb
1823
1774
  - app/views/hyrax/homepage/index.html.erb
1824
- - app/views/hyrax/mailbox/_notifications.html.erb
1825
- - app/views/hyrax/mailbox/index.html.erb
1775
+ - app/views/hyrax/leases/_lease_history.html.erb
1776
+ - app/views/hyrax/leases/_list_active_leases.html.erb
1777
+ - app/views/hyrax/leases/_list_deactivated_leases.html.erb
1778
+ - app/views/hyrax/leases/_list_expired_active_leases.html.erb
1779
+ - app/views/hyrax/leases/_table_headers.html.erb
1780
+ - app/views/hyrax/leases/edit.html.erb
1781
+ - app/views/hyrax/leases/index.html.erb
1826
1782
  - app/views/hyrax/my/_batch_edits_actions.html.erb
1827
1783
  - app/views/hyrax/my/_collection_action_menu.html.erb
1828
1784
  - app/views/hyrax/my/_constraints.html.erb
@@ -1832,29 +1788,37 @@ files:
1832
1788
  - app/views/hyrax/my/_facet_limit.html.erb
1833
1789
  - app/views/hyrax/my/_facet_pagination.html.erb
1834
1790
  - app/views/hyrax/my/_facet_selected.html.erb
1835
- - app/views/hyrax/my/_facets.html.erb
1836
- - app/views/hyrax/my/_index_partials/_default_group.html.erb
1837
- - app/views/hyrax/my/_index_partials/_list_collections.html.erb
1838
- - app/views/hyrax/my/_index_partials/_list_works.html.erb
1839
1791
  - app/views/hyrax/my/_results_pagination.html.erb
1840
1792
  - app/views/hyrax/my/_scripts.js.erb
1793
+ - app/views/hyrax/my/_search_form.html.erb
1841
1794
  - app/views/hyrax/my/_search_header.html.erb
1842
1795
  - app/views/hyrax/my/_sort_and_per_page.html.erb
1843
1796
  - app/views/hyrax/my/_work_action_menu.html.erb
1797
+ - app/views/hyrax/my/collections/_default_group.html.erb
1798
+ - app/views/hyrax/my/collections/_facets.html.erb
1799
+ - app/views/hyrax/my/collections/_list_collections.html.erb
1800
+ - app/views/hyrax/my/collections/_tabs.html.erb
1801
+ - app/views/hyrax/my/collections/index.html.erb
1844
1802
  - app/views/hyrax/my/facet.html.erb
1845
1803
  - app/views/hyrax/my/index.html.erb
1804
+ - app/views/hyrax/my/works/_default_group.html.erb
1805
+ - app/views/hyrax/my/works/_facets.html.erb
1806
+ - app/views/hyrax/my/works/_list_works.html.erb
1807
+ - app/views/hyrax/my/works/_tabs.html.erb
1808
+ - app/views/hyrax/my/works/index.html.erb
1809
+ - app/views/hyrax/notifications/_notifications.html.erb
1810
+ - app/views/hyrax/notifications/index.html.erb
1846
1811
  - app/views/hyrax/operations/index.html.erb
1847
1812
  - app/views/hyrax/operations/show.html.erb
1813
+ - app/views/hyrax/pages/_form.html.erb
1814
+ - app/views/hyrax/pages/edit.html.erb
1848
1815
  - app/views/hyrax/pages/show.html.erb
1849
1816
  - app/views/hyrax/permissions/confirm.html.erb
1850
1817
  - app/views/hyrax/permissions/confirm_access.html.erb
1851
1818
  - app/views/hyrax/single_use_links/index.html.erb
1852
1819
  - app/views/hyrax/single_use_links_viewer/show.html.erb
1853
1820
  - app/views/hyrax/single_use_links_viewer/single_use_error.html.erb
1854
- - app/views/hyrax/static/agreement.html.erb
1855
- - app/views/hyrax/static/help.html.erb
1856
1821
  - app/views/hyrax/static/mendeley.html.erb
1857
- - app/views/hyrax/static/terms.html.erb
1858
1822
  - app/views/hyrax/static/zotero.html.erb
1859
1823
  - app/views/hyrax/stats/file.html.erb
1860
1824
  - app/views/hyrax/stats/work.html.erb
@@ -1867,21 +1831,16 @@ files:
1867
1831
  - app/views/hyrax/users/_activity.html.erb
1868
1832
  - app/views/hyrax/users/_activity_log.html.erb
1869
1833
  - app/views/hyrax/users/_contributions.html.erb
1870
- - app/views/hyrax/users/_edit_primary.html.erb
1871
- - app/views/hyrax/users/_edit_secondary.html.erb
1872
1834
  - app/views/hyrax/users/_left_sidebar.html.erb
1873
1835
  - app/views/hyrax/users/_notify_number.html.erb
1874
1836
  - app/views/hyrax/users/_profile_tabs.html.erb
1875
1837
  - app/views/hyrax/users/_proxies.html.erb
1876
1838
  - app/views/hyrax/users/_search_form.html.erb
1877
- - app/views/hyrax/users/_trophy_edit.html.erb
1878
1839
  - app/views/hyrax/users/_user.html.erb
1879
1840
  - app/views/hyrax/users/_user_info.html.erb
1880
1841
  - app/views/hyrax/users/_user_row.html.erb
1881
1842
  - app/views/hyrax/users/_user_util_links_extra.html.erb
1882
1843
  - app/views/hyrax/users/_vitals.html.erb
1883
- - app/views/hyrax/users/_zotero.html.erb
1884
- - app/views/hyrax/users/edit.html.erb
1885
1844
  - app/views/hyrax/users/index.html.erb
1886
1845
  - app/views/hyrax/users/index.json.jbuilder
1887
1846
  - app/views/hyrax/users/notifications_number.json.jbuilder
@@ -1895,17 +1854,17 @@ files:
1895
1854
  - app/views/kaminari/blacklight/_prev_page.html.erb
1896
1855
  - app/views/kaminari/blacklight_compact/_paginator.html.erb
1897
1856
  - app/views/layouts/_head_tag_content.html.erb
1898
- - app/views/layouts/admin.html.erb
1857
+ - app/views/layouts/dashboard.html.erb
1899
1858
  - app/views/layouts/error.html.erb
1900
1859
  - app/views/layouts/homepage.html.erb
1901
1860
  - app/views/layouts/hyrax.html.erb
1902
1861
  - app/views/layouts/hyrax/1_column.html.erb
1903
1862
  - app/views/records/edit_fields/_based_near.html.erb
1904
- - app/views/records/edit_fields/_default.html.erb
1905
1863
  - app/views/records/edit_fields/_description.html.erb
1906
1864
  - app/views/records/edit_fields/_language.html.erb
1865
+ - app/views/records/edit_fields/_license.html.erb
1907
1866
  - app/views/records/edit_fields/_resource_type.html.erb
1908
- - app/views/records/edit_fields/_rights.html.erb
1867
+ - app/views/records/edit_fields/_rights_statement.html.erb
1909
1868
  - app/views/records/edit_fields/_subject.html.erb
1910
1869
  - app/views/records/show_fields/_based_near.html.erb
1911
1870
  - app/views/records/show_fields/_contributor.html.erb
@@ -1922,17 +1881,32 @@ files:
1922
1881
  - app/views/records/show_fields/_rights.html.erb
1923
1882
  - app/views/records/show_fields/_subject.html.erb
1924
1883
  - app/views/records/show_fields/_title.html.erb
1884
+ - app/views/shared/_appearance_styles.html.erb
1925
1885
  - app/views/shared/_citations.html.erb
1926
1886
  - app/views/shared/_footer.html.erb
1927
1887
  - app/views/shared/_locale_picker.html.erb
1928
1888
  - app/views/shared/_select_work_type_modal.html.erb
1889
+ - artifacts/entity-relationship-diagram.dot
1890
+ - artifacts/entity-relationship-diagram.pdf
1891
+ - config/brakeman.ignore
1929
1892
  - config/features.rb
1893
+ - config/i18n-tasks.yml
1930
1894
  - config/initializers/hyrax_callbacks.rb
1931
1895
  - config/initializers/simple_form.rb
1896
+ - config/locales/hyrax.de.yml
1932
1897
  - config/locales/hyrax.en.yml
1933
1898
  - config/locales/hyrax.es.yml
1899
+ - config/locales/hyrax.fr.yml
1900
+ - config/locales/hyrax.it.yml
1901
+ - config/locales/hyrax.pt-BR.yml
1934
1902
  - config/locales/hyrax.zh.yml
1903
+ - config/locales/simple_form.de.yml
1935
1904
  - config/locales/simple_form.en.yml
1905
+ - config/locales/simple_form.es.yml
1906
+ - config/locales/simple_form.fr.yml
1907
+ - config/locales/simple_form.it.yml
1908
+ - config/locales/simple_form.pt-BR.yml
1909
+ - config/locales/simple_form.zh.yml
1936
1910
  - config/routes.rb
1937
1911
  - config/schema_org.yml
1938
1912
  - db/migrate/20160328222152_create_version_committers.rb
@@ -1972,6 +1946,8 @@ files:
1972
1946
  - db/migrate/20170131142607_add_permission_template_to_sipity_workflow.rb
1973
1947
  - db/migrate/20170307142607_tidy_up_because_of_bad_exception.rb
1974
1948
  - db/migrate/20170308175556_add_allows_access_grant_to_workflow.rb
1949
+ - db/migrate/20170504192714_change_checksum_audit_log.rb
1950
+ - db/migrate/20170621201939_create_job_io_wrappers.rb
1975
1951
  - hyrax.gemspec
1976
1952
  - lib/generators/hyrax/arkivo_api_generator.rb
1977
1953
  - lib/generators/hyrax/assets_generator.rb
@@ -1995,8 +1971,12 @@ files:
1995
1971
  - lib/generators/hyrax/templates/config/hyrax.rb
1996
1972
  - lib/generators/hyrax/templates/config/initializers/simple_form.rb
1997
1973
  - lib/generators/hyrax/templates/config/initializers/simple_form_bootstrap.rb
1974
+ - lib/generators/hyrax/templates/config/locales/hyrax.de.yml
1998
1975
  - lib/generators/hyrax/templates/config/locales/hyrax.en.yml
1999
1976
  - lib/generators/hyrax/templates/config/locales/hyrax.es.yml
1977
+ - lib/generators/hyrax/templates/config/locales/hyrax.fr.yml
1978
+ - lib/generators/hyrax/templates/config/locales/hyrax.it.yml
1979
+ - lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml
2000
1980
  - lib/generators/hyrax/templates/config/locales/hyrax.zh.yml
2001
1981
  - lib/generators/hyrax/templates/config/mime_types.rb
2002
1982
  - lib/generators/hyrax/templates/config/mini_magick.rb
@@ -2020,11 +2000,18 @@ files:
2020
2000
  - lib/generators/hyrax/work/templates/feature_spec.rb.erb
2021
2001
  - lib/generators/hyrax/work/templates/form.rb.erb
2022
2002
  - lib/generators/hyrax/work/templates/form_spec.rb.erb
2003
+ - lib/generators/hyrax/work/templates/indexer.rb.erb
2004
+ - lib/generators/hyrax/work/templates/locale.de.yml.erb
2023
2005
  - lib/generators/hyrax/work/templates/locale.en.yml.erb
2024
2006
  - lib/generators/hyrax/work/templates/locale.es.yml.erb
2007
+ - lib/generators/hyrax/work/templates/locale.fr.yml.erb
2008
+ - lib/generators/hyrax/work/templates/locale.it.yml.erb
2009
+ - lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb
2025
2010
  - lib/generators/hyrax/work/templates/locale.zh.yml.erb
2026
2011
  - lib/generators/hyrax/work/templates/model.rb.erb
2027
2012
  - lib/generators/hyrax/work/templates/model_spec.rb.erb
2013
+ - lib/generators/hyrax/work/templates/presenter.rb.erb
2014
+ - lib/generators/hyrax/work/templates/presenter_spec.rb.erb
2028
2015
  - lib/generators/hyrax/work/work_generator.rb
2029
2016
  - lib/hyrax.rb
2030
2017
  - lib/hyrax/arkivo.rb
@@ -2035,10 +2022,6 @@ files:
2035
2022
  - lib/hyrax/arkivo/schema_validator.rb
2036
2023
  - lib/hyrax/callbacks.rb
2037
2024
  - lib/hyrax/callbacks/registry.rb
2038
- - lib/hyrax/collections.rb
2039
- - lib/hyrax/collections/accepts_batches.rb
2040
- - lib/hyrax/collections/search_service.rb
2041
- - lib/hyrax/collections_migration.rb
2042
2025
  - lib/hyrax/configuration.rb
2043
2026
  - lib/hyrax/controlled_vocabulary/importer/downloader.rb
2044
2027
  - lib/hyrax/controlled_vocabulary/importer/language.rb
@@ -2097,28 +2080,32 @@ files:
2097
2080
  - spec/abilities/generic_work_abilities_spec.rb
2098
2081
  - spec/abilities/operation_ability_spec.rb
2099
2082
  - spec/abilities/proxies_and_transfer_abilities_spec.rb
2100
- - spec/actors/hyrax/actors/actor_stack_spec.rb
2101
- - spec/actors/hyrax/actors/add_as_member_of_collections_actor_spec.rb
2102
2083
  - spec/actors/hyrax/actors/apply_order_actor_spec.rb
2084
+ - spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb
2103
2085
  - spec/actors/hyrax/actors/attach_members_actor_spec.rb
2086
+ - spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb
2087
+ - spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb
2088
+ - spec/actors/hyrax/actors/collections_membership_actor_spec.rb
2089
+ - spec/actors/hyrax/actors/create_with_files_actor_spec.rb
2090
+ - spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb
2091
+ - spec/actors/hyrax/actors/default_admin_set_actor_spec.rb
2104
2092
  - spec/actors/hyrax/actors/embargo_actor_spec.rb
2093
+ - spec/actors/hyrax/actors/featured_work_actor_spec.rb
2105
2094
  - spec/actors/hyrax/actors/file_actor_spec.rb
2106
2095
  - spec/actors/hyrax/actors/file_set_actor_spec.rb
2107
2096
  - spec/actors/hyrax/actors/generic_work_actor_spec.rb
2108
2097
  - spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb
2109
2098
  - spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb
2110
2099
  - spec/actors/hyrax/actors/lease_actor_spec.rb
2100
+ - spec/actors/hyrax/actors/model_actor_spec.rb
2111
2101
  - spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb
2112
2102
  - spec/actors/hyrax/actors/transactional_request_spec.rb
2113
- - spec/actors/hyrax/apply_permission_template_actor_spec.rb
2114
- - spec/actors/hyrax/create_with_files_actor_spec.rb
2115
- - spec/actors/hyrax/create_with_remote_files_actor_spec.rb
2116
- - spec/actors/hyrax/default_admin_set_actor_spec.rb
2117
2103
  - spec/authorities/qa/authorities/find_works_spec.rb
2118
2104
  - spec/config/hyrax_events_spec.rb
2119
2105
  - spec/controllers/catalog_controller_spec.rb
2120
2106
  - spec/controllers/hyrax/accepts_batches_controller_spec.rb
2121
2107
  - spec/controllers/hyrax/admin/admin_sets_controller_spec.rb
2108
+ - spec/controllers/hyrax/admin/appearances_controller_spec.rb
2122
2109
  - spec/controllers/hyrax/admin/features_controller_spec.rb
2123
2110
  - spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb
2124
2111
  - spec/controllers/hyrax/admin/permission_templates_controller_spec.rb
@@ -2127,31 +2114,34 @@ files:
2127
2114
  - spec/controllers/hyrax/admin/users_controller_spec.rb
2128
2115
  - spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb
2129
2116
  - spec/controllers/hyrax/admin/workflows_controller_spec.rb
2130
- - spec/controllers/hyrax/admin_controller_spec.rb
2131
- - spec/controllers/hyrax/admin_sets_controller_spec.rb
2132
2117
  - spec/controllers/hyrax/api/items_controller_spec.rb
2133
2118
  - spec/controllers/hyrax/api/zotero_controller_spec.rb
2134
- - spec/controllers/hyrax/audits_controller_spec.rb
2135
2119
  - spec/controllers/hyrax/batch_edits_controller_spec.rb
2136
2120
  - spec/controllers/hyrax/batch_uploads_controller_spec.rb
2137
2121
  - spec/controllers/hyrax/citations_controller_spec.rb
2138
2122
  - spec/controllers/hyrax/collections_controller_spec.rb
2139
2123
  - spec/controllers/hyrax/contact_form_controller_spec.rb
2140
2124
  - spec/controllers/hyrax/content_blocks_controller_spec.rb
2125
+ - spec/controllers/hyrax/dashboard/collections_controller_spec.rb
2126
+ - spec/controllers/hyrax/dashboard/profiles_controller_spec.rb
2127
+ - spec/controllers/hyrax/dashboard/works_controller_spec.rb
2141
2128
  - spec/controllers/hyrax/dashboard_controller_spec.rb
2142
2129
  - spec/controllers/hyrax/depositors_controller_spec.rb
2143
2130
  - spec/controllers/hyrax/downloads_controller_spec.rb
2131
+ - spec/controllers/hyrax/embargoes_controller_spec.rb
2144
2132
  - spec/controllers/hyrax/featured_work_lists_controller_spec.rb
2145
2133
  - spec/controllers/hyrax/featured_works_controller_spec.rb
2146
2134
  - spec/controllers/hyrax/file_sets_controller_spec.rb
2135
+ - spec/controllers/hyrax/fixity_checks_controller_spec.rb
2147
2136
  - spec/controllers/hyrax/generic_works_controller_json_spec.rb
2148
2137
  - spec/controllers/hyrax/generic_works_controller_spec.rb
2149
2138
  - spec/controllers/hyrax/homepage_controller_spec.rb
2150
- - spec/controllers/hyrax/mailbox_controller_spec.rb
2139
+ - spec/controllers/hyrax/leases_controller_spec.rb
2151
2140
  - spec/controllers/hyrax/my/collections_controller_spec.rb
2152
2141
  - spec/controllers/hyrax/my/highlights_controller_spec.rb
2153
2142
  - spec/controllers/hyrax/my/shares_controller_spec.rb
2154
2143
  - spec/controllers/hyrax/my/works_controller_spec.rb
2144
+ - spec/controllers/hyrax/notifications_controller_spec.rb
2155
2145
  - spec/controllers/hyrax/operations_controller_spec.rb
2156
2146
  - spec/controllers/hyrax/pages_controller_spec.rb
2157
2147
  - spec/controllers/hyrax/permissions_controller_spec.rb
@@ -2160,7 +2150,6 @@ files:
2160
2150
  - spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb
2161
2151
  - spec/controllers/hyrax/static_controller_spec.rb
2162
2152
  - spec/controllers/hyrax/stats_controller_spec.rb
2163
- - spec/controllers/hyrax/tinymce_assets_controller_spec.rb
2164
2153
  - spec/controllers/hyrax/transfers_controller_spec.rb
2165
2154
  - spec/controllers/hyrax/trophies_controller_spec.rb
2166
2155
  - spec/controllers/hyrax/uploads_controller_spec.rb
@@ -2197,25 +2186,26 @@ files:
2197
2186
  - spec/features/batch_create_spec.rb
2198
2187
  - spec/features/batch_edit_spec.rb
2199
2188
  - spec/features/browse_catalog_spec.rb
2200
- - spec/features/browse_dashboard_files_spec.rb
2189
+ - spec/features/browse_dashboard_works_spec.rb
2201
2190
  - spec/features/catalog_search_spec.rb
2202
- - spec/features/cloud_upload_spec.rb
2203
2191
  - spec/features/collection_spec.rb
2204
2192
  - spec/features/contact_form_spec.rb
2205
2193
  - spec/features/create_child_work_spec.rb
2206
2194
  - spec/features/create_work_spec.rb
2195
+ - spec/features/dashboard/all_works.rb
2196
+ - spec/features/dashboard/collection_spec.rb
2197
+ - spec/features/dashboard/display_dashboard_spec.rb
2207
2198
  - spec/features/delete_work_spec.rb
2208
- - spec/features/display_dashboard_spec.rb
2209
2199
  - spec/features/edit_file_spec.rb
2210
2200
  - spec/features/edit_work_spec.rb
2201
+ - spec/features/embargo_spec.rb
2211
2202
  - spec/features/homepage_spec.rb
2203
+ - spec/features/lease_spec.rb
2212
2204
  - spec/features/notifications_spec.rb
2213
2205
  - spec/features/ownership_transfer_spec.rb
2214
2206
  - spec/features/proxy_spec.rb
2215
2207
  - spec/features/search_spec.rb
2216
- - spec/features/show_admin_set_spec.rb
2217
2208
  - spec/features/static_pages_spec.rb
2218
- - spec/features/user_admin_set_spec.rb
2219
2209
  - spec/features/users_spec.rb
2220
2210
  - spec/features/work_generator_spec.rb
2221
2211
  - spec/features/work_show_spec.rb
@@ -2227,6 +2217,7 @@ files:
2227
2217
  - spec/fixtures/authorities/licenses.yml
2228
2218
  - spec/fixtures/charter.docx
2229
2219
  - spec/fixtures/config/schema_org.yml
2220
+ - spec/fixtures/config/schema_org_second.yml
2230
2221
  - spec/fixtures/countdown.avi
2231
2222
  - spec/fixtures/docx_fits.xml
2232
2223
  - spec/fixtures/dublin_core_rdf_descMetadata.nt
@@ -2251,6 +2242,7 @@ files:
2251
2242
  - spec/fixtures/world.png
2252
2243
  - spec/fixtures/xls_fits.xml
2253
2244
  - spec/fixtures/xml_fits.xml
2245
+ - spec/forms/hyrax/forms/admin/appearance_spec.rb
2254
2246
  - spec/forms/hyrax/forms/admin_set_form_spec.rb
2255
2247
  - spec/forms/hyrax/forms/batch_edit_form_spec.rb
2256
2248
  - spec/forms/hyrax/forms/batch_upload_form_spec.rb
@@ -2262,12 +2254,11 @@ files:
2262
2254
  - spec/forms/hyrax/forms/workflow_action_form_spec.rb
2263
2255
  - spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb
2264
2256
  - spec/forms/hyrax/generic_work_form_spec.rb
2265
- - spec/helpers/batch_edits_helper_spec.rb
2266
2257
  - spec/helpers/blacklight_helper_spec.rb
2267
2258
  - spec/helpers/dashboard_helper_spec.rb
2268
2259
  - spec/helpers/hyrax/ability_helper_spec.rb
2260
+ - spec/helpers/hyrax/batch_edits_helper_spec.rb
2269
2261
  - spec/helpers/hyrax/charts_helper_spec.rb
2270
- - spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb
2271
2262
  - spec/helpers/hyrax/collections_helper_spec.rb
2272
2263
  - spec/helpers/hyrax/content_block_helper_spec.rb
2273
2264
  - spec/helpers/hyrax/file_set_helper_spec.rb
@@ -2275,15 +2266,19 @@ files:
2275
2266
  - spec/helpers/hyrax_helper_spec.rb
2276
2267
  - spec/indexers/hyrax/collection_indexer_spec.rb
2277
2268
  - spec/indexers/hyrax/file_set_indexer_spec.rb
2278
- - spec/indexers/hyrax/work_indexer_spec.rb
2269
+ - spec/indexers/hyrax/generic_work_indexer_spec.rb
2270
+ - spec/inputs/controlled_vocabulary_input_spec.rb
2279
2271
  - spec/inputs/multifile_input_spec.rb
2272
+ - spec/javascripts/authority_select_spec.js
2280
2273
  - spec/javascripts/autocomplete_spec.js.coffee
2274
+ - spec/javascripts/batch_select_spec.js
2281
2275
  - spec/javascripts/charts_spec.coffee
2282
2276
  - spec/javascripts/checklist_item_spec.js
2283
2277
  - spec/javascripts/deposit_agreement_spec.js
2284
2278
  - spec/javascripts/file_manager_member_spec.coffee
2285
2279
  - spec/javascripts/file_manager_sorting_spec.coffee
2286
2280
  - spec/javascripts/fixtures/chart_example.html
2281
+ - spec/javascripts/fixtures/dashboard_batch_forms.html
2287
2282
  - spec/javascripts/fixtures/file_manager_member.html
2288
2283
  - spec/javascripts/fixtures/save_button.html
2289
2284
  - spec/javascripts/fixtures/sortable.html
@@ -2305,7 +2300,6 @@ files:
2305
2300
  - spec/javascripts/uploaded_files_spec.js
2306
2301
  - spec/javascripts/visibility_component_spec.js
2307
2302
  - spec/jobs/attach_files_to_work_job_spec.rb
2308
- - spec/jobs/audit_job_spec.rb
2309
2303
  - spec/jobs/batch_create_job_spec.rb
2310
2304
  - spec/jobs/characterize_job_spec.rb
2311
2305
  - spec/jobs/content_delete_event_job_spec.rb
@@ -2317,8 +2311,15 @@ files:
2317
2311
  - spec/jobs/create_derivatives_job_spec.rb
2318
2312
  - spec/jobs/create_work_job_spec.rb
2319
2313
  - spec/jobs/file_set_attached_event_job_spec.rb
2314
+ - spec/jobs/fixity_check_job_spec.rb
2315
+ - spec/jobs/hyrax/grant_edit_job_spec.rb
2316
+ - spec/jobs/hyrax/grant_edit_to_members_job_spec.rb
2317
+ - spec/jobs/hyrax/grant_read_job_spec.rb
2318
+ - spec/jobs/hyrax/grant_read_to_members_job_spec.rb
2319
+ - spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb
2320
+ - spec/jobs/hyrax/revoke_edit_job_spec.rb
2321
+ - spec/jobs/import_export_job_spec.rb
2320
2322
  - spec/jobs/import_url_job_spec.rb
2321
- - spec/jobs/ingest_file_job_spec.rb
2322
2323
  - spec/jobs/ingest_local_file_job_spec.rb
2323
2324
  - spec/jobs/inherit_permissions_job_spec.rb
2324
2325
  - spec/jobs/user_edit_profile_event_job_spec.rb
@@ -2330,7 +2331,6 @@ files:
2330
2331
  - spec/lib/hyrax/arkivo/schema_validator_spec.rb
2331
2332
  - spec/lib/hyrax/arkivo_spec.rb
2332
2333
  - spec/lib/hyrax/collections/search_service_spec.rb
2333
- - spec/lib/hyrax/collections_migration_spec.rb
2334
2334
  - spec/lib/hyrax/configuration_spec.rb
2335
2335
  - spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb
2336
2336
  - spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb
@@ -2360,12 +2360,14 @@ files:
2360
2360
  - spec/models/hyrax/download_spec.rb
2361
2361
  - spec/models/hyrax/operation_spec.rb
2362
2362
  - spec/models/hyrax/pageview_spec.rb
2363
+ - spec/models/hyrax/permission_template_access_spec.rb
2363
2364
  - spec/models/hyrax/permission_template_spec.rb
2364
2365
  - spec/models/hyrax/permissions/readable_permissions_spec.rb
2365
2366
  - spec/models/hyrax/permissions/writable_permissions_spec.rb
2366
2367
  - spec/models/hyrax/uploaded_file_spec.rb
2367
2368
  - spec/models/hyrax/user_usage_stats_spec.rb
2368
2369
  - spec/models/hyrax/work_behavior_spec.rb
2370
+ - spec/models/job_io_wrapper_spec.rb
2369
2371
  - spec/models/proxy_deposit_request_spec.rb
2370
2372
  - spec/models/single_use_link_spec.rb
2371
2373
  - spec/models/sipity/agent_spec.rb
@@ -2400,9 +2402,11 @@ files:
2400
2402
  - spec/presenters/hyrax/admin_stats_presenter_spec.rb
2401
2403
  - spec/presenters/hyrax/collection_options_presenter_spec.rb
2402
2404
  - spec/presenters/hyrax/collection_presenter_spec.rb
2405
+ - spec/presenters/hyrax/dashboard/user_presenter_spec.rb
2403
2406
  - spec/presenters/hyrax/embargo_presenter_spec.rb
2404
2407
  - spec/presenters/hyrax/file_set_presenter_spec.rb
2405
2408
  - spec/presenters/hyrax/file_usage_spec.rb
2409
+ - spec/presenters/hyrax/fixity_status_presenter_spec.rb
2406
2410
  - spec/presenters/hyrax/homepage_presenter_spec.rb
2407
2411
  - spec/presenters/hyrax/inspect_work_presenter_spec.rb
2408
2412
  - spec/presenters/hyrax/lease_presenter_spec.rb
@@ -2414,7 +2418,9 @@ files:
2414
2418
  - spec/presenters/hyrax/select_type_list_presenter_spec.rb
2415
2419
  - spec/presenters/hyrax/select_type_presenter_spec.rb
2416
2420
  - spec/presenters/hyrax/single_use_link_presenter_spec.rb
2421
+ - spec/presenters/hyrax/transfers_presenter_spec.rb
2417
2422
  - spec/presenters/hyrax/trophy_presenter_spec.rb
2423
+ - spec/presenters/hyrax/twitter_presenter_spec.rb
2418
2424
  - spec/presenters/hyrax/user_profile_presenter_spec.rb
2419
2425
  - spec/presenters/hyrax/version_list_presenter_spec.rb
2420
2426
  - spec/presenters/hyrax/version_presenter_spec.rb
@@ -2426,11 +2432,10 @@ files:
2426
2432
  - spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb
2427
2433
  - spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb
2428
2434
  - spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb
2435
+ - spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb
2429
2436
  - spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb
2430
- - spec/renderers/hyrax/renderers/rights_attribute_renderer_spec.rb
2431
2437
  - spec/requests/legacy_routing_spec.rb
2432
2438
  - spec/routing/admin_routes_spec.rb
2433
- - spec/routing/admin_sets_spec.rb
2434
2439
  - spec/routing/api_route_spec.rb
2435
2440
  - spec/routing/citations_route_spec.rb
2436
2441
  - spec/routing/featured_works_route_spec.rb
@@ -2440,25 +2445,22 @@ files:
2440
2445
  - spec/routing/route_spec.rb
2441
2446
  - spec/routing/single_use_link_spec.rb
2442
2447
  - spec/routing/stats_route_spec.rb
2443
- - spec/search_builder/hyrax/admin_set_search_builder_spec.rb
2444
- - spec/search_builder/hyrax/catalog_search_builder_spec.rb
2445
- - spec/search_builder/hyrax/embargo_search_builder_spec.rb
2446
- - spec/search_builder/hyrax/file_set_search_builder_spec.rb
2447
- - spec/search_builder/hyrax/find_works_search_builder_spec.rb
2448
- - spec/search_builder/hyrax/lease_search_builder_spec.rb
2449
- - spec/search_builder/hyrax/my_shares_search_builder_spec.rb
2450
- - spec/search_builder/hyrax/my_works_search_builder_spec.rb
2451
- - spec/search_builder/hyrax/single_admin_set_search_builder_spec.rb
2452
- - spec/search_builder/hyrax/stats/work_status_search_builder_spec.rb
2453
- - spec/search_builder/hyrax/work_relation_spec.rb
2454
- - spec/search_builder/hyrax/work_search_builder_spec.rb
2455
- - spec/search_builders/hyrax/active_works_search_builder_spec.rb
2456
2448
  - spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb
2449
+ - spec/search_builders/hyrax/admin_set_search_builder_spec.rb
2450
+ - spec/search_builders/hyrax/catalog_search_builder_spec.rb
2451
+ - spec/search_builders/hyrax/embargo_search_builder_spec.rb
2452
+ - spec/search_builders/hyrax/file_set_search_builder_spec.rb
2453
+ - spec/search_builders/hyrax/lease_search_builder_spec.rb
2454
+ - spec/search_builders/hyrax/my/find_works_search_builder_spec.rb
2455
+ - spec/search_builders/hyrax/my/shares_search_builder_spec.rb
2456
+ - spec/search_builders/hyrax/my/works_search_builder_spec.rb
2457
+ - spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb
2458
+ - spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb
2459
+ - spec/search_builders/hyrax/work_relation_spec.rb
2460
+ - spec/search_builders/hyrax/work_search_builder_spec.rb
2457
2461
  - spec/search_builders/hyrax/works_search_builder_spec.rb
2458
- - spec/services/hyrax/actor_factory_spec.rb
2459
2462
  - spec/services/hyrax/admin_set_create_service_spec.rb
2460
2463
  - spec/services/hyrax/admin_set_service_spec.rb
2461
- - spec/services/hyrax/audit_failure_service_spec.rb
2462
2464
  - spec/services/hyrax/batch_create_failure_service_spec.rb
2463
2465
  - spec/services/hyrax/batch_create_success_service_spec.rb
2464
2466
  - spec/services/hyrax/change_content_depositor_service_spec.rb
@@ -2466,18 +2468,20 @@ files:
2466
2468
  - spec/services/hyrax/collection_size_service_spec.rb
2467
2469
  - spec/services/hyrax/collections_service_spec.rb
2468
2470
  - spec/services/hyrax/curation_concern_spec.rb
2471
+ - spec/services/hyrax/default_middleware_stack_spec.rb
2469
2472
  - spec/services/hyrax/derivative_path_spec.rb
2470
2473
  - spec/services/hyrax/derivative_service_spec.rb
2471
2474
  - spec/services/hyrax/embargo_service_spec.rb
2472
- - spec/services/hyrax/file_set_audit_service_spec.rb
2473
2475
  - spec/services/hyrax/file_set_csv_service_spec.rb
2474
2476
  - spec/services/hyrax/file_set_derivatives_service_spec.rb
2477
+ - spec/services/hyrax/file_set_fixity_check_service_spec.rb
2478
+ - spec/services/hyrax/fixity_check_failure_service_spec.rb
2475
2479
  - spec/services/hyrax/graph_exporter_spec.rb
2476
2480
  - spec/services/hyrax/import_url_failure_service_spec.rb
2477
- - spec/services/hyrax/import_url_success_service_spec.rb
2478
2481
  - spec/services/hyrax/lease_service_spec.rb
2479
2482
  - spec/services/hyrax/license_service_spec.rb
2480
2483
  - spec/services/hyrax/lock_manager_spec.rb
2484
+ - spec/services/hyrax/microdata_spec.rb
2481
2485
  - spec/services/hyrax/noid_spec.rb
2482
2486
  - spec/services/hyrax/parent_service_spec.rb
2483
2487
  - spec/services/hyrax/persist_derivatives_spec.rb
@@ -2485,7 +2489,7 @@ files:
2485
2489
  - spec/services/hyrax/qa_select_service_spec.rb
2486
2490
  - spec/services/hyrax/query_service_spec.rb
2487
2491
  - spec/services/hyrax/quick_classification_query_spec.rb
2488
- - spec/services/hyrax/repository_audit_service_spec.rb
2492
+ - spec/services/hyrax/repository_fixity_check_service_spec.rb
2489
2493
  - spec/services/hyrax/resource_types_service_spec.rb
2490
2494
  - spec/services/hyrax/rights_statements_spec.rb
2491
2495
  - spec/services/hyrax/statistics/collections/over_time_spec.rb
@@ -2507,6 +2511,7 @@ files:
2507
2511
  - spec/services/hyrax/workflow/deactivate_object_spec.rb
2508
2512
  - spec/services/hyrax/workflow/deposited_notification_spec.rb
2509
2513
  - spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb
2514
+ - spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb
2510
2515
  - spec/services/hyrax/workflow/method_generator_spec.rb
2511
2516
  - spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb
2512
2517
  - spec/services/hyrax/workflow/notification_generator_spec.rb
@@ -2528,27 +2533,30 @@ files:
2528
2533
  - spec/support/controller_level_helpers.rb
2529
2534
  - spec/support/factory_helpers.rb
2530
2535
  - spec/support/features.rb
2536
+ - spec/support/features/batch_edit_actions.rb
2531
2537
  - spec/support/features/session_helpers.rb
2538
+ - spec/support/features/workflow.rb
2532
2539
  - spec/support/input_support.rb
2533
- - spec/support/locations.rb
2540
+ - spec/support/logging_formatter.rb
2534
2541
  - spec/support/matchers/api_responses.rb
2535
2542
  - spec/support/matchers/response_matchers.rb
2536
- - spec/support/proxies.rb
2537
2543
  - spec/support/rake.rb
2538
2544
  - spec/support/selectors.rb
2545
+ - spec/support/spec_statistic.rb
2539
2546
  - spec/support/speedup.rb
2540
2547
  - spec/support/statistic_helper.rb
2541
2548
  - spec/support/uploaded_file_monkeypatch.rb
2542
2549
  - spec/tasks/rake_spec.rb
2543
2550
  - spec/test_app_templates/Gemfile.extra
2551
+ - spec/test_app_templates/disable_animations_in_test_environment.rb
2544
2552
  - spec/test_app_templates/lib/generators/test_app_generator.rb
2545
2553
  - spec/views/_flash_msg.html.erb_spec.rb
2546
- - spec/views/_toolbar.html.erb_spec.rb
2547
2554
  - spec/views/_user_util_links.html.erb_spec.rb
2548
2555
  - spec/views/catalog/_index_list_default.html.erb_spec.rb
2549
2556
  - spec/views/catalog/_search_form.html.erb_spec.rb
2550
2557
  - spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb
2551
2558
  - spec/views/catalog/index.html.erb_spec.rb
2559
+ - spec/views/content_blocks/edit.html.erb_spec.rb
2552
2560
  - spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb
2553
2561
  - spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb
2554
2562
  - spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb
@@ -2557,6 +2565,7 @@ files:
2557
2565
  - spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb
2558
2566
  - spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb
2559
2567
  - spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb
2568
+ - spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb
2560
2569
  - spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb
2561
2570
  - spec/views/hyrax/admin/features/index.html.erb_spec.rb
2562
2571
  - spec/views/hyrax/admin/stats/show.html.erb_spec.rb
@@ -2569,6 +2578,7 @@ files:
2569
2578
  - spec/views/hyrax/base/_find_work_widget.html.erb_spec.rb
2570
2579
  - spec/views/hyrax/base/_form.html.erb_spec.rb
2571
2580
  - spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb
2581
+ - spec/views/hyrax/base/_form_metadata.html.erb_spec.rb
2572
2582
  - spec/views/hyrax/base/_form_progress.html.erb_spec.rb
2573
2583
  - spec/views/hyrax/base/_form_relationships.html.erb_spec.rb
2574
2584
  - spec/views/hyrax/base/_items.html.erb_spec.rb
@@ -2586,16 +2596,23 @@ files:
2586
2596
  - spec/views/hyrax/batch_edits/edit.html.erb_spec.rb
2587
2597
  - spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb
2588
2598
  - spec/views/hyrax/citations/work.html.erb_spec.rb
2589
- - spec/views/hyrax/collections/_form.html.erb_spec.rb
2590
- - spec/views/hyrax/collections/_form_for_select_collection.html.erb_spec.rb
2591
2599
  - spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb
2592
2600
  - spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb
2593
- - spec/views/hyrax/collections/_show_document_list_menu.html.erb_spec.rb
2594
2601
  - spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb
2595
- - spec/views/hyrax/collections/edit.html.erb_spec.rb
2596
2602
  - spec/views/hyrax/collections/show.html.erb_spec.rb
2597
- - spec/views/hyrax/dashboard/create_work_action.html.erb_spec.rb
2598
- - spec/views/hyrax/dashboard/index_spec.rb
2603
+ - spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb
2604
+ - spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb
2605
+ - spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb
2606
+ - spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb
2607
+ - spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb
2608
+ - spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb
2609
+ - spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb
2610
+ - spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb
2611
+ - spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb
2612
+ - spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb
2613
+ - spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb
2614
+ - spec/views/hyrax/dashboard/show_user_spec.rb
2615
+ - spec/views/hyrax/embargoes/index.html.erb_spec.rb
2599
2616
  - spec/views/hyrax/file_sets/_permission.html.erb_spec.rb
2600
2617
  - spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb
2601
2618
  - spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb
@@ -2609,27 +2626,30 @@ files:
2609
2626
  - spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb
2610
2627
  - spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb
2611
2628
  - spec/views/hyrax/homepage/index.html.erb_spec.rb
2612
- - spec/views/hyrax/my/_list_collections.html.erb_spec.rb
2613
- - spec/views/hyrax/my/_list_works.html.erb_spec.rb
2614
- - spec/views/hyrax/my/_sort_and_per_page.html.erb_spec.rb
2629
+ - spec/views/hyrax/leases/index.html.erb_spec.rb
2630
+ - spec/views/hyrax/my/_search_header.html.erb_spec.rb
2615
2631
  - spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb
2632
+ - spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb
2616
2633
  - spec/views/hyrax/my/facet.html.erb_spec.rb
2634
+ - spec/views/hyrax/my/works/_list_works.html.erb_spec.rb
2635
+ - spec/views/hyrax/my/works/index.html.erb_spec.rb
2617
2636
  - spec/views/hyrax/permissions/confirm.html.erb_spec.rb
2618
2637
  - spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb
2619
2638
  - spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb
2620
2639
  - spec/views/hyrax/stats/file.html.erb_spec.rb
2621
2640
  - spec/views/hyrax/uploads/create.json.jbuilder_spec.rb
2622
2641
  - spec/views/hyrax/users/_user_info.html.erb_spec.rb
2623
- - spec/views/hyrax/users/edit.html.erb_spec.rb
2624
2642
  - spec/views/hyrax/users/index.html.erb_spec.rb
2625
2643
  - spec/views/hyrax/users/show.html.erb_spec.rb
2626
2644
  - spec/views/layouts/error.html.erb_spec.rb
2645
+ - spec/views/pages/edit.html.erb_spec.rb
2646
+ - spec/views/pages/show.html.erb_spec.rb
2627
2647
  - spec/views/records/edit_fields/_based_near.html.erb_spec.rb
2628
2648
  - spec/views/records/edit_fields/_description.html.erb_spec.rb
2629
2649
  - spec/views/records/edit_fields/_language.html.erb_spec.rb
2630
2650
  - spec/views/records/edit_fields/_subject.html.erb_spec.rb
2631
2651
  - spec/views/shared/select_work_type_modal.html.erb_spec.rb
2632
- - tasks/hyrax-dev.rake
2652
+ - tasks/hyrax_dev.rake
2633
2653
  - template.rb
2634
2654
  - vendor/assets/fonts/fontawesome-webfont.svg
2635
2655
  - vendor/assets/fonts/fontawesome-webfont.ttf
@@ -2641,7 +2661,7 @@ files:
2641
2661
  - vendor/assets/javascripts/fileupload/jquery.iframe-transport.js
2642
2662
  - vendor/assets/javascripts/fileupload/tmpl.js
2643
2663
  - vendor/assets/javascripts/fixedsticky.js
2644
- - vendor/assets/javascripts/jquery.validate.js
2664
+ - vendor/assets/javascripts/handlebars-v4.0.5.js
2645
2665
  - vendor/assets/javascripts/morris/morris.min.js
2646
2666
  - vendor/assets/javascripts/morris/raphael-min.js
2647
2667
  - vendor/assets/javascripts/nestable.js
@@ -2664,12 +2684,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
2664
2684
  version: '0'
2665
2685
  required_rubygems_version: !ruby/object:Gem::Requirement
2666
2686
  requirements:
2667
- - - ">="
2687
+ - - ">"
2668
2688
  - !ruby/object:Gem::Version
2669
- version: '0'
2689
+ version: 1.3.1
2670
2690
  requirements: []
2671
2691
  rubyforge_project:
2672
- rubygems_version: 2.6.13
2692
+ rubygems_version: 2.6.11
2673
2693
  signing_key:
2674
2694
  specification_version: 4
2675
2695
  summary: Hyrax is a front-end based on the robust Samvera framework, providing a user
@@ -2688,28 +2708,32 @@ test_files:
2688
2708
  - spec/abilities/generic_work_abilities_spec.rb
2689
2709
  - spec/abilities/operation_ability_spec.rb
2690
2710
  - spec/abilities/proxies_and_transfer_abilities_spec.rb
2691
- - spec/actors/hyrax/actors/actor_stack_spec.rb
2692
- - spec/actors/hyrax/actors/add_as_member_of_collections_actor_spec.rb
2693
2711
  - spec/actors/hyrax/actors/apply_order_actor_spec.rb
2712
+ - spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb
2694
2713
  - spec/actors/hyrax/actors/attach_members_actor_spec.rb
2714
+ - spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb
2715
+ - spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb
2716
+ - spec/actors/hyrax/actors/collections_membership_actor_spec.rb
2717
+ - spec/actors/hyrax/actors/create_with_files_actor_spec.rb
2718
+ - spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb
2719
+ - spec/actors/hyrax/actors/default_admin_set_actor_spec.rb
2695
2720
  - spec/actors/hyrax/actors/embargo_actor_spec.rb
2721
+ - spec/actors/hyrax/actors/featured_work_actor_spec.rb
2696
2722
  - spec/actors/hyrax/actors/file_actor_spec.rb
2697
2723
  - spec/actors/hyrax/actors/file_set_actor_spec.rb
2698
2724
  - spec/actors/hyrax/actors/generic_work_actor_spec.rb
2699
2725
  - spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb
2700
2726
  - spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb
2701
2727
  - spec/actors/hyrax/actors/lease_actor_spec.rb
2728
+ - spec/actors/hyrax/actors/model_actor_spec.rb
2702
2729
  - spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb
2703
2730
  - spec/actors/hyrax/actors/transactional_request_spec.rb
2704
- - spec/actors/hyrax/apply_permission_template_actor_spec.rb
2705
- - spec/actors/hyrax/create_with_files_actor_spec.rb
2706
- - spec/actors/hyrax/create_with_remote_files_actor_spec.rb
2707
- - spec/actors/hyrax/default_admin_set_actor_spec.rb
2708
2731
  - spec/authorities/qa/authorities/find_works_spec.rb
2709
2732
  - spec/config/hyrax_events_spec.rb
2710
2733
  - spec/controllers/catalog_controller_spec.rb
2711
2734
  - spec/controllers/hyrax/accepts_batches_controller_spec.rb
2712
2735
  - spec/controllers/hyrax/admin/admin_sets_controller_spec.rb
2736
+ - spec/controllers/hyrax/admin/appearances_controller_spec.rb
2713
2737
  - spec/controllers/hyrax/admin/features_controller_spec.rb
2714
2738
  - spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb
2715
2739
  - spec/controllers/hyrax/admin/permission_templates_controller_spec.rb
@@ -2718,31 +2742,34 @@ test_files:
2718
2742
  - spec/controllers/hyrax/admin/users_controller_spec.rb
2719
2743
  - spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb
2720
2744
  - spec/controllers/hyrax/admin/workflows_controller_spec.rb
2721
- - spec/controllers/hyrax/admin_controller_spec.rb
2722
- - spec/controllers/hyrax/admin_sets_controller_spec.rb
2723
2745
  - spec/controllers/hyrax/api/items_controller_spec.rb
2724
2746
  - spec/controllers/hyrax/api/zotero_controller_spec.rb
2725
- - spec/controllers/hyrax/audits_controller_spec.rb
2726
2747
  - spec/controllers/hyrax/batch_edits_controller_spec.rb
2727
2748
  - spec/controllers/hyrax/batch_uploads_controller_spec.rb
2728
2749
  - spec/controllers/hyrax/citations_controller_spec.rb
2729
2750
  - spec/controllers/hyrax/collections_controller_spec.rb
2730
2751
  - spec/controllers/hyrax/contact_form_controller_spec.rb
2731
2752
  - spec/controllers/hyrax/content_blocks_controller_spec.rb
2753
+ - spec/controllers/hyrax/dashboard/collections_controller_spec.rb
2754
+ - spec/controllers/hyrax/dashboard/profiles_controller_spec.rb
2755
+ - spec/controllers/hyrax/dashboard/works_controller_spec.rb
2732
2756
  - spec/controllers/hyrax/dashboard_controller_spec.rb
2733
2757
  - spec/controllers/hyrax/depositors_controller_spec.rb
2734
2758
  - spec/controllers/hyrax/downloads_controller_spec.rb
2759
+ - spec/controllers/hyrax/embargoes_controller_spec.rb
2735
2760
  - spec/controllers/hyrax/featured_work_lists_controller_spec.rb
2736
2761
  - spec/controllers/hyrax/featured_works_controller_spec.rb
2737
2762
  - spec/controllers/hyrax/file_sets_controller_spec.rb
2763
+ - spec/controllers/hyrax/fixity_checks_controller_spec.rb
2738
2764
  - spec/controllers/hyrax/generic_works_controller_json_spec.rb
2739
2765
  - spec/controllers/hyrax/generic_works_controller_spec.rb
2740
2766
  - spec/controllers/hyrax/homepage_controller_spec.rb
2741
- - spec/controllers/hyrax/mailbox_controller_spec.rb
2767
+ - spec/controllers/hyrax/leases_controller_spec.rb
2742
2768
  - spec/controllers/hyrax/my/collections_controller_spec.rb
2743
2769
  - spec/controllers/hyrax/my/highlights_controller_spec.rb
2744
2770
  - spec/controllers/hyrax/my/shares_controller_spec.rb
2745
2771
  - spec/controllers/hyrax/my/works_controller_spec.rb
2772
+ - spec/controllers/hyrax/notifications_controller_spec.rb
2746
2773
  - spec/controllers/hyrax/operations_controller_spec.rb
2747
2774
  - spec/controllers/hyrax/pages_controller_spec.rb
2748
2775
  - spec/controllers/hyrax/permissions_controller_spec.rb
@@ -2751,7 +2778,6 @@ test_files:
2751
2778
  - spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb
2752
2779
  - spec/controllers/hyrax/static_controller_spec.rb
2753
2780
  - spec/controllers/hyrax/stats_controller_spec.rb
2754
- - spec/controllers/hyrax/tinymce_assets_controller_spec.rb
2755
2781
  - spec/controllers/hyrax/transfers_controller_spec.rb
2756
2782
  - spec/controllers/hyrax/trophies_controller_spec.rb
2757
2783
  - spec/controllers/hyrax/uploads_controller_spec.rb
@@ -2788,25 +2814,26 @@ test_files:
2788
2814
  - spec/features/batch_create_spec.rb
2789
2815
  - spec/features/batch_edit_spec.rb
2790
2816
  - spec/features/browse_catalog_spec.rb
2791
- - spec/features/browse_dashboard_files_spec.rb
2817
+ - spec/features/browse_dashboard_works_spec.rb
2792
2818
  - spec/features/catalog_search_spec.rb
2793
- - spec/features/cloud_upload_spec.rb
2794
2819
  - spec/features/collection_spec.rb
2795
2820
  - spec/features/contact_form_spec.rb
2796
2821
  - spec/features/create_child_work_spec.rb
2797
2822
  - spec/features/create_work_spec.rb
2823
+ - spec/features/dashboard/all_works.rb
2824
+ - spec/features/dashboard/collection_spec.rb
2825
+ - spec/features/dashboard/display_dashboard_spec.rb
2798
2826
  - spec/features/delete_work_spec.rb
2799
- - spec/features/display_dashboard_spec.rb
2800
2827
  - spec/features/edit_file_spec.rb
2801
2828
  - spec/features/edit_work_spec.rb
2829
+ - spec/features/embargo_spec.rb
2802
2830
  - spec/features/homepage_spec.rb
2831
+ - spec/features/lease_spec.rb
2803
2832
  - spec/features/notifications_spec.rb
2804
2833
  - spec/features/ownership_transfer_spec.rb
2805
2834
  - spec/features/proxy_spec.rb
2806
2835
  - spec/features/search_spec.rb
2807
- - spec/features/show_admin_set_spec.rb
2808
2836
  - spec/features/static_pages_spec.rb
2809
- - spec/features/user_admin_set_spec.rb
2810
2837
  - spec/features/users_spec.rb
2811
2838
  - spec/features/work_generator_spec.rb
2812
2839
  - spec/features/work_show_spec.rb
@@ -2818,6 +2845,7 @@ test_files:
2818
2845
  - spec/fixtures/authorities/licenses.yml
2819
2846
  - spec/fixtures/charter.docx
2820
2847
  - spec/fixtures/config/schema_org.yml
2848
+ - spec/fixtures/config/schema_org_second.yml
2821
2849
  - spec/fixtures/countdown.avi
2822
2850
  - spec/fixtures/docx_fits.xml
2823
2851
  - spec/fixtures/dublin_core_rdf_descMetadata.nt
@@ -2842,6 +2870,7 @@ test_files:
2842
2870
  - spec/fixtures/world.png
2843
2871
  - spec/fixtures/xls_fits.xml
2844
2872
  - spec/fixtures/xml_fits.xml
2873
+ - spec/forms/hyrax/forms/admin/appearance_spec.rb
2845
2874
  - spec/forms/hyrax/forms/admin_set_form_spec.rb
2846
2875
  - spec/forms/hyrax/forms/batch_edit_form_spec.rb
2847
2876
  - spec/forms/hyrax/forms/batch_upload_form_spec.rb
@@ -2853,12 +2882,11 @@ test_files:
2853
2882
  - spec/forms/hyrax/forms/workflow_action_form_spec.rb
2854
2883
  - spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb
2855
2884
  - spec/forms/hyrax/generic_work_form_spec.rb
2856
- - spec/helpers/batch_edits_helper_spec.rb
2857
2885
  - spec/helpers/blacklight_helper_spec.rb
2858
2886
  - spec/helpers/dashboard_helper_spec.rb
2859
2887
  - spec/helpers/hyrax/ability_helper_spec.rb
2888
+ - spec/helpers/hyrax/batch_edits_helper_spec.rb
2860
2889
  - spec/helpers/hyrax/charts_helper_spec.rb
2861
- - spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb
2862
2890
  - spec/helpers/hyrax/collections_helper_spec.rb
2863
2891
  - spec/helpers/hyrax/content_block_helper_spec.rb
2864
2892
  - spec/helpers/hyrax/file_set_helper_spec.rb
@@ -2866,15 +2894,19 @@ test_files:
2866
2894
  - spec/helpers/hyrax_helper_spec.rb
2867
2895
  - spec/indexers/hyrax/collection_indexer_spec.rb
2868
2896
  - spec/indexers/hyrax/file_set_indexer_spec.rb
2869
- - spec/indexers/hyrax/work_indexer_spec.rb
2897
+ - spec/indexers/hyrax/generic_work_indexer_spec.rb
2898
+ - spec/inputs/controlled_vocabulary_input_spec.rb
2870
2899
  - spec/inputs/multifile_input_spec.rb
2900
+ - spec/javascripts/authority_select_spec.js
2871
2901
  - spec/javascripts/autocomplete_spec.js.coffee
2902
+ - spec/javascripts/batch_select_spec.js
2872
2903
  - spec/javascripts/charts_spec.coffee
2873
2904
  - spec/javascripts/checklist_item_spec.js
2874
2905
  - spec/javascripts/deposit_agreement_spec.js
2875
2906
  - spec/javascripts/file_manager_member_spec.coffee
2876
2907
  - spec/javascripts/file_manager_sorting_spec.coffee
2877
2908
  - spec/javascripts/fixtures/chart_example.html
2909
+ - spec/javascripts/fixtures/dashboard_batch_forms.html
2878
2910
  - spec/javascripts/fixtures/file_manager_member.html
2879
2911
  - spec/javascripts/fixtures/save_button.html
2880
2912
  - spec/javascripts/fixtures/sortable.html
@@ -2896,7 +2928,6 @@ test_files:
2896
2928
  - spec/javascripts/uploaded_files_spec.js
2897
2929
  - spec/javascripts/visibility_component_spec.js
2898
2930
  - spec/jobs/attach_files_to_work_job_spec.rb
2899
- - spec/jobs/audit_job_spec.rb
2900
2931
  - spec/jobs/batch_create_job_spec.rb
2901
2932
  - spec/jobs/characterize_job_spec.rb
2902
2933
  - spec/jobs/content_delete_event_job_spec.rb
@@ -2908,8 +2939,15 @@ test_files:
2908
2939
  - spec/jobs/create_derivatives_job_spec.rb
2909
2940
  - spec/jobs/create_work_job_spec.rb
2910
2941
  - spec/jobs/file_set_attached_event_job_spec.rb
2942
+ - spec/jobs/fixity_check_job_spec.rb
2943
+ - spec/jobs/hyrax/grant_edit_job_spec.rb
2944
+ - spec/jobs/hyrax/grant_edit_to_members_job_spec.rb
2945
+ - spec/jobs/hyrax/grant_read_job_spec.rb
2946
+ - spec/jobs/hyrax/grant_read_to_members_job_spec.rb
2947
+ - spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb
2948
+ - spec/jobs/hyrax/revoke_edit_job_spec.rb
2949
+ - spec/jobs/import_export_job_spec.rb
2911
2950
  - spec/jobs/import_url_job_spec.rb
2912
- - spec/jobs/ingest_file_job_spec.rb
2913
2951
  - spec/jobs/ingest_local_file_job_spec.rb
2914
2952
  - spec/jobs/inherit_permissions_job_spec.rb
2915
2953
  - spec/jobs/user_edit_profile_event_job_spec.rb
@@ -2921,7 +2959,6 @@ test_files:
2921
2959
  - spec/lib/hyrax/arkivo/schema_validator_spec.rb
2922
2960
  - spec/lib/hyrax/arkivo_spec.rb
2923
2961
  - spec/lib/hyrax/collections/search_service_spec.rb
2924
- - spec/lib/hyrax/collections_migration_spec.rb
2925
2962
  - spec/lib/hyrax/configuration_spec.rb
2926
2963
  - spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb
2927
2964
  - spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb
@@ -2951,12 +2988,14 @@ test_files:
2951
2988
  - spec/models/hyrax/download_spec.rb
2952
2989
  - spec/models/hyrax/operation_spec.rb
2953
2990
  - spec/models/hyrax/pageview_spec.rb
2991
+ - spec/models/hyrax/permission_template_access_spec.rb
2954
2992
  - spec/models/hyrax/permission_template_spec.rb
2955
2993
  - spec/models/hyrax/permissions/readable_permissions_spec.rb
2956
2994
  - spec/models/hyrax/permissions/writable_permissions_spec.rb
2957
2995
  - spec/models/hyrax/uploaded_file_spec.rb
2958
2996
  - spec/models/hyrax/user_usage_stats_spec.rb
2959
2997
  - spec/models/hyrax/work_behavior_spec.rb
2998
+ - spec/models/job_io_wrapper_spec.rb
2960
2999
  - spec/models/proxy_deposit_request_spec.rb
2961
3000
  - spec/models/single_use_link_spec.rb
2962
3001
  - spec/models/sipity/agent_spec.rb
@@ -2991,9 +3030,11 @@ test_files:
2991
3030
  - spec/presenters/hyrax/admin_stats_presenter_spec.rb
2992
3031
  - spec/presenters/hyrax/collection_options_presenter_spec.rb
2993
3032
  - spec/presenters/hyrax/collection_presenter_spec.rb
3033
+ - spec/presenters/hyrax/dashboard/user_presenter_spec.rb
2994
3034
  - spec/presenters/hyrax/embargo_presenter_spec.rb
2995
3035
  - spec/presenters/hyrax/file_set_presenter_spec.rb
2996
3036
  - spec/presenters/hyrax/file_usage_spec.rb
3037
+ - spec/presenters/hyrax/fixity_status_presenter_spec.rb
2997
3038
  - spec/presenters/hyrax/homepage_presenter_spec.rb
2998
3039
  - spec/presenters/hyrax/inspect_work_presenter_spec.rb
2999
3040
  - spec/presenters/hyrax/lease_presenter_spec.rb
@@ -3005,7 +3046,9 @@ test_files:
3005
3046
  - spec/presenters/hyrax/select_type_list_presenter_spec.rb
3006
3047
  - spec/presenters/hyrax/select_type_presenter_spec.rb
3007
3048
  - spec/presenters/hyrax/single_use_link_presenter_spec.rb
3049
+ - spec/presenters/hyrax/transfers_presenter_spec.rb
3008
3050
  - spec/presenters/hyrax/trophy_presenter_spec.rb
3051
+ - spec/presenters/hyrax/twitter_presenter_spec.rb
3009
3052
  - spec/presenters/hyrax/user_profile_presenter_spec.rb
3010
3053
  - spec/presenters/hyrax/version_list_presenter_spec.rb
3011
3054
  - spec/presenters/hyrax/version_presenter_spec.rb
@@ -3017,11 +3060,10 @@ test_files:
3017
3060
  - spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb
3018
3061
  - spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb
3019
3062
  - spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb
3063
+ - spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb
3020
3064
  - spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb
3021
- - spec/renderers/hyrax/renderers/rights_attribute_renderer_spec.rb
3022
3065
  - spec/requests/legacy_routing_spec.rb
3023
3066
  - spec/routing/admin_routes_spec.rb
3024
- - spec/routing/admin_sets_spec.rb
3025
3067
  - spec/routing/api_route_spec.rb
3026
3068
  - spec/routing/citations_route_spec.rb
3027
3069
  - spec/routing/featured_works_route_spec.rb
@@ -3031,25 +3073,22 @@ test_files:
3031
3073
  - spec/routing/route_spec.rb
3032
3074
  - spec/routing/single_use_link_spec.rb
3033
3075
  - spec/routing/stats_route_spec.rb
3034
- - spec/search_builder/hyrax/admin_set_search_builder_spec.rb
3035
- - spec/search_builder/hyrax/catalog_search_builder_spec.rb
3036
- - spec/search_builder/hyrax/embargo_search_builder_spec.rb
3037
- - spec/search_builder/hyrax/file_set_search_builder_spec.rb
3038
- - spec/search_builder/hyrax/find_works_search_builder_spec.rb
3039
- - spec/search_builder/hyrax/lease_search_builder_spec.rb
3040
- - spec/search_builder/hyrax/my_shares_search_builder_spec.rb
3041
- - spec/search_builder/hyrax/my_works_search_builder_spec.rb
3042
- - spec/search_builder/hyrax/single_admin_set_search_builder_spec.rb
3043
- - spec/search_builder/hyrax/stats/work_status_search_builder_spec.rb
3044
- - spec/search_builder/hyrax/work_relation_spec.rb
3045
- - spec/search_builder/hyrax/work_search_builder_spec.rb
3046
- - spec/search_builders/hyrax/active_works_search_builder_spec.rb
3047
3076
  - spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb
3077
+ - spec/search_builders/hyrax/admin_set_search_builder_spec.rb
3078
+ - spec/search_builders/hyrax/catalog_search_builder_spec.rb
3079
+ - spec/search_builders/hyrax/embargo_search_builder_spec.rb
3080
+ - spec/search_builders/hyrax/file_set_search_builder_spec.rb
3081
+ - spec/search_builders/hyrax/lease_search_builder_spec.rb
3082
+ - spec/search_builders/hyrax/my/find_works_search_builder_spec.rb
3083
+ - spec/search_builders/hyrax/my/shares_search_builder_spec.rb
3084
+ - spec/search_builders/hyrax/my/works_search_builder_spec.rb
3085
+ - spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb
3086
+ - spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb
3087
+ - spec/search_builders/hyrax/work_relation_spec.rb
3088
+ - spec/search_builders/hyrax/work_search_builder_spec.rb
3048
3089
  - spec/search_builders/hyrax/works_search_builder_spec.rb
3049
- - spec/services/hyrax/actor_factory_spec.rb
3050
3090
  - spec/services/hyrax/admin_set_create_service_spec.rb
3051
3091
  - spec/services/hyrax/admin_set_service_spec.rb
3052
- - spec/services/hyrax/audit_failure_service_spec.rb
3053
3092
  - spec/services/hyrax/batch_create_failure_service_spec.rb
3054
3093
  - spec/services/hyrax/batch_create_success_service_spec.rb
3055
3094
  - spec/services/hyrax/change_content_depositor_service_spec.rb
@@ -3057,18 +3096,20 @@ test_files:
3057
3096
  - spec/services/hyrax/collection_size_service_spec.rb
3058
3097
  - spec/services/hyrax/collections_service_spec.rb
3059
3098
  - spec/services/hyrax/curation_concern_spec.rb
3099
+ - spec/services/hyrax/default_middleware_stack_spec.rb
3060
3100
  - spec/services/hyrax/derivative_path_spec.rb
3061
3101
  - spec/services/hyrax/derivative_service_spec.rb
3062
3102
  - spec/services/hyrax/embargo_service_spec.rb
3063
- - spec/services/hyrax/file_set_audit_service_spec.rb
3064
3103
  - spec/services/hyrax/file_set_csv_service_spec.rb
3065
3104
  - spec/services/hyrax/file_set_derivatives_service_spec.rb
3105
+ - spec/services/hyrax/file_set_fixity_check_service_spec.rb
3106
+ - spec/services/hyrax/fixity_check_failure_service_spec.rb
3066
3107
  - spec/services/hyrax/graph_exporter_spec.rb
3067
3108
  - spec/services/hyrax/import_url_failure_service_spec.rb
3068
- - spec/services/hyrax/import_url_success_service_spec.rb
3069
3109
  - spec/services/hyrax/lease_service_spec.rb
3070
3110
  - spec/services/hyrax/license_service_spec.rb
3071
3111
  - spec/services/hyrax/lock_manager_spec.rb
3112
+ - spec/services/hyrax/microdata_spec.rb
3072
3113
  - spec/services/hyrax/noid_spec.rb
3073
3114
  - spec/services/hyrax/parent_service_spec.rb
3074
3115
  - spec/services/hyrax/persist_derivatives_spec.rb
@@ -3076,7 +3117,7 @@ test_files:
3076
3117
  - spec/services/hyrax/qa_select_service_spec.rb
3077
3118
  - spec/services/hyrax/query_service_spec.rb
3078
3119
  - spec/services/hyrax/quick_classification_query_spec.rb
3079
- - spec/services/hyrax/repository_audit_service_spec.rb
3120
+ - spec/services/hyrax/repository_fixity_check_service_spec.rb
3080
3121
  - spec/services/hyrax/resource_types_service_spec.rb
3081
3122
  - spec/services/hyrax/rights_statements_spec.rb
3082
3123
  - spec/services/hyrax/statistics/collections/over_time_spec.rb
@@ -3098,6 +3139,7 @@ test_files:
3098
3139
  - spec/services/hyrax/workflow/deactivate_object_spec.rb
3099
3140
  - spec/services/hyrax/workflow/deposited_notification_spec.rb
3100
3141
  - spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb
3142
+ - spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb
3101
3143
  - spec/services/hyrax/workflow/method_generator_spec.rb
3102
3144
  - spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb
3103
3145
  - spec/services/hyrax/workflow/notification_generator_spec.rb
@@ -3119,27 +3161,30 @@ test_files:
3119
3161
  - spec/support/controller_level_helpers.rb
3120
3162
  - spec/support/factory_helpers.rb
3121
3163
  - spec/support/features.rb
3164
+ - spec/support/features/batch_edit_actions.rb
3122
3165
  - spec/support/features/session_helpers.rb
3166
+ - spec/support/features/workflow.rb
3123
3167
  - spec/support/input_support.rb
3124
- - spec/support/locations.rb
3168
+ - spec/support/logging_formatter.rb
3125
3169
  - spec/support/matchers/api_responses.rb
3126
3170
  - spec/support/matchers/response_matchers.rb
3127
- - spec/support/proxies.rb
3128
3171
  - spec/support/rake.rb
3129
3172
  - spec/support/selectors.rb
3173
+ - spec/support/spec_statistic.rb
3130
3174
  - spec/support/speedup.rb
3131
3175
  - spec/support/statistic_helper.rb
3132
3176
  - spec/support/uploaded_file_monkeypatch.rb
3133
3177
  - spec/tasks/rake_spec.rb
3134
3178
  - spec/test_app_templates/Gemfile.extra
3179
+ - spec/test_app_templates/disable_animations_in_test_environment.rb
3135
3180
  - spec/test_app_templates/lib/generators/test_app_generator.rb
3136
3181
  - spec/views/_flash_msg.html.erb_spec.rb
3137
- - spec/views/_toolbar.html.erb_spec.rb
3138
3182
  - spec/views/_user_util_links.html.erb_spec.rb
3139
3183
  - spec/views/catalog/_index_list_default.html.erb_spec.rb
3140
3184
  - spec/views/catalog/_search_form.html.erb_spec.rb
3141
3185
  - spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb
3142
3186
  - spec/views/catalog/index.html.erb_spec.rb
3187
+ - spec/views/content_blocks/edit.html.erb_spec.rb
3143
3188
  - spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb
3144
3189
  - spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb
3145
3190
  - spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb
@@ -3148,6 +3193,7 @@ test_files:
3148
3193
  - spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb
3149
3194
  - spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb
3150
3195
  - spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb
3196
+ - spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb
3151
3197
  - spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb
3152
3198
  - spec/views/hyrax/admin/features/index.html.erb_spec.rb
3153
3199
  - spec/views/hyrax/admin/stats/show.html.erb_spec.rb
@@ -3160,6 +3206,7 @@ test_files:
3160
3206
  - spec/views/hyrax/base/_find_work_widget.html.erb_spec.rb
3161
3207
  - spec/views/hyrax/base/_form.html.erb_spec.rb
3162
3208
  - spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb
3209
+ - spec/views/hyrax/base/_form_metadata.html.erb_spec.rb
3163
3210
  - spec/views/hyrax/base/_form_progress.html.erb_spec.rb
3164
3211
  - spec/views/hyrax/base/_form_relationships.html.erb_spec.rb
3165
3212
  - spec/views/hyrax/base/_items.html.erb_spec.rb
@@ -3177,16 +3224,23 @@ test_files:
3177
3224
  - spec/views/hyrax/batch_edits/edit.html.erb_spec.rb
3178
3225
  - spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb
3179
3226
  - spec/views/hyrax/citations/work.html.erb_spec.rb
3180
- - spec/views/hyrax/collections/_form.html.erb_spec.rb
3181
- - spec/views/hyrax/collections/_form_for_select_collection.html.erb_spec.rb
3182
3227
  - spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb
3183
3228
  - spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb
3184
- - spec/views/hyrax/collections/_show_document_list_menu.html.erb_spec.rb
3185
3229
  - spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb
3186
- - spec/views/hyrax/collections/edit.html.erb_spec.rb
3187
3230
  - spec/views/hyrax/collections/show.html.erb_spec.rb
3188
- - spec/views/hyrax/dashboard/create_work_action.html.erb_spec.rb
3189
- - spec/views/hyrax/dashboard/index_spec.rb
3231
+ - spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb
3232
+ - spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb
3233
+ - spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb
3234
+ - spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb
3235
+ - spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb
3236
+ - spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb
3237
+ - spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb
3238
+ - spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb
3239
+ - spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb
3240
+ - spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb
3241
+ - spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb
3242
+ - spec/views/hyrax/dashboard/show_user_spec.rb
3243
+ - spec/views/hyrax/embargoes/index.html.erb_spec.rb
3190
3244
  - spec/views/hyrax/file_sets/_permission.html.erb_spec.rb
3191
3245
  - spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb
3192
3246
  - spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb
@@ -3200,21 +3254,24 @@ test_files:
3200
3254
  - spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb
3201
3255
  - spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb
3202
3256
  - spec/views/hyrax/homepage/index.html.erb_spec.rb
3203
- - spec/views/hyrax/my/_list_collections.html.erb_spec.rb
3204
- - spec/views/hyrax/my/_list_works.html.erb_spec.rb
3205
- - spec/views/hyrax/my/_sort_and_per_page.html.erb_spec.rb
3257
+ - spec/views/hyrax/leases/index.html.erb_spec.rb
3258
+ - spec/views/hyrax/my/_search_header.html.erb_spec.rb
3206
3259
  - spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb
3260
+ - spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb
3207
3261
  - spec/views/hyrax/my/facet.html.erb_spec.rb
3262
+ - spec/views/hyrax/my/works/_list_works.html.erb_spec.rb
3263
+ - spec/views/hyrax/my/works/index.html.erb_spec.rb
3208
3264
  - spec/views/hyrax/permissions/confirm.html.erb_spec.rb
3209
3265
  - spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb
3210
3266
  - spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb
3211
3267
  - spec/views/hyrax/stats/file.html.erb_spec.rb
3212
3268
  - spec/views/hyrax/uploads/create.json.jbuilder_spec.rb
3213
3269
  - spec/views/hyrax/users/_user_info.html.erb_spec.rb
3214
- - spec/views/hyrax/users/edit.html.erb_spec.rb
3215
3270
  - spec/views/hyrax/users/index.html.erb_spec.rb
3216
3271
  - spec/views/hyrax/users/show.html.erb_spec.rb
3217
3272
  - spec/views/layouts/error.html.erb_spec.rb
3273
+ - spec/views/pages/edit.html.erb_spec.rb
3274
+ - spec/views/pages/show.html.erb_spec.rb
3218
3275
  - spec/views/records/edit_fields/_based_near.html.erb_spec.rb
3219
3276
  - spec/views/records/edit_fields/_description.html.erb_spec.rb
3220
3277
  - spec/views/records/edit_fields/_language.html.erb_spec.rb