hyrax 2.0.3 → 2.1.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (703) hide show
  1. checksums.yaml +4 -4
  2. data/.eslintrc +0 -1
  3. data/.github/CONTRIBUTING.md +1 -1
  4. data/.rubocop.yml +8 -4
  5. data/.rubocop_fixme.yml +20 -2
  6. data/.travis.yml +3 -3
  7. data/README.md +12 -4
  8. data/app/actors/hyrax/actors/abstract_actor.rb +1 -1
  9. data/app/actors/hyrax/actors/apply_permission_template_actor.rb +17 -1
  10. data/app/actors/hyrax/actors/attach_members_actor.rb +2 -2
  11. data/app/actors/hyrax/actors/collections_membership_actor.rb +147 -12
  12. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +15 -9
  13. data/app/actors/hyrax/actors/default_admin_set_actor.rb +3 -3
  14. data/app/actors/hyrax/actors/file_set_actor.rb +10 -6
  15. data/app/actors/hyrax/actors/interpret_visibility_actor.rb +1 -1
  16. data/app/assets/javascripts/hyrax.js +13 -7
  17. data/app/assets/javascripts/hyrax/admin/admin_set_controls.es6 +5 -3
  18. data/app/assets/javascripts/hyrax/admin/collection_type/participants.es6 +13 -0
  19. data/app/assets/javascripts/hyrax/admin/collection_type/settings.es6 +60 -0
  20. data/app/assets/javascripts/hyrax/admin/collection_type_controls.es6 +15 -0
  21. data/app/assets/javascripts/hyrax/app.js.erb +29 -7
  22. data/app/assets/javascripts/hyrax/autocomplete.es6 +10 -5
  23. data/app/assets/javascripts/hyrax/autocomplete/default.es6 +1 -1
  24. data/app/assets/javascripts/hyrax/autocomplete/linked_data.es6 +1 -1
  25. data/app/assets/javascripts/hyrax/autocomplete/{work.es6 → resource.es6} +10 -4
  26. data/app/assets/javascripts/hyrax/collection_types.es6 +65 -0
  27. data/app/assets/javascripts/hyrax/collections.js +168 -3
  28. data/app/assets/javascripts/hyrax/collections/editor.es6 +7 -1
  29. data/app/assets/javascripts/hyrax/collections_forms.js +108 -0
  30. data/app/assets/javascripts/hyrax/editor.es6 +17 -3
  31. data/app/assets/javascripts/hyrax/fileupload.js +1 -0
  32. data/app/assets/javascripts/hyrax/relationships.js +2 -1
  33. data/app/assets/javascripts/hyrax/relationships/confirm_remove_dialog.es6 +45 -0
  34. data/app/assets/javascripts/hyrax/relationships/control.es6 +25 -10
  35. data/app/assets/javascripts/hyrax/relationships/registry.es6 +28 -25
  36. data/app/assets/javascripts/hyrax/relationships/registry_entry.es6 +40 -33
  37. data/app/assets/javascripts/hyrax/relationships/resource.es6 +10 -0
  38. data/app/assets/javascripts/hyrax/select_collection_type.es6 +39 -0
  39. data/app/assets/javascripts/hyrax/{per_page.es6 → sort_and_per_page.es6} +1 -1
  40. data/app/assets/javascripts/hyrax/tabbed_form.es6 +35 -0
  41. data/app/assets/stylesheets/_bootstrap-default-overrides.scss +15 -0
  42. data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +6 -0
  43. data/app/assets/stylesheets/hyrax/_accessibility.scss +16 -0
  44. data/app/assets/stylesheets/hyrax/_catalog.scss +88 -1
  45. data/app/assets/stylesheets/hyrax/_collection_types.scss +53 -0
  46. data/app/assets/stylesheets/hyrax/_collections.scss +616 -22
  47. data/app/assets/stylesheets/hyrax/_featured.scss +16 -0
  48. data/app/assets/stylesheets/hyrax/_file-listing.scss +9 -2
  49. data/app/assets/stylesheets/hyrax/_forms.scss +46 -0
  50. data/app/assets/stylesheets/hyrax/_home-page.scss +10 -0
  51. data/app/assets/stylesheets/hyrax/_hyrax.scss +3 -2
  52. data/app/assets/stylesheets/hyrax/_positioning.scss +0 -11
  53. data/app/assets/stylesheets/hyrax/_recent.scss +26 -0
  54. data/app/assets/stylesheets/hyrax/_representative-media.scss +7 -0
  55. data/app/assets/stylesheets/hyrax/_select_collection_type.scss +45 -0
  56. data/app/assets/stylesheets/hyrax/_select_work_type.scss +0 -4
  57. data/app/assets/stylesheets/hyrax/_styles.scss +2 -17
  58. data/app/assets/stylesheets/hyrax/_variables.scss +2 -2
  59. data/app/assets/stylesheets/hyrax/_viewer.scss +8 -0
  60. data/app/assets/stylesheets/hyrax/_work-show.scss +44 -6
  61. data/app/assets/stylesheets/hyrax/dashboard.scss +7 -2
  62. data/app/authorities/qa/authorities/collections.rb +30 -0
  63. data/app/builders/hyrax/manifest_helper.rb +36 -0
  64. data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +1 -1
  65. data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +1 -1
  66. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +37 -40
  67. data/app/controllers/concerns/hyrax/controller.rb +0 -9
  68. data/app/controllers/concerns/hyrax/themed_layout_controller.rb +4 -1
  69. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +22 -11
  70. data/app/controllers/hyrax/admin/admin_sets_controller.rb +24 -15
  71. data/app/controllers/hyrax/admin/appearances_controller.rb +1 -1
  72. data/app/controllers/hyrax/admin/collection_type_participants_controller.rb +44 -0
  73. data/app/controllers/hyrax/admin/collection_types_controller.rb +97 -0
  74. data/app/controllers/hyrax/admin/features_controller.rb +1 -1
  75. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +55 -13
  76. data/app/controllers/hyrax/admin/permission_templates_controller.rb +66 -23
  77. data/app/controllers/hyrax/admin/workflow_roles_controller.rb +1 -1
  78. data/app/controllers/hyrax/admin/workflows_controller.rb +1 -1
  79. data/app/controllers/hyrax/batch_edits_controller.rb +1 -1
  80. data/app/controllers/hyrax/batch_uploads_controller.rb +1 -1
  81. data/app/controllers/hyrax/citations_controller.rb +3 -12
  82. data/app/controllers/hyrax/collections_controller.rb +8 -9
  83. data/app/controllers/hyrax/content_blocks_controller.rb +1 -1
  84. data/app/controllers/hyrax/dashboard/collection_members_controller.rb +73 -0
  85. data/app/controllers/hyrax/dashboard/collections_controller.rb +210 -54
  86. data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +106 -0
  87. data/app/controllers/hyrax/dashboard/profiles_controller.rb +1 -1
  88. data/app/controllers/hyrax/dashboard/works_controller.rb +1 -9
  89. data/app/controllers/hyrax/dashboard_controller.rb +1 -1
  90. data/app/controllers/hyrax/file_sets_controller.rb +7 -75
  91. data/app/controllers/hyrax/my/collections_controller.rb +26 -1
  92. data/app/controllers/hyrax/my/works_controller.rb +16 -1
  93. data/app/controllers/hyrax/my_controller.rb +5 -19
  94. data/app/controllers/hyrax/notifications_controller.rb +1 -1
  95. data/app/controllers/hyrax/pages_controller.rb +3 -2
  96. data/app/controllers/hyrax/stats_controller.rb +3 -0
  97. data/app/controllers/hyrax/transfers_controller.rb +1 -1
  98. data/app/forms/hyrax/forms/admin/appearance.rb +2 -2
  99. data/app/forms/hyrax/forms/admin/collection_type_form.rb +24 -0
  100. data/app/forms/hyrax/forms/admin/collection_type_participant_form.rb +16 -0
  101. data/app/forms/hyrax/forms/admin_set_form.rb +1 -1
  102. data/app/forms/hyrax/forms/batch_edit_form.rb +28 -7
  103. data/app/forms/hyrax/forms/collection_form.rb +71 -13
  104. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +98 -0
  105. data/app/forms/hyrax/forms/permission_template_form.rb +13 -13
  106. data/app/forms/hyrax/forms/work_form.rb +58 -14
  107. data/app/helpers/hyrax/ability_helper.rb +3 -0
  108. data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +3 -10
  109. data/app/helpers/hyrax/collections_helper.rb +10 -2
  110. data/app/helpers/hyrax/dashboard_helper_behavior.rb +0 -4
  111. data/app/helpers/hyrax/hyrax_helper_behavior.rb +19 -5
  112. data/app/helpers/hyrax/trophy_helper.rb +0 -1
  113. data/app/indexers/hyrax/indexes_workflow.rb +1 -1
  114. data/app/indexers/hyrax/repository_reindexer.rb +19 -0
  115. data/app/jobs/hyrax/application_job.rb +1 -1
  116. data/app/jobs/import_export_job.rb +1 -1
  117. data/app/jobs/user_edit_profile_event_job.rb +1 -1
  118. data/app/models/admin_set.rb +5 -2
  119. data/app/models/collection_branding_info.rb +39 -0
  120. data/app/models/concerns/hyrax/ability.rb +26 -49
  121. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +40 -0
  122. data/app/models/concerns/hyrax/ability/collection_ability.rb +40 -0
  123. data/app/models/concerns/hyrax/ability/collection_type_ability.rb +16 -0
  124. data/app/models/concerns/hyrax/ability/permission_template_ability.rb +18 -0
  125. data/app/models/concerns/hyrax/ability/solr_document_ability.rb +18 -0
  126. data/app/models/concerns/hyrax/collection_behavior.rb +86 -3
  127. data/app/models/concerns/hyrax/collection_nesting.rb +41 -0
  128. data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +0 -15
  129. data/app/models/concerns/hyrax/file_set_behavior.rb +0 -1
  130. data/app/models/concerns/hyrax/has_rendering.rb +11 -0
  131. data/app/models/concerns/hyrax/human_readable_type.rb +3 -0
  132. data/app/models/concerns/hyrax/solr_document/metadata.rb +3 -0
  133. data/app/models/concerns/hyrax/solr_document_behavior.rb +8 -2
  134. data/app/models/concerns/hyrax/user.rb +11 -6
  135. data/app/models/concerns/hyrax/with_events.rb +12 -6
  136. data/app/models/concerns/hyrax/work_behavior.rb +3 -1
  137. data/app/models/hyrax/batch_create_operation.rb +1 -1
  138. data/app/models/hyrax/collection_type.rb +155 -0
  139. data/app/models/hyrax/collection_type_participant.rb +39 -0
  140. data/app/models/hyrax/operation.rb +14 -2
  141. data/app/models/hyrax/permission_template.rb +23 -1
  142. data/app/models/hyrax/permission_template_access.rb +56 -7
  143. data/app/models/hyrax/uploaded_file.rb +4 -1
  144. data/app/models/sipity/workflow.rb +6 -4
  145. data/app/presenters/hyrax/admin/workflow_role_presenter.rb +3 -3
  146. data/app/presenters/hyrax/admin_set_options_presenter.rb +1 -1
  147. data/app/presenters/hyrax/admin_set_presenter.rb +16 -0
  148. data/app/presenters/hyrax/collection_options_presenter.rb +1 -0
  149. data/app/presenters/hyrax/collection_presenter.rb +134 -6
  150. data/app/presenters/hyrax/displays_image.rb +39 -0
  151. data/app/presenters/hyrax/file_set_presenter.rb +1 -4
  152. data/app/presenters/hyrax/fixity_status_presenter.rb +2 -2
  153. data/app/presenters/hyrax/homepage_presenter.rb +20 -0
  154. data/app/presenters/hyrax/menu_presenter.rb +2 -1
  155. data/app/presenters/hyrax/select_collection_type_list_presenter.rb +42 -0
  156. data/app/presenters/hyrax/select_collection_type_presenter.rb +11 -0
  157. data/app/presenters/hyrax/select_type_presenter.rb +13 -4
  158. data/app/presenters/hyrax/work_show_presenter.rb +52 -1
  159. data/app/renderers/hyrax/renderers/attribute_renderer.rb +1 -1
  160. data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +1 -1
  161. data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +3 -2
  162. data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +10 -1
  163. data/app/search_builders/hyrax/admin_set_search_builder.rb +9 -2
  164. data/app/search_builders/hyrax/collection_member_search_builder.rb +21 -8
  165. data/app/search_builders/hyrax/collection_search_builder.rb +37 -0
  166. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +42 -0
  167. data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +24 -0
  168. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +123 -0
  169. data/app/search_builders/hyrax/dashboard/works_search_builder.rb +18 -0
  170. data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +5 -1
  171. data/app/search_builders/hyrax/my/collections_search_builder.rb +20 -3
  172. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +27 -0
  173. data/app/search_builders/hyrax/search_filters.rb +8 -0
  174. data/app/services/hyrax/adapters/nesting_index_adapter.rb +192 -0
  175. data/app/services/hyrax/admin_set_create_service.rb +3 -2
  176. data/app/services/hyrax/admin_set_member_service.rb +40 -0
  177. data/app/services/hyrax/batch_create_failure_service.rb +4 -3
  178. data/app/services/hyrax/collection_types/create_service.rb +143 -0
  179. data/app/services/hyrax/collection_types/permissions_service.rb +233 -0
  180. data/app/services/hyrax/collections/collection_member_service.rb +91 -0
  181. data/app/services/hyrax/collections/managed_collections_service.rb +16 -0
  182. data/app/services/hyrax/collections/migration_service.rb +81 -0
  183. data/app/services/hyrax/collections/nested_collection_persistence_service.rb +26 -0
  184. data/app/services/hyrax/collections/nested_collection_query_service.rb +187 -0
  185. data/app/services/hyrax/collections/permissions_create_service.rb +71 -0
  186. data/app/services/hyrax/collections/permissions_service.rb +234 -0
  187. data/app/services/hyrax/collections_service.rb +3 -3
  188. data/app/services/hyrax/default_middleware_stack.rb +35 -0
  189. data/app/services/hyrax/file_set_fixity_check_service.rb +1 -1
  190. data/app/services/hyrax/graph_exporter.rb +19 -15
  191. data/app/services/hyrax/iiif_authorization_service.rb +19 -0
  192. data/app/services/hyrax/multiple_membership_checker.rb +78 -0
  193. data/app/services/hyrax/noid.rb +1 -3
  194. data/app/services/hyrax/qa_select_service.rb +11 -2
  195. data/app/services/hyrax/workflow/status_list_service.rb +1 -1
  196. data/app/services/hyrax/working_directory.rb +0 -8
  197. data/app/services/hyrax/works/managed_works_service.rb +16 -0
  198. data/app/views/_flash_msg.html.erb +1 -1
  199. data/app/views/_masthead.html.erb +0 -1
  200. data/app/views/catalog/_document.html.erb +3 -1
  201. data/app/views/catalog/_document_list.html.erb +2 -2
  202. data/app/views/catalog/_index_header_list_collection.html.erb +4 -3
  203. data/app/views/catalog/_index_header_list_default.html.erb +3 -3
  204. data/app/views/catalog/_index_list_default.html.erb +29 -14
  205. data/app/views/catalog/_thumbnail_list_collection.html.erb +3 -4
  206. data/app/views/catalog/_thumbnail_list_default.html.erb +5 -3
  207. data/app/views/hyrax/admin/admin_sets/_form.html.erb +2 -1
  208. data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +1 -1
  209. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +1 -1
  210. data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +3 -3
  211. data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
  212. data/app/views/hyrax/admin/collection_types/_form.html.erb +61 -0
  213. data/app/views/hyrax/admin/collection_types/_form_metadata.html.erb +2 -0
  214. data/app/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb +2 -0
  215. data/app/views/hyrax/admin/collection_types/_form_participant_table.html.erb +26 -0
  216. data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +62 -0
  217. data/app/views/hyrax/admin/collection_types/_form_settings.html.erb +39 -0
  218. data/app/views/hyrax/admin/collection_types/edit.html.erb +10 -0
  219. data/app/views/hyrax/admin/collection_types/index.html.erb +88 -0
  220. data/app/views/hyrax/admin/collection_types/new.html.erb +10 -0
  221. data/app/views/hyrax/base/_attribute_rows.html.erb +1 -0
  222. data/app/views/hyrax/base/_citations.html.erb +10 -6
  223. data/app/views/hyrax/base/_form_child_work_relationships.html.erb +22 -29
  224. data/app/views/hyrax/base/_form_files.html.erb +29 -16
  225. data/app/views/hyrax/base/_form_media.html.erb +1 -0
  226. data/app/views/hyrax/base/_form_member_of_collections.html.erb +44 -6
  227. data/app/views/hyrax/base/_form_metadata.html.erb +0 -3
  228. data/app/views/hyrax/base/_form_progress.html.erb +2 -1
  229. data/app/views/hyrax/base/_form_relationships.html.erb +3 -2
  230. data/app/views/hyrax/base/_form_rendering.html.erb +14 -0
  231. data/app/views/hyrax/base/_form_representative.html.erb +2 -2
  232. data/app/views/hyrax/base/_form_share.html.erb +44 -41
  233. data/app/views/hyrax/base/_form_thumbnail.html.erb +2 -2
  234. data/app/views/hyrax/base/_guts4form.html.erb +2 -2
  235. data/app/views/hyrax/base/_member.html.erb +3 -4
  236. data/app/views/hyrax/base/_metadata.html.erb +1 -5
  237. data/app/views/hyrax/base/_relationships.html.erb +1 -1
  238. data/app/views/hyrax/base/_relationships_parent_row.html.erb +1 -1
  239. data/app/views/hyrax/base/_representative_media.html.erb +8 -2
  240. data/app/views/hyrax/base/_work_title.erb +14 -7
  241. data/app/views/hyrax/base/_work_type.html.erb +4 -0
  242. data/app/views/hyrax/base/_workflow_actions.html.erb +7 -7
  243. data/app/views/hyrax/base/_workflow_actions_widget.erb +4 -2
  244. data/app/views/hyrax/base/show.html.erb +35 -26
  245. data/app/views/hyrax/batch_edits/edit.html.erb +1 -1
  246. data/app/views/hyrax/collections/_collection_description.erb +1 -1
  247. data/app/views/hyrax/collections/_default_group.html.erb +9 -11
  248. data/app/views/hyrax/collections/_list_collections.html.erb +19 -12
  249. data/app/views/hyrax/collections/_paginate.html.erb +5 -4
  250. data/app/views/hyrax/collections/_search_form.html.erb +1 -1
  251. data/app/views/hyrax/collections/_search_results.html.erb +0 -2
  252. data/app/views/hyrax/collections/_show_descriptions.html.erb +7 -6
  253. data/app/views/hyrax/collections/_show_document_list.html.erb +3 -3
  254. data/app/views/hyrax/collections/_show_document_list_row.html.erb +3 -3
  255. data/app/views/hyrax/collections/_show_parent_collections.html.erb +41 -0
  256. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +16 -24
  257. data/app/views/hyrax/collections/_subcollection_list.html.erb +13 -0
  258. data/app/views/hyrax/collections/_view_type_group.html.erb +1 -1
  259. data/app/views/hyrax/collections/show.html.erb +120 -31
  260. data/app/views/hyrax/dashboard/collections/_button_for_batch_delete_collection.html.erb +4 -0
  261. data/app/views/hyrax/dashboard/collections/_button_for_remove_selected_from_collection.html.erb +0 -1
  262. data/app/views/hyrax/dashboard/collections/_button_for_update_collection.html.erb +1 -1
  263. data/app/views/hyrax/dashboard/collections/_button_remove_from_collection.html.erb +1 -1
  264. data/app/views/hyrax/dashboard/collections/_collection_title.html.erb +25 -0
  265. data/app/views/hyrax/dashboard/collections/_document_list.html.erb +1 -5
  266. data/app/views/hyrax/dashboard/collections/_edit_actions.html.erb +2 -2
  267. data/app/views/hyrax/dashboard/collections/_flash_msg.html.erb +9 -0
  268. data/app/views/hyrax/dashboard/collections/_form.html.erb +46 -24
  269. data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +153 -0
  270. data/app/views/hyrax/dashboard/collections/_form_default_group_delt.html.erb +27 -0
  271. data/app/views/hyrax/dashboard/collections/_form_discovery.html.erb +18 -0
  272. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +69 -81
  273. data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +31 -0
  274. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +54 -37
  275. data/app/views/hyrax/dashboard/collections/_modal_remove_from_collection.html.erb +17 -0
  276. data/app/views/hyrax/dashboard/collections/_modal_remove_sub_collection.html.erb +17 -0
  277. data/app/views/hyrax/dashboard/collections/_show_actions.html.erb +27 -21
  278. data/app/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb +25 -0
  279. data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +4 -3
  280. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +6 -5
  281. data/app/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb +6 -0
  282. data/app/views/hyrax/dashboard/collections/_show_parent_collections.html.erb +37 -0
  283. data/app/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb +26 -0
  284. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +28 -27
  285. data/app/views/hyrax/dashboard/collections/_subcollection_list.html.erb +21 -0
  286. data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +1 -1
  287. data/app/views/hyrax/dashboard/collections/edit.html.erb +8 -31
  288. data/app/views/hyrax/dashboard/collections/new.html.erb +2 -3
  289. data/app/views/hyrax/dashboard/collections/show.html.erb +102 -35
  290. data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +5 -0
  291. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +0 -5
  292. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +10 -0
  293. data/app/views/hyrax/dashboard/works/_default_group.html.erb +1 -0
  294. data/app/views/hyrax/dashboard/works/_list_works.html.erb +4 -0
  295. data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +1 -1
  296. data/app/views/hyrax/file_sets/_form.html.erb +2 -2
  297. data/app/views/hyrax/file_sets/_show_characterization_details.html.erb +1 -1
  298. data/app/views/hyrax/file_sets/media_display/_image.html.erb +3 -5
  299. data/app/views/hyrax/file_sets/media_display/_office_document.html.erb +3 -5
  300. data/app/views/hyrax/file_sets/media_display/_pdf.html.erb +3 -5
  301. data/app/views/hyrax/homepage/_featured.html.erb +5 -5
  302. data/app/views/hyrax/homepage/_featured_fields.html.erb +10 -14
  303. data/app/views/hyrax/homepage/_featured_works.html.erb +1 -1
  304. data/app/views/hyrax/homepage/_home_content.html.erb +2 -2
  305. data/app/views/hyrax/homepage/_recent_document.html.erb +14 -12
  306. data/app/views/hyrax/homepage/_recently_uploaded.html.erb +2 -6
  307. data/app/views/hyrax/homepage/index.html.erb +4 -2
  308. data/app/views/hyrax/my/_admin_set_action_menu.html.erb +54 -0
  309. data/app/views/hyrax/my/_collection_action_menu.html.erb +41 -9
  310. data/app/views/hyrax/my/_facet_pivot.html.erb +26 -0
  311. data/app/views/hyrax/my/_search_header.html.erb +1 -15
  312. data/app/views/hyrax/my/_sort_and_per_page.html.erb +12 -13
  313. data/app/views/hyrax/my/_work_action_menu.html.erb +17 -15
  314. data/app/views/hyrax/my/collections/_batch_actions.html.erb +5 -0
  315. data/app/views/hyrax/my/collections/_default_group.html.erb +21 -12
  316. data/app/views/hyrax/my/collections/_list_collections.html.erb +57 -35
  317. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +38 -0
  318. data/app/views/hyrax/my/collections/_modal_add_to_collection.html.erb +31 -0
  319. data/app/views/hyrax/my/collections/_modal_add_to_collection_deny.html.erb +12 -0
  320. data/app/views/hyrax/my/collections/_modal_add_to_collection_permission_deny.html.erb +12 -0
  321. data/app/views/hyrax/my/collections/_modal_collection_types_to_create.html.erb +36 -0
  322. data/app/views/hyrax/my/collections/_modal_delete_admin_set_deny.html.erb +12 -0
  323. data/app/views/hyrax/my/collections/_modal_delete_collection.html.erb +19 -0
  324. data/app/views/hyrax/my/collections/_modal_delete_collection_deny.html.erb +14 -0
  325. data/app/views/hyrax/my/collections/_modal_delete_deny.html.erb +14 -0
  326. data/app/views/hyrax/my/collections/_modal_delete_empty_collection.html.erb +18 -0
  327. data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +17 -0
  328. data/app/views/hyrax/my/collections/_modal_edit_deny.html.erb +14 -0
  329. data/app/views/hyrax/my/collections/_tabs.html.erb +3 -3
  330. data/app/views/hyrax/my/collections/index.html.erb +46 -21
  331. data/app/views/hyrax/my/works/_batch_actions.html.erb +14 -0
  332. data/app/views/hyrax/my/works/_default_group.html.erb +10 -12
  333. data/app/views/hyrax/my/works/_tabs.html.erb +1 -1
  334. data/app/views/hyrax/my/works/index.html.erb +7 -5
  335. data/app/views/hyrax/notifications/_notifications.html.erb +3 -3
  336. data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
  337. data/app/views/hyrax/stats/file.html.erb +1 -1
  338. data/app/views/hyrax/stats/work.html.erb +1 -1
  339. data/app/views/hyrax/transfers/_received.html.erb +1 -1
  340. data/app/views/hyrax/transfers/_sent.html.erb +1 -1
  341. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +120 -0
  342. data/app/views/hyrax/users/_activity_log.html.erb +3 -3
  343. data/app/views/kaminari/blacklight_compact/_paginator.html.erb +23 -0
  344. data/app/views/layouts/hyrax.html.erb +9 -11
  345. data/app/views/layouts/{dashboard.html.erb → hyrax/dashboard.html.erb} +0 -0
  346. data/app/views/shared/_select_work_type_modal.html.erb +25 -26
  347. data/config/features.rb +4 -0
  348. data/config/initializers/hyrax_callbacks.rb +2 -2
  349. data/config/initializers/samvera-nesting_indexer_initializer.rb +15 -0
  350. data/config/locales/hyrax.de.yml +364 -79
  351. data/config/locales/hyrax.en.yml +874 -584
  352. data/config/locales/hyrax.es.yml +323 -35
  353. data/config/locales/hyrax.fr.yml +323 -39
  354. data/config/locales/hyrax.it.yml +322 -39
  355. data/config/locales/hyrax.pt-BR.yml +317 -39
  356. data/config/locales/hyrax.zh.yml +420 -142
  357. data/config/routes.rb +17 -0
  358. data/hyrax.gemspec +58 -57
  359. data/lib/generators/hyrax/assets_generator.rb +2 -4
  360. data/lib/generators/hyrax/clamav_generator.rb +0 -2
  361. data/lib/generators/hyrax/config_generator.rb +0 -2
  362. data/lib/generators/hyrax/install_generator.rb +12 -3
  363. data/lib/generators/hyrax/riiif_generator.rb +54 -0
  364. data/lib/generators/hyrax/templates/app/assets/images/us_404.svg +91 -0
  365. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +48 -3
  366. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +26 -0
  367. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +4 -4
  368. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +0 -4
  369. data/lib/generators/hyrax/templates/db/migrate/20170808160431_create_collection_types.rb.erb +17 -0
  370. data/lib/generators/hyrax/templates/db/migrate/20170808160432_update_collection_type_column_names.rb.erb +9 -0
  371. data/lib/generators/hyrax/templates/db/migrate/20170810190549_update_collection_type_column_options.rb.erb +9 -0
  372. data/lib/generators/hyrax/templates/db/migrate/20170816180307_create_collection_branding_infos.rb.erb +15 -0
  373. data/lib/generators/hyrax/templates/db/migrate/20170817152654_create_collection_type_participants.rb.erb +11 -0
  374. data/lib/generators/hyrax/templates/db/migrate/20170821152307_rename_admin_set_id_to_source_id.rb.erb +5 -0
  375. data/lib/generators/hyrax/templates/db/migrate/20171103080032_add_collection_type_sharing_options.rb.erb +5 -0
  376. data/lib/generators/hyrax/templates/db/seeds.rb +226 -22
  377. data/lib/generators/hyrax/work/templates/controller.rb.erb +1 -1
  378. data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +37 -1
  379. data/lib/generators/hyrax/work/templates/form.rb.erb +1 -0
  380. data/lib/generators/hyrax/work/templates/indexer.rb.erb +0 -1
  381. data/lib/generators/hyrax/work/templates/locale.de.yml.erb +1 -1
  382. data/lib/generators/hyrax/work/templates/locale.en.yml.erb +1 -1
  383. data/lib/generators/hyrax/work/templates/locale.es.yml.erb +1 -1
  384. data/lib/generators/hyrax/work/templates/locale.fr.yml.erb +1 -1
  385. data/lib/generators/hyrax/work/templates/locale.it.yml.erb +1 -1
  386. data/lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb +1 -1
  387. data/lib/generators/hyrax/work/templates/locale.zh.yml.erb +1 -1
  388. data/lib/generators/hyrax/work/templates/model.rb.erb +0 -2
  389. data/lib/hyrax.rb +1 -1
  390. data/lib/hyrax/configuration.rb +96 -7
  391. data/lib/hyrax/engine.rb +5 -4
  392. data/lib/hyrax/rails/routes.rb +1 -1
  393. data/lib/hyrax/version.rb +1 -1
  394. data/lib/tasks/default_admin_set.rake +5 -3
  395. data/lib/tasks/default_collection_type.rake +19 -0
  396. data/lib/tasks/migrate.rake +8 -0
  397. data/spec/abilities/ability_spec.rb +4 -1
  398. data/spec/abilities/admin_set_ability_spec.rb +172 -0
  399. data/spec/abilities/collection_ability_spec.rb +194 -0
  400. data/spec/abilities/collection_type_ability_spec.rb +72 -0
  401. data/spec/abilities/file_set_abilities_spec.rb +3 -3
  402. data/spec/abilities/generic_work_abilities_spec.rb +5 -5
  403. data/spec/abilities/permission_template_ability_spec.rb +145 -0
  404. data/spec/abilities/solr_document_ability_spec.rb +27 -0
  405. data/spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb +96 -28
  406. data/spec/actors/hyrax/actors/collections_membership_actor_spec.rb +283 -15
  407. data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +7 -7
  408. data/spec/actors/hyrax/actors/default_admin_set_actor_spec.rb +1 -1
  409. data/spec/actors/hyrax/actors/file_actor_spec.rb +0 -1
  410. data/spec/actors/hyrax/actors/file_set_actor_spec.rb +8 -6
  411. data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +11 -39
  412. data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +15 -15
  413. data/spec/actors/hyrax/actors/model_actor_spec.rb +0 -2
  414. data/spec/authorities/qa/authorities/collections_spec.rb +68 -0
  415. data/spec/channels/hyrax/application_cable/channel_spec.rb +1 -1
  416. data/spec/channels/hyrax/application_cable/connection_spec.rb +1 -1
  417. data/spec/channels/hyrax/notifications_channel_spec.rb +1 -1
  418. data/spec/controllers/catalog_controller_spec.rb +1 -1
  419. data/spec/controllers/hyrax/admin/admin_sets_controller_spec.rb +27 -1
  420. data/spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb +152 -0
  421. data/spec/controllers/hyrax/admin/collection_types_controller_spec.rb +320 -0
  422. data/spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb +68 -29
  423. data/spec/controllers/hyrax/admin/permission_templates_controller_spec.rb +37 -10
  424. data/spec/controllers/hyrax/admin/strategies_controller_spec.rb +2 -13
  425. data/spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb +52 -2
  426. data/spec/controllers/hyrax/batch_edits_controller_spec.rb +75 -4
  427. data/spec/controllers/hyrax/batch_uploads_controller_spec.rb +2 -2
  428. data/spec/controllers/hyrax/collections_controller_spec.rb +15 -6
  429. data/spec/controllers/hyrax/content_blocks_controller_spec.rb +5 -5
  430. data/spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb +408 -0
  431. data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +114 -18
  432. data/spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb +360 -0
  433. data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +2 -2
  434. data/spec/controllers/hyrax/dashboard/works_controller_spec.rb +1 -1
  435. data/spec/controllers/hyrax/downloads_controller_spec.rb +3 -3
  436. data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +2 -2
  437. data/spec/controllers/hyrax/file_sets_controller_spec.rb +8 -136
  438. data/spec/controllers/hyrax/fixity_checks_controller_spec.rb +1 -1
  439. data/spec/controllers/hyrax/generic_works_controller_spec.rb +64 -2
  440. data/spec/controllers/hyrax/homepage_controller_spec.rb +1 -1
  441. data/spec/controllers/hyrax/my/works_controller_spec.rb +4 -1
  442. data/spec/controllers/hyrax/pages_controller_spec.rb +11 -11
  443. data/spec/controllers/hyrax/users_controller_spec.rb +1 -1
  444. data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +1 -1
  445. data/spec/conversions/power_converters/polymorphic_type_spec.rb +2 -2
  446. data/spec/conversions/power_converters/sipity_agent_spec.rb +1 -1
  447. data/spec/conversions/power_converters/sipity_role_spec.rb +1 -1
  448. data/spec/conversions/power_converters/sipity_workflow_state_spec.rb +1 -1
  449. data/spec/factories/admin_sets.rb +3 -3
  450. data/spec/factories/collection_branding_infos.rb +11 -0
  451. data/spec/factories/collection_type_participants.rb +8 -0
  452. data/spec/factories/collection_types.rb +104 -0
  453. data/spec/factories/collections.rb +323 -0
  454. data/spec/factories/collections_factory.rb +106 -3
  455. data/spec/factories/file_sets.rb +2 -2
  456. data/spec/factories/generic_works.rb +22 -14
  457. data/spec/factories/object_id.rb +6 -0
  458. data/spec/factories/permission_templates.rb +46 -8
  459. data/spec/factories/users.rb +1 -1
  460. data/spec/factory_tests/collections_factory_spec.rb +211 -0
  461. data/spec/features/admin_spec.rb +1 -1
  462. data/spec/features/batch_create_spec.rb +1 -1
  463. data/spec/features/batch_edit_spec.rb +0 -1
  464. data/spec/features/browse_catalog_spec.rb +1 -3
  465. data/spec/features/browse_dashboard_works_spec.rb +0 -1
  466. data/spec/features/collection_multi_membership_spec.rb +188 -0
  467. data/spec/features/collection_spec.rb +45 -7
  468. data/spec/features/collection_type_spec.rb +338 -0
  469. data/spec/features/create_child_work_spec.rb +1 -1
  470. data/spec/features/create_work_admin_spec.rb +44 -0
  471. data/spec/features/create_work_spec.rb +1 -1
  472. data/spec/features/dashboard/all_works.rb +1 -1
  473. data/spec/features/dashboard/collection_spec.rb +724 -115
  474. data/spec/features/delete_work_spec.rb +1 -1
  475. data/spec/features/edit_file_spec.rb +1 -1
  476. data/spec/features/edit_work_spec.rb +1 -1
  477. data/spec/features/embargo_spec.rb +1 -1
  478. data/spec/features/homepage_spec.rb +3 -3
  479. data/spec/features/lease_spec.rb +1 -1
  480. data/spec/features/notifications_spec.rb +2 -2
  481. data/spec/features/ownership_transfer_spec.rb +1 -2
  482. data/spec/features/proxy_spec.rb +1 -1
  483. data/spec/features/search_spec.rb +12 -11
  484. data/spec/features/static_pages_spec.rb +1 -1
  485. data/spec/features/users_spec.rb +1 -1
  486. data/spec/features/work_generator_spec.rb +1 -1
  487. data/spec/features/work_show_spec.rb +4 -4
  488. data/spec/features/workflow_roles_spec.rb +1 -1
  489. data/spec/features/workflow_state_changes_spec.rb +2 -2
  490. data/spec/forms/hyrax/forms/admin/collection_type_form_spec.rb +106 -0
  491. data/spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb +10 -0
  492. data/spec/forms/hyrax/forms/admin_set_form_spec.rb +1 -1
  493. data/spec/forms/hyrax/forms/batch_edit_form_spec.rb +1 -1
  494. data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +1 -0
  495. data/spec/forms/hyrax/forms/collection_form_spec.rb +52 -4
  496. data/spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb +159 -0
  497. data/spec/forms/hyrax/forms/permission_template_form_spec.rb +15 -12
  498. data/spec/forms/hyrax/forms/work_form_spec.rb +61 -12
  499. data/spec/forms/hyrax/forms/workflow_action_form_spec.rb +1 -1
  500. data/spec/forms/hyrax/generic_work_form_spec.rb +6 -3
  501. data/spec/helpers/hyrax/ability_helper_spec.rb +11 -0
  502. data/spec/helpers/hyrax/collections_helper_spec.rb +17 -39
  503. data/spec/helpers/hyrax/content_block_helper_spec.rb +1 -1
  504. data/spec/helpers/{dashboard_helper_spec.rb → hyrax/dashboard_helper_behavior_spec.rb} +1 -12
  505. data/spec/helpers/hyrax/trophy_helper_spec.rb +1 -1
  506. data/spec/helpers/hyrax_helper_spec.rb +0 -3
  507. data/spec/indexers/hyrax/generic_work_indexer_spec.rb +4 -4
  508. data/spec/indexers/hyrax/repository_reindexer_spec.rb +8 -0
  509. data/spec/javascripts/relationships_control_spec.js.coffee +3 -3
  510. data/spec/javascripts/settings_spec.js +73 -0
  511. data/spec/jobs/user_edit_profile_event_job_spec.rb +1 -1
  512. data/spec/lib/hyrax/configuration_spec.rb +16 -0
  513. data/spec/models/admin_set_spec.rb +42 -4
  514. data/spec/models/collection_branding_info_spec.rb +61 -0
  515. data/spec/models/collection_spec.rb +228 -3
  516. data/spec/models/concerns/hyrax/collection_nesting_spec.rb +64 -0
  517. data/spec/models/file_set_spec.rb +4 -4
  518. data/spec/models/generic_work_spec.rb +1 -1
  519. data/spec/models/hyrax/batch_create_operation_spec.rb +59 -0
  520. data/spec/models/hyrax/collection_type_participant_spec.rb +43 -0
  521. data/spec/models/hyrax/collection_type_spec.rb +235 -0
  522. data/spec/models/hyrax/operation_spec.rb +27 -1
  523. data/spec/models/hyrax/permission_template_access_spec.rb +128 -5
  524. data/spec/models/hyrax/permission_template_spec.rb +85 -29
  525. data/spec/models/hyrax/user_usage_stats_spec.rb +1 -1
  526. data/spec/models/hyrax/work_behavior_spec.rb +12 -2
  527. data/spec/models/sipity/agent_spec.rb +1 -1
  528. data/spec/models/sipity/comment_spec.rb +1 -1
  529. data/spec/models/sipity/entity_spec.rb +3 -3
  530. data/spec/models/sipity/entity_specific_responsibility_spec.rb +1 -1
  531. data/spec/models/sipity/notifiable_context_spec.rb +1 -1
  532. data/spec/models/sipity/notification_recipient_spec.rb +1 -1
  533. data/spec/models/sipity/notification_spec.rb +1 -1
  534. data/spec/models/sipity/role_spec.rb +1 -1
  535. data/spec/models/sipity/workflow_action_spec.rb +1 -1
  536. data/spec/models/sipity/workflow_responsibility_spec.rb +1 -1
  537. data/spec/models/sipity/workflow_role_spec.rb +1 -1
  538. data/spec/models/sipity/workflow_spec.rb +7 -7
  539. data/spec/models/sipity/workflow_state_action_permission_spec.rb +1 -1
  540. data/spec/models/sipity/workflow_state_action_spec.rb +1 -1
  541. data/spec/models/sipity/workflow_state_spec.rb +1 -1
  542. data/spec/models/solr_document_spec.rb +24 -0
  543. data/spec/models/user_mailbox_spec.rb +0 -2
  544. data/spec/models/user_spec.rb +7 -7
  545. data/spec/presenters/hyrax/admin/users_presenter_spec.rb +2 -2
  546. data/spec/presenters/hyrax/admin_set_options_presenter_spec.rb +7 -7
  547. data/spec/presenters/hyrax/admin_set_presenter_spec.rb +20 -0
  548. data/spec/presenters/hyrax/collection_options_presenter_spec.rb +2 -0
  549. data/spec/presenters/hyrax/collection_presenter_spec.rb +375 -6
  550. data/spec/presenters/hyrax/file_set_presenter_spec.rb +124 -5
  551. data/spec/presenters/hyrax/inspect_work_presenter_spec.rb +1 -1
  552. data/spec/presenters/hyrax/menu_presenter_spec.rb +5 -0
  553. data/spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb +59 -0
  554. data/spec/presenters/hyrax/select_collection_type_presenter_spec.rb +10 -0
  555. data/spec/presenters/hyrax/select_type_presenter_spec.rb +12 -0
  556. data/spec/presenters/hyrax/work_show_presenter_spec.rb +116 -1
  557. data/spec/presenters/hyrax/workflow_presenter_spec.rb +1 -1
  558. data/spec/renderers/hyrax/renderers/attribute_renderer_spec.rb +6 -6
  559. data/spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb +2 -2
  560. data/spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb +1 -1
  561. data/spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb +2 -2
  562. data/spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb +2 -2
  563. data/spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb +2 -2
  564. data/spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb +10 -1
  565. data/spec/requests/riiif_spec.rb +32 -0
  566. data/spec/routing/collection_permission_templates_routes_spec.rb +31 -0
  567. data/spec/routing/collection_types_routes.rb +35 -0
  568. data/spec/routing/dashboard_routes_spec.rb +37 -0
  569. data/spec/routing/route_spec.rb +4 -10
  570. data/spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb +2 -2
  571. data/spec/search_builders/hyrax/admin_set_search_builder_spec.rb +4 -40
  572. data/spec/search_builders/hyrax/collection_member_search_builder_spec.rb +53 -0
  573. data/spec/search_builders/hyrax/collection_search_builder_spec.rb +74 -0
  574. data/spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb +92 -0
  575. data/spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb +85 -0
  576. data/spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb +44 -0
  577. data/spec/search_builders/hyrax/my/collections_search_builder_spec.rb +35 -0
  578. data/spec/search_builders/hyrax/work_search_builder_spec.rb +47 -10
  579. data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +191 -0
  580. data/spec/services/hyrax/admin_set_create_service_spec.rb +6 -2
  581. data/spec/services/hyrax/admin_set_member_service_spec.rb +21 -0
  582. data/spec/services/hyrax/batch_create_failure_service_spec.rb +6 -2
  583. data/spec/services/hyrax/collection_types/create_service_spec.rb +91 -0
  584. data/spec/services/hyrax/collection_types/permissions_service_spec.rb +297 -0
  585. data/spec/services/hyrax/collections/collection_member_service_spec.rb +49 -0
  586. data/spec/services/hyrax/collections/managed_collections_service_spec.rb +17 -0
  587. data/spec/services/hyrax/collections/migration_service_spec.rb +280 -0
  588. data/spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb +28 -0
  589. data/spec/services/hyrax/collections/nested_collection_query_service_spec.rb +353 -0
  590. data/spec/services/hyrax/collections/permissions_create_service_spec.rb +41 -0
  591. data/spec/services/hyrax/collections/permissions_service_spec.rb +278 -0
  592. data/spec/services/hyrax/collections_service_spec.rb +30 -8
  593. data/spec/services/hyrax/embargo_service_spec.rb +26 -5
  594. data/spec/services/hyrax/iiif_authorization_service_spec.rb +43 -0
  595. data/spec/services/hyrax/multiple_membership_checker_spec.rb +155 -0
  596. data/spec/services/hyrax/qa_select_service_spec.rb +8 -2
  597. data/spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb +1 -1
  598. data/spec/services/hyrax/workflow/notification_generator_spec.rb +1 -1
  599. data/spec/services/hyrax/workflow/permission_generator_spec.rb +1 -1
  600. data/spec/services/hyrax/workflow/permission_query_spec.rb +2 -2
  601. data/spec/services/hyrax/workflow/status_list_service_spec.rb +1 -1
  602. data/spec/services/hyrax/workflow/workflow_factory_spec.rb +1 -1
  603. data/spec/services/hyrax/workflow/workflow_schema_spec.rb +1 -1
  604. data/spec/services/hyrax/works/managed_works_service_spec.rb +17 -0
  605. data/spec/spec_helper.rb +34 -4
  606. data/spec/support/features/session_helpers.rb +1 -1
  607. data/spec/support/matchers/collection_type_property_matchers.rb +29 -0
  608. data/spec/test_app_templates/lib/generators/test_app_generator.rb +64 -24
  609. data/spec/views/_flash_msg.html.erb_spec.rb +0 -2
  610. data/spec/views/_user_util_links.html.erb_spec.rb +0 -2
  611. data/spec/views/catalog/_index_list_default.html.erb_spec.rb +9 -9
  612. data/spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb +42 -20
  613. data/spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb +43 -0
  614. data/spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb +27 -0
  615. data/spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb +27 -0
  616. data/spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb +16 -0
  617. data/spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb +73 -0
  618. data/spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb +106 -0
  619. data/spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb +41 -0
  620. data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +1 -1
  621. data/spec/views/hyrax/base/_form.html.erb_spec.rb +18 -42
  622. data/spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb +11 -22
  623. data/spec/views/hyrax/base/_form_files.html.erb_spec.rb +38 -0
  624. data/spec/views/hyrax/base/_form_progress.html.erb_spec.rb +1 -1
  625. data/spec/views/hyrax/base/_form_relationships.html.erb_spec.rb +1 -2
  626. data/spec/views/hyrax/base/_form_rendering.html.erb_spec.rb +18 -0
  627. data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +1 -1
  628. data/spec/views/hyrax/base/show.html.erb_spec.rb +24 -5
  629. data/spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb +1 -1
  630. data/spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb +124 -0
  631. data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
  632. data/spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb +39 -0
  633. data/spec/views/hyrax/collections/show.html.erb_spec.rb +20 -23
  634. data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +14 -9
  635. data/spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb +5 -1
  636. data/spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb +23 -0
  637. data/spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb +67 -0
  638. data/spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb +13 -34
  639. data/spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb +108 -0
  640. data/spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb +64 -0
  641. data/spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb +44 -0
  642. data/spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb +1 -1
  643. data/spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb +23 -0
  644. data/spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb +118 -0
  645. data/spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb +62 -0
  646. data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
  647. data/spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb +63 -0
  648. data/spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb +18 -0
  649. data/spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb +5 -13
  650. data/spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb +86 -9
  651. data/spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb +1 -1
  652. data/spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb +1 -1
  653. data/spec/views/hyrax/homepage/index.html.erb_spec.rb +14 -5
  654. data/spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb +65 -0
  655. data/spec/views/hyrax/my/_search_header.html.erb_spec.rb +6 -6
  656. data/spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb +6 -4
  657. data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +90 -22
  658. data/spec/views/hyrax/my/works/index.html.erb_spec.rb +3 -1
  659. data/spec/views/hyrax/users/_user_info.html.erb_spec.rb +16 -18
  660. data/spec/views/pages/show.html.erb_spec.rb +1 -1
  661. data/spec/views/shared/select_work_type_modal.html.erb_spec.rb +36 -10
  662. data/tasks/hyrax_dev.rake +27 -4
  663. data/template.rb +2 -1
  664. metadata +578 -290
  665. data/.solr_wrapper +0 -6
  666. data/app/assets/javascripts/hyrax/relationships/work.es6 +0 -7
  667. data/app/assets/javascripts/hyrax/workflow_actions_affix.js +0 -14
  668. data/app/assets/stylesheets/hyrax/_work_editor.scss +0 -17
  669. data/app/controllers/concerns/hyrax/parent_container.rb +0 -35
  670. data/app/helpers/dashboard_helper.rb +0 -3
  671. data/app/services/hyrax/parent_service.rb +0 -19
  672. data/app/views/catalog/_show_partials/_default.html.erb +0 -21
  673. data/app/views/catalog/_show_partials/_default_details.html.erb +0 -15
  674. data/app/views/catalog/_show_partials/_facets.html.erb +0 -52
  675. data/app/views/hyrax/base/_browse_everything.html.erb +0 -6
  676. data/app/views/hyrax/base/_find_work_widget.html.erb +0 -10
  677. data/app/views/hyrax/dashboard/collections/_form_default_group.html.erb +0 -25
  678. data/app/views/hyrax/dashboard/collections/_form_permission.html.erb +0 -24
  679. data/app/views/hyrax/file_sets/jq_upload.json.jbuilder +0 -8
  680. data/solr/config/_rest_managed.json +0 -3
  681. data/solr/config/admin-extra.html +0 -31
  682. data/solr/config/elevate.xml +0 -36
  683. data/solr/config/mapping-ISOLatin1Accent.txt +0 -246
  684. data/solr/config/protwords.txt +0 -21
  685. data/solr/config/schema.xml +0 -366
  686. data/solr/config/scripts.conf +0 -24
  687. data/solr/config/solrconfig.xml +0 -322
  688. data/solr/config/spellings.txt +0 -2
  689. data/solr/config/stopwords.txt +0 -58
  690. data/solr/config/stopwords_en.txt +0 -58
  691. data/solr/config/synonyms.txt +0 -31
  692. data/solr/config/xslt/example.xsl +0 -132
  693. data/solr/config/xslt/example_atom.xsl +0 -67
  694. data/solr/config/xslt/example_rss.xsl +0 -66
  695. data/solr/config/xslt/luke.xsl +0 -337
  696. data/spec/abilities/admin_set_abilities_spec.rb +0 -15
  697. data/spec/abilities/collection_abilities_spec.rb +0 -51
  698. data/spec/features/admin_admin_set_spec.rb +0 -30
  699. data/spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb +0 -10
  700. data/spec/services/hyrax/parent_service_spec.rb +0 -11
  701. data/spec/support/uploaded_file_monkeypatch.rb +0 -6
  702. data/spec/views/hyrax/base/_browse_everything.html.erb_spec.rb +0 -17
  703. data/spec/views/hyrax/base/_find_work_widget.html.erb_spec.rb +0 -20
@@ -3,10 +3,16 @@ fr:
3
3
  activefedora:
4
4
  models:
5
5
  batch_upload_item: Travaux par lot
6
+ file_set: Fichier
6
7
  activemodel:
7
8
  errors:
8
9
  messages:
10
+ cannot_have_child_nested: ne peut pas avoir d'enfant imbriqué dedans
11
+ cannot_nest_in_parent: ne peut pas nicher dans le parent
12
+ cannot_remove_relationship: la permission est inadéquate pour la suppression de la relation de nidification
9
13
  conflict: Vos modifications n'ont pas pu être enregistrées car un autre utilisateur (ou travail en arrière-plan) a mis à jour ce %{model} après avoir commencé à l'éditer. Assurez-vous que toutes les pièces jointes du fichier sont terminées et réessayez. Ce formulaire a été actualisé avec la plus récente copie enregistrée du %{model}.
14
+ exceeds_maximum_nesting_depth: l'emboîtement dépasse la profondeur d'imbrication maximale autorisée.
15
+ is_not_nestable: n'est pas imbriqué
10
16
  blacklight:
11
17
  search:
12
18
  fields:
@@ -31,15 +37,19 @@ fr:
31
37
  extension_whitelist_error: 'Vous n''êtes pas autorisé à télécharger des fichiers %{extension}, types autorisés: %{allowed_types}'
32
38
  helpers:
33
39
  action:
40
+ add: Ajouter
34
41
  admin_set:
35
42
  new: Créer un nouvel ensemble administratif
36
43
  batch:
37
44
  new: Créer un lot d'œuvres
38
45
  cancel: Annuler
46
+ close: Fermer
39
47
  collection:
40
48
  new: Nouvelle collection
41
49
  delete: Effacer
42
50
  edit: modifier
51
+ refresh: Rafraîchir
52
+ remove: Retirer
43
53
  work:
44
54
  new: Ajouter un nouveau travail
45
55
  submit:
@@ -80,7 +90,6 @@ fr:
80
90
  no_date: Une date est requise pour l'option de publication sélectionnée.
81
91
  no_embargo: Une période d'embargo est requise pour l'option sélectionnée.
82
92
  nothing: Sélectionnez les options de libération avant d'appuyer sur Enregistrer.
83
- varies: L'option de libération «Variable» nécessite une date ou une période d'embargo.
84
93
  permission_update_notices:
85
94
  new_admin_set: L'ensemble administratif '%{name}' a été créé. Utilisez les onglets supplémentaires pour définir d'autres aspects de l'ensemble administratif.
86
95
  participants: Les droits des participants au service administratif ont été mis à jour
@@ -168,6 +177,73 @@ fr:
168
177
  update:
169
178
  flash:
170
179
  success: L'apparence a été mise à jour avec succès
180
+ collection_types:
181
+ create:
182
+ notification: Le type de collection %{name} a été créé.
183
+ delete:
184
+ notification: Le type de collection %{name} a été supprimé.
185
+ edit:
186
+ header: Modifier le type de collection
187
+ submit: Sauvegarder les modifications
188
+ errors:
189
+ no_settings_change_for_admin_sets: Les paramètres de type de collection ne peuvent pas être modifiés pour le type d'ensemble administratif
190
+ no_settings_change_for_user_collections: Les paramètres de type de collection ne peuvent pas être modifiés pour le type de collection utilisateur
191
+ no_settings_change_if_not_empty: Les paramètres de type de collection ne peuvent pas être modifiés pour un type qui a des collections
192
+ not_empty: Le type de collection ne peut pas être modifié car il a des collections
193
+ form:
194
+ tab:
195
+ metadata: La description
196
+ participants: Participants
197
+ settings: Paramètres
198
+ form_participant_table:
199
+ creators:
200
+ action: action
201
+ agent_name: Créateurs de collection
202
+ empty: Aucun créateur n'a été ajouté à ce type de collection.
203
+ help: Les créateurs de collections de ce type peuvent créer et gérer leurs propres collections.
204
+ title: Créateurs
205
+ type: Type
206
+ managers:
207
+ action: action
208
+ agent_name: Gestionnaires de collection
209
+ empty: Aucun responsable n'a été ajouté à ce type de collection.
210
+ help: Les gestionnaires de collections de ce type peuvent modifier les collections créées par d'autres utilisateurs, notamment en ajoutant et en supprimant des œuvres d'une collection, en modifiant les métadonnées de collection et en supprimant des collections.
211
+ title: Les gestionnaires
212
+ type: Type
213
+ form_participants:
214
+ add_participants: Ajouter des participants
215
+ current_participants: Participants actuels
216
+ header: Participants à la collecte
217
+ instructions: Vous pouvez désigner des groupes et des utilisateurs en tant que créateurs et gestionnaires de collections de ce type
218
+ remove_success: Participant supprimé
219
+ submit: Ajouter
220
+ update_notice: Participants mis à jour
221
+ form_settings:
222
+ instructions: Ces paramètres déterminent comment les collections de ce type peuvent être gérées et découvertes.
223
+ warning: 'Avertissement: ces paramètres ne peuvent pas être modifiés après la création d''une collection de ce type.'
224
+ index:
225
+ breadcrumb: Types de collection
226
+ create_new_button: Créer un nouveau type de collection
227
+ description: Les types de collection vous permettent de définir les paramètres qui régissent les collections qui servent différents objectifs dans votre référentiel. Vous pouvez définir autant de types de collections que vous le souhaitez.
228
+ header: Types de collection
229
+ modal:
230
+ can_delete_body_html: "<p> La suppression de ce type de collection supprimera définitivement le type et ses paramètres du référentiel. Êtes-vous sûr de vouloir supprimer ce type de collection? </p>"
231
+ cannot_delete_body_html: "<p> Vous ne pouvez pas supprimer ce type de collection car une ou plusieurs collections de ce type ont déjà été créées. </p><p> Pour supprimer ce type de collection, assurez-vous d'abord que toutes les collections de ce type ont été supprimées. </p>"
232
+ header_can_delete: Supprimer le type de collection?
233
+ header_cannot_delete: Impossible de supprimer le type de collection
234
+ view_collections: Voir les collections de ce type
235
+ more_toggle_content_html: "<p> Les scénarios typiques pour les types de collection incluent: </p><ul><li> <strong>Collections d'utilisateurs</strong> que tout utilisateur enregistré peut créer pour organiser les éléments qu'il dépose. </li><li> <strong>Les expositions</strong> que le personnel crée et organise pour l'exposition publique, où les articles peuvent être inclus dans un certain nombre d'expositions. </li><li> <strong>Collections contrôlées</strong> créées et gérées par le personnel et non destinées à l'affichage public, telles que les collections associées aux unités organisationnelles ou aux départements. </li><li> <strong>Collections de communautés</strong> qui sont destinées à l'affichage public, de la même manière que les communautés et les collections DSpace sont parfois utilisées. </li></ul>"
236
+ more_toggle_header_html: "<span>Plus d'informations</span> sur les types de collection"
237
+ table:
238
+ actions: actes
239
+ name: prénom
240
+ multiple_membership_checker:
241
+ error_preamble: 'Erreur: vous avez spécifié plusieurs des mêmes types de collection de membres uniques'
242
+ new:
243
+ header: Créer un nouveau type de collection
244
+ submit: sauvegarder
245
+ update:
246
+ notification: Le type de collection %{name} a été mis à jour.
171
247
  features:
172
248
  index:
173
249
  action: Action
@@ -176,8 +252,8 @@ fr:
176
252
  header: Caractéristiques
177
253
  sidebar:
178
254
  activity: Activité
179
- admin_sets: Ensembles administratifs
180
255
  appearance: Apparence
256
+ collection_types: Types de collection
181
257
  collections: Collections
182
258
  configuration: Configuration
183
259
  content_blocks: Blocs de contenu
@@ -200,7 +276,6 @@ fr:
200
276
  end_label: Fin [par défaut pour maintenant]
201
277
  heading: 'Afficher les fichiers déposés:'
202
278
  start_label: Début
203
- registered: Inscrit
204
279
  repository_objects:
205
280
  series:
206
281
  published: Publié
@@ -241,11 +316,6 @@ fr:
241
316
  tabs:
242
317
  published: Publié
243
318
  under_review: À l'étude
244
- admin_sets:
245
- index:
246
- header: Toutes les collections
247
- show:
248
- header: Collection
249
319
  api:
250
320
  accepted:
251
321
  default: Votre demande a été acceptée pour traitement, mais le traitement n'est pas complet. Consultez le travail pour plus d'informations.
@@ -265,15 +335,43 @@ fr:
265
335
  default: Vous devez être connecté pour faire cela!
266
336
  unprocessable_entity:
267
337
  default: La ressource que vous avez tenté de modifier ne peut pas être modifiée selon votre demande.
268
- empty_file: Le fichier que vous avez téléchargé n'a aucun contenu.
269
338
  background_attribution_html: ''
270
339
  base:
271
340
  citations:
272
341
  header: 'Citations:'
342
+ form_child_work_relationships:
343
+ actions:
344
+ remove: Supprimer de ce travail
345
+ attach_new_work: Déposer un nouveau travail en tant qu'enfant de ce travail
346
+ caption: Ce travail contient actuellement ces travaux d'enfants
347
+ confirm:
348
+ cancel: Annuler
349
+ remove: Retirer
350
+ text: Supprimer ce travail enfant ne le supprimera pas du référentiel, uniquement à partir de ce travail parent. Êtes-vous sûr de vouloir supprimer ce travail de ce travail parent?
351
+ header:
352
+ actions: action
353
+ title: Titre du travail
273
354
  form_files:
274
355
  dropzone: Déposez les fichiers ici.
275
- external_upload: Cloud Providers
276
- local_upload: Ajouter des fichiers locaux
356
+ local_upload_browse_everything_html: |
357
+ <p>Vous pouvez ajouter un ou plusieurs fichiers à associer à ce travail.</p>
358
+ <p>Notez que si vous téléchargez un grand nombre de fichiers dans un
359
+ court laps de temps, le fournisseur de cloud risque de ne pas pouvoir
360
+ répondre à votre demande. Si vous rencontrez des erreurs de
361
+ téléchargement depuis le nuage, faites-nous savoir via le
362
+ %{contact_href}.</p>
363
+ local_upload_html: "<p>Vous pouvez ajouter un ou plusieurs fichiers à associer à ce travail.</p>"
364
+ form_member_of_collections:
365
+ actions:
366
+ remove: Supprimer de la collection
367
+ caption: Ce travail est actuellement dans ces collections
368
+ confirm:
369
+ cancel: Annuler
370
+ remove: Retirer
371
+ text: La suppression de ce travail ne le supprimera pas du référentiel, mais seulement de cette collection. Êtes-vous sûr de vouloir supprimer ce travail de la collection?
372
+ header:
373
+ actions: action
374
+ title: Titre de la collection
277
375
  form_permission_under_embargo:
278
376
  help_html: "<strong>Ce travail est sous embargo.</strong> Vous pouvez modifier les paramètres de l'embargo ici, ou vous pouvez visiter le %{edit_link} pour le désactiver."
279
377
  legend_html: Visibilité <small>Qui devrait pouvoir afficher ou télécharger ce contenu?</small>
@@ -287,6 +385,19 @@ fr:
287
385
  required_descriptions: Décrivez votre travail
288
386
  required_files: Ajouter des fichiers
289
387
  requirements: Exigences
388
+ form_rendering:
389
+ help_html: Sélectionnez le (s) fichier (s) à télécharger en téléchargement pour chaque image dans Universal Viewer, par exemple un PDF de l'ensemble de l'œuvre.
390
+ legend_html: Le rendu
391
+ form_representative:
392
+ help_html: Sélectionnez le fichier avec le média qui représente ce travail.
393
+ legend_html: Médias représentatifs
394
+ form_share:
395
+ add_sharing: Ajouter un partage
396
+ currently_sharing: Actuellement partagé avec
397
+ directions: Indépendamment des paramètres de visibilité pour ce travail, vous pouvez également le partager avec d'autres utilisateurs et groupes.
398
+ form_thumbnail:
399
+ help_html: Sélectionnez le fichier à utiliser comme vignette pour ce travail.
400
+ legend_html: La vignette
290
401
  items:
291
402
  actions: actes
292
403
  date_uploaded: Date de téléchargement
@@ -295,17 +406,13 @@ fr:
295
406
  thumbnail: La vignette
296
407
  title: Titre
297
408
  visibility: Visibilité
298
- metadata:
299
- attribute_name_label: Nom d'attribut
300
- attribute_values_label: Valeurs
301
- header: Descriptions
302
409
  relationships:
303
410
  empty: Ce %{type} ne se trouve actuellement dans aucune collection.
304
411
  header: Des relations
305
412
  relationships_parent_row:
306
413
  label: 'Dans %{type}:'
307
414
  show:
308
- last_modified: 'Dernière modification: %{value}'
415
+ last_modified: Dernière modification
309
416
  social_media:
310
417
  facebook: Facebook
311
418
  google: Google+
@@ -332,9 +439,15 @@ fr:
332
439
  search_results: Retour aux résultats de recherche
333
440
  collection:
334
441
  actions:
335
- add_works:
336
- desc: Ajouter des œuvres à cette collection
337
- label: Ajouter des travaux
442
+ add_existing_works:
443
+ desc: Ajouter des œuvres existantes à cette collection
444
+ label: Ajouter des œuvres existantes à cette collection
445
+ add_new_nested_collection:
446
+ desc: Ajouter une nouvelle collection à cette collection
447
+ label: Créer une nouvelle collection en tant que sous-collection
448
+ add_new_work:
449
+ desc: Déposez du nouveau travail grâce à cette collection
450
+ label: Déposez du nouveau travail grâce à cette collection
338
451
  delete:
339
452
  confirmation: Supprimez cette collection?
340
453
  desc: Supprimer cette collection
@@ -343,6 +456,17 @@ fr:
343
456
  desc: Modifier cette collection
344
457
  label: modifier
345
458
  header: actes
459
+ nest_collections:
460
+ button_label: Ajouter une sous-collection
461
+ desc: Nicher les autres collections de cette collection
462
+ label: Ajouter des collections existantes à cette collection
463
+ modal_title: Ajouter une sous-collection à la collection
464
+ select_label: Sélectionnez la sous-collection
465
+ nested_subcollection:
466
+ button_label: Ajouter à la collection
467
+ desc: Ajouter des collections existantes à cette collection
468
+ modal_title: Ajouter cette collection dans une autre collection
469
+ select_label: Sélectionner une collection
346
470
  browse_view: Parcourir la vue
347
471
  document_list:
348
472
  edit: modifier
@@ -361,21 +485,28 @@ fr:
361
485
  select_heading: 'Sélectionnez la collection pour ajouter vos fichiers à:'
362
486
  title: Ajouter à la collection
363
487
  update: Mise à jour de la collection
488
+ collection_type:
489
+ admin_set_title: Admin Set
490
+ default_title: Collection d'utilisateurs
491
+ collection_types:
492
+ create_service:
493
+ admin_set_description: Une agrégation de travaux destinée à faciliter le contrôle administratif. Les ensembles d'administration permettent de définir des comportements et des stratégies autour d'un ensemble de travaux.
494
+ default_description: Une collection d'utilisateurs peut être créée par n'importe quel utilisateur pour organiser leurs travaux.
364
495
  collections:
365
- edit:
366
- header: 'Modifier la Collection: %{title}'
367
- form:
368
- tabs:
369
- description: La description
370
- sharing: Partage
371
- visibility: Visibilité
372
- new:
373
- header: Nouvelle Collection
374
496
  search_form:
375
497
  button_label: Aller
376
498
  label: Rechercher Collection %{title}
377
499
  placeholder: Rechercher Collection
378
500
  show:
501
+ buttons:
502
+ remove_from_collection: Retirer
503
+ remove_this_sub_collection: Retirer
504
+ no_visible_parent_collections: Il n'y a pas de collections parent visibles.
505
+ no_visible_subcollections: Il n'y a pas de sous-collections visibles.
506
+ parent_collection_header: Collections de parents
507
+ show_less_parent_collections: "...montre moins"
508
+ show_more_parent_collections: montre plus...
509
+ subcollection_count: Sous-collections
379
510
  works_in_collection: Fonctionne dans cette collection
380
511
  contact_form:
381
512
  button_label: Envoyer
@@ -419,18 +550,100 @@ fr:
419
550
  authorize_proxies: Autoriser les procurations
420
551
  breadcrumbs:
421
552
  admin: Administration
553
+ collection_type_actions:
554
+ close: Fermer
555
+ create_collection: Créer une collection
556
+ select_type_of_collection: Sélectionnez le type de collection
422
557
  collections:
423
558
  edit:
424
559
  header: 'Modifier la collection: %{title}'
425
560
  form:
561
+ permission_update_errors:
562
+ error: Option de mise à jour non valide pour le modèle d'autorisation.
563
+ permission_update_notices:
564
+ participants: Les options de partage de la collection ont été mises à jour.
565
+ sharing: Les options de partage de la collection ont été mises à jour.
426
566
  tabs:
567
+ branding: l'image de marque
427
568
  description: La description
569
+ discovery: Découverte
570
+ relationships: Des relations
428
571
  sharing: Partage
429
- visibility: Visibilité
572
+ form_branding:
573
+ banner:
574
+ description: Une image à afficher en haut de la page de collection. Pour de meilleurs résultats, téléchargez une image (JPG, GIF ou PNG) d'une hauteur d'au moins 120 pixels et d'une largeur de 1200 pixels.
575
+ label: Bannière
576
+ branding:
577
+ description: En option, vous pouvez télécharger une image de bannière et / ou des images de logo à associer à cette collection. Si elles sont téléchargées, ces images seront affichées en haut de la page de collection afin de fournir une image de marque unique pour la collection.
578
+ label: l'image de marque
579
+ logo:
580
+ description: Une ou plusieurs images à afficher en haut de la page de collection. Pour de meilleurs résultats, téléchargez une image (JPG, GIF ou PNG) de 40 pixels de hauteur. Les images plus grandes seront redimensionnées à 40 pixels de hauteur.
581
+ label: Logo
582
+ form_discovery:
583
+ para1: Ces paramètres déterminent qui peut découvrir et afficher la page de destination de cette collection. ils n'affectent pas la visibilité des éléments de la collection.
584
+ para2: Si vous choisissez de ne pas autoriser l'accès en accès libre à cette collection, vous pouvez toujours partager la collection avec des utilisateurs et des groupes spécifiques à l'aide de l'onglet Partage.
585
+ form_relationships:
586
+ add_other_collections_as_sub_collections_description: Vous pouvez gérer les sous-collections de cette collection.
587
+ buttons:
588
+ remove_from_collection: Retirer
589
+ remove_this_sub_collection: Retirer
590
+ collection_is_subcollection_description: Cette collection est actuellement une sous-collection de ces collections
591
+ headlines:
592
+ other_collections_in_this_collection: Autres collections de cette collection
593
+ this_collection_in_other_collections: Cette collection dans d'autres collections
594
+ modals:
595
+ remove_from_collection_description: La suppression de cette collection ne la supprimera pas du référentiel, uniquement en tant que parent de cette collection. Êtes-vous sûr de vouloir supprimer cette collection?
596
+ remove_this_sub_collection_description: La suppression de cette sous-collection ne la supprimera pas du référentiel, uniquement à partir de cette collection parent. Êtes-vous sûr de vouloir supprimer cette sous-collection?
597
+ sub_collections_of_collection_description: Ces collections sont actuellement des sous-collections de cette collection
598
+ table:
599
+ action: action
600
+ collection_title: Titre de la collection
601
+ this_collection_in_other_collections_description: Vous pouvez ajouter cette collection à d'autres collections en tant que sous-collection.
602
+ form_share:
603
+ add_group: Ajouter un groupe
604
+ add_sharing: Ajouter un partage
605
+ add_user: Ajouter un utilisateur
606
+ current_shared: Actuellement partagé avec
607
+ note: Indépendamment des paramètres de visibilité de cette collection, vous pouvez partager cette collection avec des groupes et des utilisateurs spécifiques.
608
+ form_share_table:
609
+ allow_all_registered: Autoriser tous les inscrits
610
+ depositors:
611
+ action: action
612
+ agent_name: Utilisateur / Groupe
613
+ empty: Aucun déposant n'a été ajouté à cette collection.
614
+ help: Les déposants de cette collection peuvent voir la collection et y ajouter des œuvres, même si les autorisations de visibilité du collecton ne leur permettraient pas de l'afficher.
615
+ remove: Retirer
616
+ title: Déposants
617
+ type: Type
618
+ managers:
619
+ action: action
620
+ agent_name: Utilisateur / Groupe
621
+ empty: Aucun responsable n'a été ajouté à cette collection.
622
+ help: Les gestionnaires de cette collection peuvent ajouter et supprimer des œuvres de la collection, modifier les métadonnées de collection et supprimer la collection.
623
+ help_with_works: Pour les collections de type %{type_title}, lorsque les œuvres sont créées directement dans cette collection, les gestionnaires disposent d'un accès en modification au nouveau travail.
624
+ remove: Retirer
625
+ title: Les gestionnaires
626
+ type: Type
627
+ viewers:
628
+ action: action
629
+ agent_name: Utilisateur / Groupe
630
+ empty: Aucun spectateur n'a été ajouté à cette collection.
631
+ help: Les utilisateurs de cette collection peuvent l'afficher même si les autorisations de visibilité de la collection ne leur permettent pas de l'afficher.
632
+ help_with_works: Pour les collections de type %{type_title}, lorsque les œuvres sont créées directement dans cette collection, les utilisateurs disposent d'un accès en lecture au nouveau travail.
633
+ remove: Retirer
634
+ title: Les spectateurs
635
+ type: Type
430
636
  new:
431
637
  header: Créer une nouvelle collection
432
638
  show:
433
- works_in_collection: Fonctionne dans cette collection
639
+ header: Collection
640
+ item_count: Travaux
641
+ parent_collection_header: Collections de parents
642
+ public_view_label: Vue publique de la collection
643
+ search_results: Résultats de la recherche dans cette collection
644
+ show_less_parent_collections: "...montre moins"
645
+ show_more_parent_collections: montre plus...
646
+ subcollection_count: Sous-collections
434
647
  create_work: Créer un travail
435
648
  current_proxies: Proxies actuelles
436
649
  delete_notification: Supprimer la notification
@@ -439,19 +652,44 @@ fr:
439
652
  create_work: Créer un travail
440
653
  select_type_of_work: Sélectionnez le type de travail
441
654
  manage_proxies: Gérer les procurations
655
+ managed:
656
+ collections: Collections gérées
657
+ works: Travaux gérés
442
658
  my:
443
659
  action:
444
- collection_confirmation: Supprimer une collection de %{application_name} est permanent. Cliquez sur OK pour supprimer cette collection de %{application_name} ou sur Annuler pour annuler cette opération
660
+ add_to_collection: Ajouter à la collection
661
+ add_to_collection_only: Les actions autorisées sont limitées à l'ajout de membres
662
+ admin_set_confirmation: La suppression d'un ensemble d'administrateurs à partir de %{application_name} est permanente. Cliquez sur OK pour supprimer cet ensemble d'administrateurs de %{application_name}, ou sur Annuler pour annuler cette opération
663
+ collection_create_success: La collection a été créée avec succès.
664
+ collection_delete_fail: La collection %{id} n'a pas pu être supprimée
665
+ collection_delete_success: La collection %{id} a été supprimée avec succès
666
+ collection_deny_add_members: Vous n'avez pas les privilèges suffisants pour ajouter des membres à la collection
667
+ collection_update_success: La collection a été mise à jour avec succès.
668
+ collections_confirmation_html: La suppression de <span class='pluralized'>cette collection</span> supprimera définitivement <span class='pluralized'>cette collection</span> du référentiel. Les éléments de <span class='pluralized'>cette collection</span> resteront dans le référentiel. Êtes-vous sûr de vouloir supprimer <span class='pluralized'>cette collection</span> ?
669
+ collections_confirmation_no_items_html: Êtes-vous sûr de vouloir supprimer cette collection? Cette action ne peut pas être annulée.
670
+ delete_admin_set: Supprimer la collection
671
+ delete_admin_set_deny: Cette collection est définie en tant que jeu d'administration et n'est pas vide. Pour supprimer cet ensemble d'administration, vous devez d'abord supprimer (supprimer ou déplacer vers une autre collection d'ensembles d'administration) tous les éléments du jeu d'administration.
445
672
  delete_collection: Supprimer la collection
673
+ delete_collection_deny: Vous n'avez pas les privilèges suffisants pour supprimer ce document.
674
+ delete_collections: Supprimer les collections
675
+ delete_collections_deny: Vous devez sélectionner une ou plusieurs collections à supprimer.
446
676
  delete_work: Supprimer le travail
677
+ edit_admin_set: Modifier la collection
447
678
  edit_collection: Modifier la collection
679
+ edit_collection_deny: Vous n'avez pas les privilèges suffisants pour modifier cette collection.
680
+ edit_selected: Modifier la sélection
448
681
  edit_work: Modifier le travail
449
682
  highlight: Surligner le travail sur le profil
683
+ members_no_access: Vous n'avez pas de privilèges suffisants pour les membres sélectionnés
684
+ nesting_not_allowed: Les collections de ce type ne prennent pas en charge l'imbrication.
685
+ nesting_permission_denied: Vous n'avez pas les privilèges suffisants pour ajouter cette collection à une autre collection.
450
686
  select: Sélectionner
451
687
  select_all: Sélectionnez la page actuelle
452
688
  select_none: Ne rien sélectionner
453
689
  transfer: Transfert de propriété du travail
454
690
  unhighlight: Supprimer la mise en évidence du travail
691
+ view_admin_set: Afficher la collection
692
+ view_collection: Afficher la collection
455
693
  work_confirmation: Supprimer un travail de %{application_name} est permanent. Cliquez sur OK pour supprimer ce travail de %{application_name} ou sur Annuler pour annuler cette opération
456
694
  collection_list:
457
695
  description: 'La description:'
@@ -466,9 +704,14 @@ fr:
466
704
  works: 'Le filtre fonctionne:'
467
705
  heading:
468
706
  action: Actes
707
+ collection_type: Type de collection
708
+ date_modified: Dernière modification
469
709
  date_uploaded: Date Ajoutée
470
710
  highlighted: Souligné
711
+ items: Articles
712
+ last_modified: Dernière modification
471
713
  title: Titre
714
+ type: Type
472
715
  visibility: Visibilité
473
716
  highlighted: Mes faits saillants
474
717
  shared: Travaux partagés avec moi
@@ -481,6 +724,10 @@ fr:
481
724
  results_per_page: Nombre de résultats à afficher par page
482
725
  show_label: Afficher tous les détails de
483
726
  works: Vos travaux
727
+ nest_collections_form:
728
+ create_under: "'%{child_title}' a été ajouté à '%{parent_title}'"
729
+ create_within: "'%{child_title}' a été ajouté à '%{parent_title}'"
730
+ removed_relationship: "'%{child_title}' a été retiré de '%{parent_title}'"
484
731
  no_activity: L'utilisateur n'a aucune activité récente
485
732
  no_notifications: L'utilisateur n'a pas de notification
486
733
  no_transfer_requests: Vous n'avez reçu aucune demande de transfert de travail
@@ -578,6 +825,12 @@ fr:
578
825
  tab_label: Chercheur en vedette
579
826
  title: Chercheur en vedette
580
827
  featured_works:
828
+ document:
829
+ depositor_label: Déposant
830
+ depositor_missing: pas de valeur de déposant
831
+ keyword_label: Mots clés
832
+ keyword_missing: aucun mot-clé spécifié
833
+ title_label: Titre
581
834
  drag: Traîne
582
835
  no_works: Aucun travail n'a été présenté
583
836
  tab_label: Travaux en vedette
@@ -585,6 +838,12 @@ fr:
585
838
  recently_uploaded:
586
839
  depositor: Déposant
587
840
  details: Détails
841
+ document:
842
+ depositor_label: Déposant
843
+ depositor_missing: pas de valeur de déposant
844
+ keyword_label: Mots clés
845
+ keyword_missing: aucun mot-clé spécifié
846
+ title_label: Titre
588
847
  no_public: Aucun travail public n'a été apporté.
589
848
  tab_label: Chargé récemment
590
849
  title: Chargé récemment
@@ -628,6 +887,9 @@ fr:
628
887
  message: Message
629
888
  notifications_deleted: Les notifications ont été supprimées
630
889
  subject: Assujettir
890
+ manifest:
891
+ download_text: Télécharger toute la ressource
892
+ unknown_mime_text: type mime inconnu
631
893
  messages:
632
894
  failure:
633
895
  multiple:
@@ -736,7 +998,6 @@ fr:
736
998
  change_access_no_message: Non. Je vais le mettre à jour manuellement.
737
999
  change_access_yes_message: Oui s'il vous plaît.
738
1000
  change_permissions_message_html: "<p> Vous avez modifié les autorisations sur ce %{curation_concern_human_readable_type}, <i>%{curation_concern}</i> , ce qui le rend visible pour <b>%{visibility_badge}</b> . </p><p> Voulez-vous changer tous les fichiers dans %{curation_concern_human_readable_type} à <b>%{visibility_badge}</b> aussi? </p>"
739
- cloud_timeout_message_html: Notez que si vous téléchargez un grand nombre de fichiers dans un court laps de temps, le fournisseur de cloud risque de ne pas pouvoir répondre à votre demande. Si vous rencontrez des erreurs de téléchargement depuis le nuage, faites-nous savoir via le %{contact_href}.
740
1001
  local_ingest:
741
1002
  tab_label: Emplacement du réseau / serveur
742
1003
  my_computer:
@@ -772,10 +1033,6 @@ fr:
772
1033
  text: Public
773
1034
  warning_html: '<p> <strong>Notez</strong> que faire apparaître une chose visible dans le monde (c.-à-d. Marquer cela comme %{label}) peut être considérée comme une publication qui pourrait avoir une incidence sur votre capacité à: </p><ul><li> Prenez connaissance de votre travail </li><li> Publiez votre travail dans un journal </li></ul><p> Consultez <a href="http://www.sherpa.ac.uk/romeo/">SHERPA / RoMEO</a> pour plus d''informations sur les politiques de copyright des éditeurs. </p>'
774
1035
  open_title_attr: Changez la visibilité de cette ressource
775
- private:
776
- note_html: Seuls les utilisateurs et / ou les groupes ayant reçu un accès spécifique dans la section "Partager avec".
777
- text: Privé
778
- private_title_attr: Changez la visibilité de cette ressource
779
1036
  restricted:
780
1037
  note_html: Seuls les utilisateurs et / ou les groupes ayant reçu un accès spécifique dans la section "Partager avec".
781
1038
  text: Privé
@@ -795,7 +1052,7 @@ fr:
795
1052
  breadcrumb: modifier
796
1053
  form:
797
1054
  additional_fields: Champs supplémentaires
798
- in_collections: Ce travail dans les collections
1055
+ in_collections: Collections
799
1056
  in_other_works: Ce travail dans d'autres ouvrages
800
1057
  in_this_work: Autres travaux dans ce travail
801
1058
  tab:
@@ -830,6 +1087,17 @@ fr:
830
1087
  resource_type: Des catégories prédéfinies pour décrire le type de contenu en cours de chargement, tel que "quotite" Ou "ensemble de données". & Quot; Plus d'un type peut être sélectionné.
831
1088
  subject: Les rubriques ou les termes d'index décrivant la collecte de la collection; Ceux-ci doivent être conformes à un vocabulaire existant.
832
1089
  title: Un nom pour aider à identifier une collection.
1090
+ collection_type:
1091
+ allow_multiple_membership: Autoriser les œuvres à appartenir à plusieurs collections de ce type
1092
+ assigns_visibility: Autoriser les collections de ce type à attribuer des paramètres de visibilité initiaux à un nouveau travail
1093
+ assigns_workflow: Autoriser les collections de ce type à affecter un workflow à un nouveau travail
1094
+ description: Une brève déclaration de l'objectif général de ce type de collection. Les utilisateurs verront cela s'ils ont plus d'un type de collection à choisir lors de la création d'une nouvelle collection.
1095
+ discoverable: Autoriser les collections de ce type à être détectables
1096
+ nestable: Autoriser l'imbrication de collections de ce type (une collection peut contenir d'autres collections)
1097
+ require_membership: Une oeuvre doit appartenir à au moins une collection de ce type
1098
+ sharable: Autoriser les utilisateurs à affecter des gestionnaires de collection, des déposants et des lecteurs aux collections qu'ils gèrent
1099
+ share_applies_to_new_works: Lorsque de nouveaux travaux sont créés directement dans la collection, accordez aux utilisateurs et aux groupes des autorisations de partage pour le nouveau travail en fonction de leurs rôles de collection.
1100
+ title: ''
833
1101
  defaults:
834
1102
  based_near: Un nom de lieu lié au travail, tel que son site de publication, ou la ville, l'état ou le pays sur lequel se trouvent les contenus du travail. Appelle le <a href='http://www.geonames.org'> service web GeoNames </a>.
835
1103
  contributor: Une personne ou un groupe que vous souhaitez reconnaître pour avoir joué un rôle dans la création du travail, mais pas le rôle principal.
@@ -849,8 +1117,19 @@ fr:
849
1117
  collection:
850
1118
  size: Taille
851
1119
  total_items: Total travaux
1120
+ collection_type:
1121
+ allow_multiple_membership: MEMBRES MULTIPLES
1122
+ assigns_visibility: VISIBILITÉ
1123
+ assigns_workflow: FLUX DE TRAVAIL
1124
+ description: Description du type
1125
+ discoverable: DÉCOUVERTE
1126
+ nestable: NESTABLE
1127
+ require_membership: OBLIGATION D'ADHÉSION
1128
+ sharable: PARTAGE
1129
+ share_applies_to_new_works: APPLIQUEZ AUX NOUVEAUX TRAVAUX
1130
+ title: Nom du type
852
1131
  defaults:
853
- admin_set_id: Ajouter en tant que membre de l'ensemble administratif
1132
+ admin_set_id: L'ensemble Administratif
854
1133
  based_near: Emplacement
855
1134
  creator: Créateur
856
1135
  date_created: date créée
@@ -860,8 +1139,9 @@ fr:
860
1139
  keyword: Mot-clé
861
1140
  lease_expiration_date: jusqu'à
862
1141
  license: Licence
863
- member_of_collection_ids: Ajouter en tant que membre de la collection
1142
+ member_of_collection_ids: Ajouter à la collection
864
1143
  related_url: URL associée
1144
+ rights_statement: Déclaration de droits
865
1145
  title: Titre
866
1146
  visibility_after_embargo: Puis ouvrez-le jusqu'à
867
1147
  visibility_after_lease: Puis la restreindre à
@@ -870,5 +1150,9 @@ fr:
870
1150
  proxy_deposit_request:
871
1151
  sender_comment: commentaires
872
1152
  transfer_to: Utilisateur
1153
+ placeholders:
1154
+ defaults:
1155
+ find_child_work: Rechercher un travail ...
1156
+ member_of_collection_ids: Sélectionnez une collection ...
873
1157
  required:
874
1158
  html: <span class="label label-info required-tag">Champs obligatoires</span>