curate 0.6.5 → 0.6.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (431) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +9 -0
  3. data/app/assets/javascripts/curate.js +2 -0
  4. data/app/assets/javascripts/curate/link_groups.js.coffee +123 -0
  5. data/app/assets/javascripts/curate/link_users.js.coffee +29 -10
  6. data/app/assets/stylesheets/curate.css.scss +1 -0
  7. data/app/assets/stylesheets/curate/linkedGroups.css.scss +16 -0
  8. data/app/assets/stylesheets/curate/linkedUsers.css.scss +4 -0
  9. data/app/assets/stylesheets/modules.scss +2 -1
  10. data/app/assets/stylesheets/modules/forms.css.scss +5 -0
  11. data/app/assets/stylesheets/modules/profile.css.scss +51 -0
  12. data/app/controllers/catalog_controller.rb +37 -7
  13. data/app/controllers/curate/collections_controller.rb +15 -0
  14. data/app/controllers/curate/people_controller.rb +17 -4
  15. data/app/controllers/curation_concern/generic_works_controller.rb +26 -2
  16. data/app/controllers/curation_concern/linked_resources_controller.rb +1 -1
  17. data/app/controllers/curation_concern/permissions_controller.rb +2 -1
  18. data/app/controllers/hydramata/groups_controller.rb +119 -0
  19. data/app/controllers/registrations_controller.rb +33 -0
  20. data/app/controllers/users_controller.rb +23 -0
  21. data/app/helpers/curate/catalog_helper.rb +14 -0
  22. data/app/helpers/curate/collections_helper.rb +20 -9
  23. data/app/helpers/curate_helper.rb +12 -5
  24. data/app/helpers/hydramata/groups_helper.rb +12 -0
  25. data/app/models/account.rb +17 -0
  26. data/app/models/concerns/curate/ability.rb +1 -5
  27. data/app/models/curate/user_behavior/base.rb +6 -5
  28. data/app/repository_datastreams/group_metadata_datastream.rb +20 -0
  29. data/app/repository_models/collection.rb +49 -1
  30. data/app/repository_models/curation_concern/model.rb +5 -1
  31. data/app/repository_models/curation_concern/with_generic_files.rb +4 -3
  32. data/app/repository_models/curation_concern/work.rb +38 -1
  33. data/app/repository_models/curation_concern/work_permission.rb +54 -0
  34. data/app/repository_models/hydramata/group.rb +87 -0
  35. data/app/repository_models/hydramata/group_membership_form.rb +72 -0
  36. data/app/repository_models/person.rb +37 -1
  37. data/app/repository_models/profile_section.rb +0 -1
  38. data/app/services/curation_concern/work_permission_action_parser.rb +78 -0
  39. data/app/services/hydramata/group_membership_action_parser.rb +65 -0
  40. data/app/views/catalog/_facets.html.erb +3 -1
  41. data/app/views/catalog/index.html.erb +3 -0
  42. data/app/views/curate/collections/_form.html.erb +10 -0
  43. data/app/views/curate/collections/show.html.erb +1 -0
  44. data/app/views/curate/people/_profile_image.html.erb +2 -2
  45. data/app/views/curate/people/show.html.erb +46 -34
  46. data/app/views/curation_concern/articles/_attributes.html.erb +1 -0
  47. data/app/views/curation_concern/base/_form.html.erb +1 -0
  48. data/app/views/curation_concern/base/_form_descriptive_fields.erb +9 -0
  49. data/app/views/curation_concern/base/_linked_editors.html.erb +47 -0
  50. data/app/views/curation_concern/base/_linked_groups.html.erb +45 -0
  51. data/app/views/curation_concern/base/_persons_edit_access.html.erb +44 -0
  52. data/app/views/curation_concern/documents/_attributes.html.erb +1 -0
  53. data/app/views/curation_concern/etds/_attributes.html.erb +1 -0
  54. data/app/views/curation_concern/etds/_form_descriptive_fields.erb +2 -0
  55. data/app/views/curation_concern/generic_works/_attributes.html.erb +1 -0
  56. data/app/views/{curate/organizations/_organization.html.erb → curation_concern/hydramata/groups/_group.html.erb} +6 -6
  57. data/app/views/curation_concern/images/_attributes.html.erb +1 -0
  58. data/app/views/curation_concern/images/_form_descriptive_fields.erb +2 -0
  59. data/app/views/hydramata/groups/_button_create_group.html.erb +1 -0
  60. data/app/views/{curate/organizations → hydramata/groups}/_document_list.html.erb +0 -0
  61. data/app/views/{curate/organizations → hydramata/groups}/_form.html.erb +28 -10
  62. data/app/views/hydramata/groups/_group.html.erb +24 -0
  63. data/app/views/hydramata/groups/_linked_members.html.erb +96 -0
  64. data/app/views/hydramata/groups/edit.html.erb +4 -0
  65. data/app/views/hydramata/groups/index.html.erb +11 -0
  66. data/app/views/{curate/organizations → hydramata/groups}/new.html.erb +1 -1
  67. data/app/views/hydramata/groups/show.html.erb +36 -0
  68. data/app/views/layouts/boilerplate.html.erb +1 -1
  69. data/app/views/registrations/_form_account_deactivation.html.erb +1 -1
  70. data/app/views/registrations/_form_attributes.html.erb +3 -5
  71. data/app/views/registrations/_form_password_management.html.erb +11 -9
  72. data/app/views/registrations/edit.html.erb +8 -5
  73. data/app/views/shared/_add_content.html.erb +1 -1
  74. data/app/views/shared/_my_actions.html.erb +1 -0
  75. data/lib/curate/configuration.rb +6 -0
  76. data/lib/curate/rails/routes.rb +7 -1
  77. data/lib/curate/spec_support.rb +1 -1
  78. data/lib/curate/version.rb +1 -1
  79. data/lib/generators/curate/application_template.rb +10 -2
  80. data/lib/generators/curate/curate_generator.rb +16 -0
  81. data/lib/generators/curate/predicate_mapping/predicate_mappings.yml +64 -0
  82. data/lib/generators/curate/search_config/search_config_generator.rb +177 -0
  83. data/lib/generators/curate/soft_delete/active_fedora_soft_delete_monkey_patch.rb +14 -4
  84. data/spec/abilities/generic_file_abilities_spec.rb +1 -0
  85. data/spec/abilities/generic_work_abilities_spec.rb +1 -0
  86. data/spec/controllers/catalog_controller_spec.rb +21 -0
  87. data/spec/controllers/curate/collections_controller_spec.rb +1 -1
  88. data/spec/controllers/curation_concern/linked_resources_controller_spec.rb +1 -1
  89. data/spec/controllers/curation_concern/permissions_controller_spec.rb +1 -1
  90. data/spec/controllers/hydamata/groups_controller_spec.rb +133 -0
  91. data/spec/factories/group_factory.rb +20 -0
  92. data/spec/features/article_spec.rb +3 -2
  93. data/spec/features/catalog_search_spec.rb +19 -2
  94. data/spec/features/collections_spec.rb +23 -7
  95. data/spec/features/dataset_spec.rb +3 -2
  96. data/spec/features/end_to_end_spec.rb +9 -8
  97. data/spec/features/etd_spec.rb +3 -2
  98. data/spec/features/generic_work_spec.rb +6 -3
  99. data/spec/features/image_spec.rb +3 -2
  100. data/spec/features/manager_profile_workflow_spec.rb +56 -0
  101. data/spec/features/person_profile_spec.rb +4 -4
  102. data/spec/features/user_profile_workflow_spec.rb +1 -7
  103. data/spec/fixtures/cassettes/remotely_identified_doi_mint_generic_work.yml +3 -3
  104. data/spec/fixtures/cassettes/remotely_identified_doi_mint_spam.yml +47 -0
  105. data/spec/helpers/curate/catalog_helper.rb +29 -0
  106. data/spec/internal/Gemfile +23 -4
  107. data/spec/internal/Gemfile.lock +410 -14
  108. data/spec/internal/app/assets/images/blacklight/bg.png +0 -0
  109. data/spec/internal/app/assets/images/blacklight/border.png +0 -0
  110. data/spec/internal/app/assets/images/blacklight/bul_sq_gry.gif +0 -0
  111. data/spec/internal/app/assets/images/blacklight/checkmark.gif +0 -0
  112. data/spec/internal/app/assets/images/blacklight/logo.png +0 -0
  113. data/spec/internal/app/assets/images/blacklight/magnifying_glass.gif +0 -0
  114. data/spec/internal/app/assets/images/blacklight/remove.gif +0 -0
  115. data/spec/internal/app/assets/images/blacklight/separator.gif +0 -0
  116. data/spec/internal/app/assets/images/blacklight/start_over.gif +0 -0
  117. data/spec/internal/app/assets/javascripts/application.js +4 -0
  118. data/spec/internal/app/assets/stylesheets/application.css +1 -0
  119. data/spec/internal/app/controllers/application_controller.rb +9 -0
  120. data/spec/internal/app/controllers/curation_concern/spams_controller.rb +6 -0
  121. data/spec/internal/app/models/ability.rb +20 -0
  122. data/spec/internal/app/models/solr_document.rb +38 -0
  123. data/spec/internal/app/models/user.rb +23 -0
  124. data/spec/internal/app/repository_datastreams/spam_rdf_datastream.rb +78 -0
  125. data/spec/internal/app/repository_models/spam.rb +47 -0
  126. data/spec/internal/app/services/curation_concern/spam_actor.rb +6 -0
  127. data/spec/internal/app/views/curation_concern/spams/_spam.html.erb +2 -0
  128. data/spec/internal/config/SolrMarc/config-test.properties +37 -0
  129. data/spec/internal/config/SolrMarc/config.properties +37 -0
  130. data/spec/internal/config/SolrMarc/index.properties +97 -0
  131. data/spec/internal/config/SolrMarc/index_scripts/dewey.bsh +47 -0
  132. data/spec/internal/config/SolrMarc/index_scripts/format.bsh +126 -0
  133. data/spec/internal/config/SolrMarc/translation_maps/README_MAPS +1 -0
  134. data/spec/internal/config/SolrMarc/translation_maps/callnumber_map.properties +407 -0
  135. data/spec/internal/config/SolrMarc/translation_maps/composition_era_map.properties +56 -0
  136. data/spec/internal/config/SolrMarc/translation_maps/country_map.properties +379 -0
  137. data/spec/internal/config/SolrMarc/translation_maps/format_map.properties +50 -0
  138. data/spec/internal/config/SolrMarc/translation_maps/instrument_map.properties +101 -0
  139. data/spec/internal/config/SolrMarc/translation_maps/language_map.properties +490 -0
  140. data/spec/internal/config/application.rb +6 -0
  141. data/spec/internal/config/doi.yml +5 -0
  142. data/spec/internal/config/environments/test.rb +2 -1
  143. data/spec/internal/config/fedora.yml +14 -0
  144. data/spec/internal/config/initializers/action_dispatch_http_upload_monkey_patch.rb +12 -0
  145. data/spec/internal/config/initializers/curate_config.rb +30 -0
  146. data/spec/internal/config/initializers/devise.rb +256 -0
  147. data/spec/internal/config/initializers/hydra-remote_identifier_config.rb +29 -0
  148. data/spec/internal/config/initializers/hydra_config.rb +28 -0
  149. data/spec/internal/config/initializers/mailboxer.rb +17 -0
  150. data/spec/internal/config/initializers/mime_types.rb +8 -1
  151. data/spec/internal/config/initializers/redis_config.rb +32 -0
  152. data/spec/internal/config/initializers/resque_admin.rb +10 -0
  153. data/spec/internal/config/initializers/resque_config.rb +5 -0
  154. data/spec/internal/config/initializers/secret_token.rb +1 -1
  155. data/spec/internal/config/initializers/sufia.rb +81 -0
  156. data/spec/internal/config/jetty.yml +5 -0
  157. data/spec/internal/config/locales/devise.en.yml +59 -0
  158. data/spec/internal/config/locales/en.yml +11 -20
  159. data/spec/internal/config/manager_usernames.yml +9 -0
  160. data/spec/internal/config/predicate_mappings.yml +64 -0
  161. data/spec/internal/config/recipients_list.yml +2 -0
  162. data/spec/internal/config/redis.yml +6 -0
  163. data/spec/internal/config/role_map_cucumber.yml +10 -0
  164. data/spec/internal/config/role_map_development.yml +12 -0
  165. data/spec/internal/config/role_map_production.yml +2 -0
  166. data/spec/internal/config/role_map_test.yml +15 -0
  167. data/spec/internal/config/routes.rb +8 -0
  168. data/spec/internal/config/search_config.yml +9 -0
  169. data/spec/internal/config/solr.yml +10 -0
  170. data/spec/internal/db/development.sqlite3 +0 -0
  171. data/spec/internal/db/migrate/20140328183252_devise_create_users.rb +42 -0
  172. data/spec/internal/db/migrate/20140328183257_add_devise_guests_to_users.rb +15 -0
  173. data/spec/internal/db/migrate/20140328183258_create_searches.rb +16 -0
  174. data/spec/internal/db/migrate/20140328183259_create_bookmarks.rb +18 -0
  175. data/spec/internal/db/migrate/20140328183260_remove_editable_fields_from_bookmarks.rb +12 -0
  176. data/spec/internal/db/migrate/20140328183261_add_user_types_to_bookmarks_searches.rb +16 -0
  177. data/spec/internal/db/migrate/20140328183262_acts_as_follower_migration.rb +17 -0
  178. data/spec/internal/db/migrate/20140328183263_add_social_to_users.rb +13 -0
  179. data/spec/internal/db/migrate/20140328183264_create_single_use_links.rb +12 -0
  180. data/spec/internal/db/migrate/20140328183265_add_ldap_attrs_to_user.rb +27 -0
  181. data/spec/internal/db/migrate/20140328183266_add_avatars_to_users.rb +9 -0
  182. data/spec/internal/db/migrate/20140328183267_create_checksum_audit_logs.rb +20 -0
  183. data/spec/internal/db/migrate/20140328183268_create_version_committers.rb +15 -0
  184. data/spec/internal/db/migrate/20140328183269_add_groups_to_users.rb +11 -0
  185. data/spec/internal/db/migrate/20140328183270_create_local_authorities.rb +50 -0
  186. data/spec/internal/db/migrate/20140328183271_create_trophies.rb +10 -0
  187. data/spec/internal/db/migrate/20140328183331_create_mailboxer.mailboxer_engine.rb +62 -0
  188. data/spec/internal/db/migrate/20140328183332_add_notified_object.mailboxer_engine.rb +18 -0
  189. data/spec/internal/db/migrate/20140328183333_add_notification_code.mailboxer_engine.rb +14 -0
  190. data/spec/internal/db/migrate/20140328183334_add_attachments.mailboxer_engine.rb +10 -0
  191. data/spec/internal/db/migrate/20140328183335_rename_receipts_read.mailboxer_engine.rb +10 -0
  192. data/spec/internal/db/migrate/20140328183336_add_global_notification_support.mailboxer_engine.rb +10 -0
  193. data/spec/internal/db/migrate/20140328183340_add_terms_of_service_to_user.curate_engine.rb +6 -0
  194. data/spec/internal/db/migrate/20140328183341_add_user_force_update_profile.curate_engine.rb +9 -0
  195. data/spec/internal/db/migrate/20140328183342_create_help_requests.curate_engine.rb +23 -0
  196. data/spec/internal/db/migrate/20140328183343_add_repository_id_to_user.curate_engine.rb +7 -0
  197. data/spec/internal/db/migrate/20140328183344_create_curate_proxy_deposit_rights.curate_engine.rb +12 -0
  198. data/spec/internal/db/migrate/20140328183345_change_display_name_to_name.curate_engine.rb +7 -0
  199. data/spec/internal/db/schema.rb +216 -1
  200. data/spec/internal/db/test.sqlite3 +0 -0
  201. data/spec/internal/fedora_conf/conf/development/fedora.fcfg +953 -0
  202. data/spec/internal/fedora_conf/conf/test/fedora.fcfg +953 -0
  203. data/spec/internal/lib/generators/test_app_generator.rb +23 -2
  204. data/spec/internal/log/development.log +322 -4
  205. data/spec/internal/log/test.log +117837 -0
  206. data/spec/internal/solr_conf/conf/schema.xml +273 -0
  207. data/spec/internal/solr_conf/conf/solrconfig.xml +167 -0
  208. data/spec/internal/solr_conf/solr.xml +35 -0
  209. data/spec/internal/spec/controllers/curation_concern/spams_controller_spec.rb +7 -0
  210. data/spec/internal/spec/factories/spams_factory.rb +40 -0
  211. data/spec/internal/spec/repository_models/spam_spec.rb +16 -0
  212. data/spec/internal/spec/services/curation_concern/spam_actor_spec.rb +7 -0
  213. data/spec/internal/test/models/user_test.rb +7 -0
  214. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_blacklight_base.css.scssc +0 -0
  215. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_bookmark.css.scssc +0 -0
  216. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_catalog.css.scssc +0 -0
  217. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_dropdown.css.scssc +0 -0
  218. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_facets.css.scssc +0 -0
  219. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_footer.css.scssc +0 -0
  220. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_group.css.scssc +0 -0
  221. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_header.css.scssc +0 -0
  222. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_layout.css.scssc +0 -0
  223. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_modal.css.scssc +0 -0
  224. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_print.css.scssc +0 -0
  225. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_responsive.css.scssc +0 -0
  226. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/_search_history.css.scssc +0 -0
  227. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/blacklight.css.scssc +0 -0
  228. data/spec/internal/tmp/cache/assets/test/sass/0f223a129cc26de35ff59298da93dd57d598447a/blacklight_defaults.css.scssc +0 -0
  229. data/spec/internal/tmp/cache/assets/test/sass/108fdfe10ba83060a2164fe91a5d70f57ff08f38/linkedGroups.css.scssc +0 -0
  230. data/spec/internal/tmp/cache/assets/test/sass/108fdfe10ba83060a2164fe91a5d70f57ff08f38/linkedUsers.css.scssc +0 -0
  231. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/accessibility.css.scssc +0 -0
  232. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/accordion.css.scssc +0 -0
  233. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/attributes.css.scssc +0 -0
  234. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/classify_work.css.scssc +0 -0
  235. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/collections.css.scssc +0 -0
  236. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/emphatic_action_area.css.scssc +0 -0
  237. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/forms.css.scssc +0 -0
  238. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/multi_value_fields.css.scssc +0 -0
  239. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/pagination.css.scssc +0 -0
  240. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/profile.css.scssc +0 -0
  241. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/search_results.css.scssc +0 -0
  242. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/site_actions.css.scssc +0 -0
  243. data/spec/internal/tmp/cache/assets/test/sass/2c6be7e0f6fa11a075d87959732f91fde3df1f13/site_search.css.scssc +0 -0
  244. data/spec/internal/tmp/cache/assets/test/sass/3540212d3e8f12f14e3d57e312ff13dc248a7b03/bootstrap-modal.cssc +0 -0
  245. data/spec/internal/tmp/cache/assets/test/sass/393de91b02495e7f60ccd919368de37af38618da/bootstrap-datepicker.cssc +0 -0
  246. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_accordion.scssc +0 -0
  247. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_alerts.scssc +0 -0
  248. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_breadcrumbs.scssc +0 -0
  249. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_button-groups.scssc +0 -0
  250. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_buttons.scssc +0 -0
  251. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_carousel.scssc +0 -0
  252. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_close.scssc +0 -0
  253. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_code.scssc +0 -0
  254. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_component-animations.scssc +0 -0
  255. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_dropdowns.scssc +0 -0
  256. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_forms.scssc +0 -0
  257. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_grid.scssc +0 -0
  258. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_hero-unit.scssc +0 -0
  259. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_labels-badges.scssc +0 -0
  260. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_layouts.scssc +0 -0
  261. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_media.scssc +0 -0
  262. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_mixins.scssc +0 -0
  263. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_modals.scssc +0 -0
  264. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_navbar.scssc +0 -0
  265. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_navs.scssc +0 -0
  266. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_pager.scssc +0 -0
  267. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_pagination.scssc +0 -0
  268. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_popovers.scssc +0 -0
  269. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_progress-bars.scssc +0 -0
  270. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_reset.scssc +0 -0
  271. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_responsive-1200px-min.scssc +0 -0
  272. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_responsive-767px-max.scssc +0 -0
  273. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_responsive-768px-979px.scssc +0 -0
  274. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_responsive-navbar.scssc +0 -0
  275. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_responsive-utilities.scssc +0 -0
  276. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_scaffolding.scssc +0 -0
  277. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_sprites.scssc +0 -0
  278. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_tables.scssc +0 -0
  279. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_thumbnails.scssc +0 -0
  280. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_tooltip.scssc +0 -0
  281. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_type.scssc +0 -0
  282. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_utilities.scssc +0 -0
  283. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_variables.scssc +0 -0
  284. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/_wells.scssc +0 -0
  285. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/bootstrap.scssc +0 -0
  286. data/spec/internal/tmp/cache/assets/test/sass/51b00c7d39146f73896d987722a019852fb2ca5e/responsive.scssc +0 -0
  287. data/spec/internal/tmp/cache/assets/test/sass/6a8f3b19bc293c20ed8d8faf81b13284c10818d6/_catalog.css.scssc +0 -0
  288. data/spec/internal/tmp/cache/assets/test/sass/6a8f3b19bc293c20ed8d8faf81b13284c10818d6/_facets.css.scssc +0 -0
  289. data/spec/internal/tmp/cache/assets/test/sass/6a8f3b19bc293c20ed8d8faf81b13284c10818d6/_header.css.scssc +0 -0
  290. data/spec/internal/tmp/cache/assets/test/sass/953d624c1831fcea22a3be549290f4c654726e96/positioning.css.scssc +0 -0
  291. data/spec/internal/tmp/cache/assets/test/sass/b95751effdfef9cdba38bc1d169b6196172155ed/theme.css.scssc +0 -0
  292. data/spec/internal/tmp/cache/assets/test/sass/b95751effdfef9cdba38bc1d169b6196172155ed/typography.css.scssc +0 -0
  293. data/spec/internal/tmp/cache/assets/test/sass/e653ebc579903efbaf96508ec20b97304a2a14a0/token-input-facebook.cssc +0 -0
  294. data/spec/internal/tmp/cache/assets/test/sass/e9808fc781dff3e3e7170d18d009c46cb33a75c5/curate.css.scssc +0 -0
  295. data/spec/internal/tmp/cache/assets/test/sass/e9808fc781dff3e3e7170d18d009c46cb33a75c5/global-variables.scssc +0 -0
  296. data/spec/internal/tmp/cache/assets/test/sass/e9808fc781dff3e3e7170d18d009c46cb33a75c5/modules.scssc +0 -0
  297. data/spec/internal/tmp/cache/assets/test/sass/ef004a21da8f6e485bf56e67090fd7b67164e2d4/bootstrap-responsive.scssc +0 -0
  298. data/spec/internal/tmp/cache/assets/test/sass/ef004a21da8f6e485bf56e67090fd7b67164e2d4/bootstrap.scssc +0 -0
  299. data/spec/internal/tmp/cache/assets/test/sprockets/022df81faa4bf7df68048b690ef7c85c +0 -0
  300. data/spec/internal/tmp/cache/assets/test/sprockets/04a9cbc691396f514e6b88c05724f9cc +0 -0
  301. data/spec/internal/tmp/cache/assets/test/sprockets/070263a383619079784e4ce15cf15443 +0 -0
  302. data/spec/internal/tmp/cache/assets/test/sprockets/091e4dfe4ed53798289eecba25675954 +0 -0
  303. data/spec/internal/tmp/cache/assets/test/sprockets/0b4f161bc175df6a24a070de15ef8070 +0 -0
  304. data/spec/internal/tmp/cache/assets/test/sprockets/0d6ccd45e1a5bb30040987a5817f5ca7 +0 -0
  305. data/spec/internal/tmp/cache/assets/test/sprockets/1114f56d5a4f05583b0351978456c150 +0 -0
  306. data/spec/internal/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  307. data/spec/internal/tmp/cache/assets/test/sprockets/163665b72c8e98b0c88c19896f080bc4 +0 -0
  308. data/spec/internal/tmp/cache/assets/test/sprockets/169842bd6ce5ed610c32403ca2ed06d6 +0 -0
  309. data/spec/internal/tmp/cache/assets/test/sprockets/19465db808fbe15048554cecb70ad7cf +0 -0
  310. data/spec/internal/tmp/cache/assets/test/sprockets/1a591a26fdf3ed78b25b5ab792d76b7e +0 -0
  311. data/spec/internal/tmp/cache/assets/test/sprockets/1c1167e9384b80e15359a663448a3196 +0 -0
  312. data/spec/internal/tmp/cache/assets/test/sprockets/1d084625b16ac691b3ac53f7c3af9383 +0 -0
  313. data/spec/internal/tmp/cache/assets/test/sprockets/1d2f8185792ec3fccced5ea4e4dd7ff2 +0 -0
  314. data/spec/internal/tmp/cache/assets/test/sprockets/1eeefbd68878e39bf538ca5fb6816827 +0 -0
  315. data/spec/internal/tmp/cache/assets/test/sprockets/1f3f013d8df49445e8f6d26abe4bd0c3 +0 -0
  316. data/spec/internal/tmp/cache/assets/test/sprockets/22589c57b7736c35f126b70fa4f6838d +0 -0
  317. data/spec/internal/tmp/cache/assets/test/sprockets/2458a8aab642c987741b9e5dbadc40be +0 -0
  318. data/spec/internal/tmp/cache/assets/test/sprockets/25c858866fd7a2ca6719b8f57b7da784 +0 -0
  319. data/spec/internal/tmp/cache/assets/test/sprockets/272deddade92ef016e309a2eb7b775cc +0 -0
  320. data/spec/internal/tmp/cache/assets/test/sprockets/293f9259ef62e6c2afde9949c46f0b36 +0 -0
  321. data/spec/internal/tmp/cache/assets/test/sprockets/2b89cef6265da9c35a9c68f4672c7ff5 +0 -0
  322. data/spec/internal/tmp/cache/assets/test/sprockets/2e0105bbafec2286e09b62e5471f4c73 +0 -0
  323. data/spec/internal/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  324. data/spec/internal/tmp/cache/assets/test/sprockets/30980d53fa21cb948c92faff2cf90991 +0 -0
  325. data/spec/internal/tmp/cache/assets/test/sprockets/30b468617659dbbfc89c910dcb076662 +0 -0
  326. data/spec/internal/tmp/cache/assets/test/sprockets/31f03bdc9721687fd98c2b12c036e8a2 +0 -0
  327. data/spec/internal/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  328. data/spec/internal/tmp/cache/assets/test/sprockets/3b707f5b5654437450eb8d718b602724 +0 -0
  329. data/spec/internal/tmp/cache/assets/test/sprockets/4132e961bdf0f2ffa2f96a4c7822e209 +0 -0
  330. data/spec/internal/tmp/cache/assets/test/sprockets/41dd5dbd03cfa3f49e2d7569ffd03f8d +0 -0
  331. data/spec/internal/tmp/cache/assets/test/sprockets/42ad0d7de425a02e6ad4b53f8f96e73a +0 -0
  332. data/spec/internal/tmp/cache/assets/test/sprockets/4749d0a94ef75f86eebb5f638b83188c +0 -0
  333. data/spec/internal/tmp/cache/assets/test/sprockets/47d1bee927ac2da38db4c61acd85d648 +0 -0
  334. data/spec/internal/tmp/cache/assets/test/sprockets/483d9b04ae722b59d47428990e5d67a3 +0 -0
  335. data/spec/internal/tmp/cache/assets/test/sprockets/49dddc872622de1d975f563d9d10d6c9 +0 -0
  336. data/spec/internal/tmp/cache/assets/test/sprockets/49f85e65ad619dd02dc51988e77723d2 +0 -0
  337. data/spec/internal/tmp/cache/assets/test/sprockets/4b1fc3a748e34199e72958c656cc06cf +0 -0
  338. data/spec/internal/tmp/cache/assets/test/sprockets/4c5e67849a42922256c692cebe3625ae +0 -0
  339. data/spec/internal/tmp/cache/assets/test/sprockets/5141429549bc789c5a18f47a631ee310 +0 -0
  340. data/spec/internal/tmp/cache/assets/test/sprockets/541a8ef4d67b7e50312977c96e423051 +0 -0
  341. data/spec/internal/tmp/cache/assets/test/sprockets/55e3bb68ac9cf584a33a458f8a2b1676 +0 -0
  342. data/spec/internal/tmp/cache/assets/test/sprockets/5d53e364ada0619aa4fb30c112b6b102 +0 -0
  343. data/spec/internal/tmp/cache/assets/test/sprockets/611235bfd282813bdfbc998bcbe798e8 +0 -0
  344. data/spec/internal/tmp/cache/assets/test/sprockets/671dbbf33392960f4dfc8dc63bd7019b +0 -0
  345. data/spec/internal/tmp/cache/assets/test/sprockets/6e0879a87dae322b4e32263452ba6b4e +0 -0
  346. data/spec/internal/tmp/cache/assets/test/sprockets/6ff6303a1f21708f6bd3a328290e5d24 +0 -0
  347. data/spec/internal/tmp/cache/assets/test/sprockets/72d162018f00a25977df702c0c32873f +0 -0
  348. data/spec/internal/tmp/cache/assets/test/sprockets/7685f208e89b90425bf76796648ebc28 +0 -0
  349. data/spec/internal/tmp/cache/assets/test/sprockets/7d0dafd1bea0f4da00c580f0f6d664b8 +0 -0
  350. data/spec/internal/tmp/cache/assets/test/sprockets/7d4fe23150294500a7bcd2630667e5c8 +0 -0
  351. data/spec/internal/tmp/cache/assets/test/sprockets/7e48304ca1d04f24b1a3ddfd0e762248 +0 -0
  352. data/spec/internal/tmp/cache/assets/test/sprockets/7e6843e999995e7a8a28abe25d44de70 +0 -0
  353. data/spec/internal/tmp/cache/assets/test/sprockets/7f1cb34f019f0890927d422814194b01 +0 -0
  354. data/spec/internal/tmp/cache/assets/test/sprockets/80fbd1f419ec2c1133c164b09a4faa41 +0 -0
  355. data/spec/internal/tmp/cache/assets/test/sprockets/81ecd9c94638acd3ece19ecac462a723 +0 -0
  356. data/spec/internal/tmp/cache/assets/test/sprockets/82f457826b6170c0fd009ef469f31e16 +0 -0
  357. data/spec/internal/tmp/cache/assets/test/sprockets/8401fd13fe82bb392806930ed02005e1 +0 -0
  358. data/spec/internal/tmp/cache/assets/test/sprockets/89051a85201a06056a8d2b0c9f86cc67 +0 -0
  359. data/spec/internal/tmp/cache/assets/test/sprockets/8b503f71e2ed168eb20ff8cfc20ff3d4 +0 -0
  360. data/spec/internal/tmp/cache/assets/test/sprockets/8c7f3211b77d6699db8521f074d3e871 +0 -0
  361. data/spec/internal/tmp/cache/assets/test/sprockets/967c4a151c00ff79d54eab287c5a949b +0 -0
  362. data/spec/internal/tmp/cache/assets/test/sprockets/9a96d61233d5cc5799c7fc16fd9655c3 +0 -0
  363. data/spec/internal/tmp/cache/assets/test/sprockets/9c4023aaef54415afaf4892ced299f30 +0 -0
  364. data/spec/internal/tmp/cache/assets/test/sprockets/9d2b8824bdb90dbf4cc8b238820f5536 +0 -0
  365. data/spec/internal/tmp/cache/assets/test/sprockets/a16e48f0f9253ddceef37908141e96c3 +0 -0
  366. data/spec/internal/tmp/cache/assets/test/sprockets/a58efe476f9446653ee3ae72f0a61fad +0 -0
  367. data/spec/internal/tmp/cache/assets/test/sprockets/a5b14fb35b6609fda372da27bcd729a7 +0 -0
  368. data/spec/internal/tmp/cache/assets/test/sprockets/a9a428b52df1827450a88aa09e03c638 +0 -0
  369. data/spec/internal/tmp/cache/assets/test/sprockets/a9e4b0d4e6cb29a1cbc5e016fbcc0fb9 +0 -0
  370. data/spec/internal/tmp/cache/assets/test/sprockets/ada353bb8ffe3eb0f2dd479e6d869a70 +0 -0
  371. data/spec/internal/tmp/cache/assets/test/sprockets/aed5b98e50f137ce9635dd1ec2e825ae +0 -0
  372. data/spec/internal/tmp/cache/assets/test/sprockets/b148a5e98ff09a12b6a2139af1e62e46 +0 -0
  373. data/spec/internal/tmp/cache/assets/test/sprockets/b3b3d7f6ecf32ce8216b40eccc5da386 +0 -0
  374. data/spec/internal/tmp/cache/assets/test/sprockets/b9d7d32e6982bd30b74f8e53b9217c17 +0 -0
  375. data/spec/internal/tmp/cache/assets/test/sprockets/baf77fc130c9f3d5a5aa7fb780485a04 +0 -0
  376. data/spec/internal/tmp/cache/assets/test/sprockets/bbb1efb94f355bd05863c07b6f552c58 +0 -0
  377. data/spec/internal/tmp/cache/assets/test/sprockets/bd0dea58c57774fef248f0b0844a4654 +0 -0
  378. data/spec/internal/tmp/cache/assets/test/sprockets/bd4a5121c6495d513075e759f8cca6ed +0 -0
  379. data/spec/internal/tmp/cache/assets/test/sprockets/c052b51dcc86bc3909b8d1f00ec52063 +0 -0
  380. data/spec/internal/tmp/cache/assets/test/sprockets/c6d2f8432ae24aaa27e3c17827d59e9a +0 -0
  381. data/spec/internal/tmp/cache/assets/test/sprockets/c89f789c6b72000300327021b7d4c5c2 +0 -0
  382. data/spec/internal/tmp/cache/assets/test/sprockets/cbb27eb65bd8fb970a233e18ba352e8f +0 -0
  383. data/spec/internal/tmp/cache/assets/test/sprockets/cdf8872264f5f8dd811cdf810f6875a7 +0 -0
  384. data/spec/internal/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  385. data/spec/internal/tmp/cache/assets/test/sprockets/d0196b42a14494523f6911335f616faf +0 -0
  386. data/spec/internal/tmp/cache/assets/test/sprockets/d2473a08bfca80032fc2b63d1b701155 +0 -0
  387. data/spec/internal/tmp/cache/assets/test/sprockets/d510daa6eb0cd4805bff7fd0990dfdb5 +0 -0
  388. data/spec/internal/tmp/cache/assets/test/sprockets/d610f39602b6149ca02638c1728778b5 +0 -0
  389. data/spec/internal/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  390. data/spec/internal/tmp/cache/assets/test/sprockets/d91f67015353a832fa2e3833f735348c +0 -0
  391. data/spec/internal/tmp/cache/assets/test/sprockets/da3f0c774f5df0a1a089c222895df846 +0 -0
  392. data/spec/internal/tmp/cache/assets/test/sprockets/db2cddc1e711c9846ddae11154b7e021 +0 -0
  393. data/spec/internal/tmp/cache/assets/test/sprockets/dc85d6ffbe7a752fa33121a762c54962 +0 -0
  394. data/spec/internal/tmp/cache/assets/test/sprockets/e0e4f218b157ae599e12a247a4cf8710 +0 -0
  395. data/spec/internal/tmp/cache/assets/test/sprockets/e1b5310fd1def23fa4153a98c6f4ec94 +0 -0
  396. data/spec/internal/tmp/cache/assets/test/sprockets/e214f7e5fca115c8dd417b1756b6c74e +0 -0
  397. data/spec/internal/tmp/cache/assets/test/sprockets/e33bc43550b9803eb105d236a57226ae +0 -0
  398. data/spec/internal/tmp/cache/assets/test/sprockets/e60245101cbc86285dea16c630966171 +0 -0
  399. data/spec/internal/tmp/cache/assets/test/sprockets/e9c2a0f2fa471ace3f7ed3a1f1b9ffc5 +0 -0
  400. data/spec/internal/tmp/cache/assets/test/sprockets/ea0ece5befbce765051e27cf991cc805 +0 -0
  401. data/spec/internal/tmp/cache/assets/test/sprockets/ea537228e3763da36f19f836971837bf +0 -0
  402. data/spec/internal/tmp/cache/assets/test/sprockets/eb8e9f5bc31c8df8014af288cf304fa2 +0 -0
  403. data/spec/internal/tmp/cache/assets/test/sprockets/ee98c5174937598bf3cc6cbd06de1930 +0 -0
  404. data/spec/internal/tmp/cache/assets/test/sprockets/efcc92e2af63ff01bdb496a5cd405447 +0 -0
  405. data/spec/internal/tmp/cache/assets/test/sprockets/f43e6de318148b8815fa65c6fd6ea092 +0 -0
  406. data/spec/internal/tmp/cache/assets/test/sprockets/f4dfad893ed757565a389ceceeadcbc1 +0 -0
  407. data/spec/internal/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  408. data/spec/internal/tmp/cache/assets/test/sprockets/f96152606fbc5602cd65176f6098f69a +0 -0
  409. data/spec/internal/tmp/cache/assets/test/sprockets/fb0dfe7bc7417e1329d9cc6c913584e9 +0 -0
  410. data/spec/internal/tmp/cache/assets/test/sprockets/fb4a42a3e047a7a0d87f3ad55c8d267a +0 -0
  411. data/spec/internal/tmp/cache/assets/test/sprockets/fd9f0ae81e726ff65daa70db0055de1a +0 -0
  412. data/spec/internal/tmp/cache/assets/test/sprockets/fecd72966f3f2994e3d5894e05d76bd8 +0 -0
  413. data/spec/internal/tmp/cache/assets/test/sprockets/ff775ea5449360537913ffb102837dfa +0 -0
  414. data/spec/repository_models/generic_work_spec.rb +92 -0
  415. data/spec/repository_models/hydramata/group_membership_form_spec.rb +86 -0
  416. data/spec/repository_models/hydramata/group_spec.rb +91 -0
  417. data/spec/repository_models/person_spec.rb +44 -0
  418. data/spec/support/shared/shared_examples_is_a_curation_concern_controller.rb +23 -1
  419. data/spec/support/shared/shared_examples_remotely_identified.rb +10 -2
  420. metadata +640 -21
  421. data/app/controllers/curate/organizations_controller.rb +0 -96
  422. data/app/helpers/curate/organizations_helper.rb +0 -13
  423. data/app/repository_models/organization.rb +0 -17
  424. data/app/views/curate/organizations/_button_create_organization.html.erb +0 -1
  425. data/app/views/curate/organizations/edit.html.erb +0 -4
  426. data/app/views/curate/organizations/index.html.erb +0 -11
  427. data/app/views/curate/organizations/show.html.erb +0 -27
  428. data/app/views/organizations/_organization.html.erb +0 -30
  429. data/spec/controllers/curate/organizations_controller_spec.rb +0 -50
  430. data/spec/factories/organizations_factory.rb +0 -21
  431. data/spec/repository_models/organization_spec.rb +0 -66
@@ -0,0 +1,953 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <server xmlns="http://www.fedora.info/definitions/1/0/config/" class="org.fcrepo.server.BasicServer">
3
+ <param name="datastreamExtensionMappingSource" value="mime-to-extensions.xml">
4
+ <comment>Source of mappings from MIMETYPE to file extension</comment>
5
+ </param>
6
+ <param name="datastreamExtensionMappingId" value="ifmissing">
7
+ <comment>Controls filename extension mapping when the datastream ID is used
8
+ as the source of the filename. Values are as above.</comment>
9
+ </param>
10
+ <param name="httpClientMaxConnectionsPerHost" value="5">
11
+ <comment>Maximum number of Fedora http client connections allowed to a given host.</comment>
12
+ </param>
13
+ <param name="httpClientSocketTimeoutSecs" value="120">
14
+ <comment>Number of seconds Fedora http client will wait for data coming across an
15
+ established http connection.</comment>
16
+ </param>
17
+ <param name="fedoraServerHost" value="localhost">
18
+ <comment>Defines the host name for the Fedora server, as seen from the
19
+ outside world.</comment>
20
+ </param>
21
+ <param name="datastreamExtensionMappingLabel" value="always">
22
+ <comment>Controls filename extension mapping when the datastream label is used
23
+ as the source of the filename. Values are always: always generate an extension
24
+ based on the MIMETYPE, using the default extension if none can be determined;
25
+ ifmissing: generate an extension if the filename obtained from the source does not
26
+ already contain one (again returning the default if there is no MIMETYPE-to-extension
27
+ mapping is found); never: never generate an extension, use the filename from the source
28
+ as-is</comment>
29
+ </param>
30
+ <param name="httpClientMaxFollowRedirects" value="3">
31
+ <comment>Maximun number of redirects the Fedora http client will follow (only if
32
+ httpClientFollowRedirects is set to true.)</comment>
33
+ </param>
34
+ <param name="httpClientUserAgent" value="Fedora">
35
+ <comment>The value to be set for the User-Agent HTTP request header.</comment>
36
+ </param>
37
+ <param name="httpClientMaxTotalConnections" value="5">
38
+ <comment>Maximum number of total Fedora http client connections allowed at once.</comment>
39
+ </param>
40
+ <param name="datastreamFilenameSource" value="rels label id">
41
+ <comment>determines the source of the filename generated when download=true
42
+ on a datastream dissemination. Value is space separated list of label: use the datastream label;
43
+ id: use the datastream ID; rels: use the value defined in RELS-INT. Each
44
+ source is checked in order, and the first containing a value is used. Omit
45
+ any of the sources if that source is never to be used. If no sources are to be used,
46
+ and just the default filename and extension below are to be used, specify &quot; &quot;.</comment>
47
+ </param>
48
+ <param name="adminEmailList" value="bob@example.org sally@example.org">
49
+ <comment>Defines one or more email addresses for server administrators;
50
+ list is space delimited.</comment>
51
+ </param>
52
+ <param name="datastreamMediationLimit" value="5000">
53
+ <comment>Determines the time interval in which external mechanisms must
54
+ respond to requests by the Fedora server. The value is specified in
55
+ milliseconds. The value specified should be set high enough to allow
56
+ for an average response time from any single external mechanisms. Note
57
+ this value must be less than the limit specified for the
58
+ datastreamExpirationLimit.</comment>
59
+ </param>
60
+ <param name="fedoraServerPort" value="8983">
61
+ <comment>Defines the port number on which the Fedora server runs;
62
+ default is 8080.</comment>
63
+ </param>
64
+ <param name="fedoraRedirectPort" value="8443">
65
+ <comment>Defines the redirect port of the Fedora sever; default is 8443.</comment>
66
+ </param>
67
+ <param name="httpClientFollowRedirects" value="true">
68
+ <comment>Should the Fedora http client follow redirects?</comment>
69
+ </param>
70
+ <param name="datastreamExtensionMappingDefault" value="never">
71
+ <comment>Controls filename extension mapping when no filename can be determined from
72
+ the sources listed in datastreamFilenameSource. Values are always: always generate an extension
73
+ based on the MIMETYPE (using the default if no appropriate mapping is specified);
74
+ never: never generate an extension.</comment>
75
+ </param>
76
+ <param name="datastreamContentDispositionInlineEnabled" value="true">
77
+ <comment>determines if a content-disposition header specifying &quot;inline&quot; and
78
+ a filename is added to the response for the REST API getDatastreamDissemination
79
+ when no query parameter of download=true is specified. Browser support for
80
+ recognising a filename in case of &quot;inline&quot; content disposition is patchy,
81
+ so you may wish to disable the content disposition header in this case and only
82
+ have it provided when download=true is specified, in which case the content disposition
83
+ of &quot;attachment&quot; will be used; which is generally supported.</comment>
84
+ </param>
85
+ <param name="fedoraAppServerContext" value="fedora">
86
+ <comment>Defines the context name for the Fedora server within the
87
+ application server. If set to eg &quot;myfedora&quot; the URL for Fedora will result
88
+ in http[s]://fedoraServerHost[:fedoraServerPort]/myfedora.</comment>
89
+ </param>
90
+ <param name="fedoraShutdownPort" value="8005">
91
+ <comment>Defines the port number used to shutdown the Fedora sever;
92
+ default is 8005.</comment>
93
+ </param>
94
+ <param name="datastreamDefaultExtension" value="bin">
95
+ <comment>Extension to use when none can be determined from mappings</comment>
96
+ </param>
97
+ <param name="datastreamDefaultFilename" value="download">
98
+ <comment>Filename to use for datastream downloads when none can be determined from the
99
+ sources listed in datastreamFilenameSource.</comment>
100
+ </param>
101
+ <param name="datastreamExpirationLimit" value="300">
102
+ <comment>Controls the size of the datastream mediation hash by removing
103
+ entries outside the specified threshold. The value is specified in
104
+ seconds. Note this value must be greater than the limit specified for
105
+ the datastreamMediationLimit.</comment>
106
+ </param>
107
+ <param name="datastreamExtensionMappingRels" value="never">
108
+ <comment>Controls filename extension mapping when RELS-INT is used
109
+ as the source of the filename. Values are as above.</comment>
110
+ </param>
111
+ <param name="httpClientTimeoutSecs" value="20">
112
+ <comment>Number of seconds Fedora http client will wait for a connection before timing
113
+ out.</comment>
114
+ </param>
115
+ <param name="repositoryName" value="Fedora Repository">
116
+ <comment>Defines a human readable name for the Fedora server; default is
117
+ Fedora Repository.</comment>
118
+ </param>
119
+ <module role="org.fcrepo.server.security.Authorization" class="org.fcrepo.server.security.DefaultAuthorization">
120
+ <comment>Builds and manages Fedora's authorization structure.</comment>
121
+ <param name="REPOSITORY-POLICY-GUITOOL-POLICIES-DIRECTORY" value="data/fedora-xacml-policies/repository-policies-generated-by-policyguitool" isFilePath="true">
122
+ <comment>This parameter is for future use.</comment>
123
+ </param>
124
+ <param name="POLICY-SCHEMA-PATH" value="xsd/cs-xacml-schema-policy-01.xsd"/>
125
+ <param name="ENFORCE-MODE" value="permit-all-requests"/>
126
+ <param name="VALIDATE-OBJECT-POLICIES-FROM-DATASTREAM" value="false"/>
127
+ <param name="XACML-COMBINING-ALGORITHM" value="com.sun.xacml.combine.OrderedDenyOverridesPolicyAlg"/>
128
+ <param name="VALIDATE-OBJECT-POLICIES-FROM-FILE" value="false"/>
129
+ <param name="VALIDATE-REPOSITORY-POLICIES" value="true"/>
130
+ <param name="REPOSITORY-POLICIES-DIRECTORY" value="data/fedora-xacml-policies/repository-policies" isFilePath="true"/>
131
+ </module>
132
+ <module role="org.fcrepo.server.security.BackendSecurity" class="org.fcrepo.server.security.DefaultBackendSecurity">
133
+ <comment>Description: Interface to the backend service security
134
+ configuration. This module initializes backend service security
135
+ information in the server by parsing the beSecurity configuration file.
136
+ This file is located in the distribution in
137
+ $FEDORA_HOME/dist/server/config/beSecurity.xml. The configuration file
138
+ is read once at server startup.</comment>
139
+ <param name="beSecurity_char_encoding" value="utf-8">
140
+ <comment>The character encoding used for the beSecurity
141
+ configuration file. The default is &quot;utf-8&quot;. The value
142
+ specified must correspond to the character encoding used in the
143
+ beSecurity configuration file.</comment>
144
+ </param>
145
+ <param name="beSecurity_validation" value="false">
146
+ <comment>Controls whether beSecurity config file is validated
147
+ against the beSecurityDescription schema. The default is
148
+ &quot;false&quot;. Valid values are &quot;true&quot; or
149
+ &quot;false&quot;.</comment>
150
+ </param>
151
+ </module>
152
+ <module role="org.fcrepo.server.storage.DOManager" class="org.fcrepo.server.storage.DefaultDOManager">
153
+ <comment>The interface to the storage subsystem. This provides
154
+ context-appropriate DOReaders and DOWriters for reflecting on and
155
+ writing to the objects stored in the repository. It also provides
156
+ methods for reflecting on the contents of the repository as a whole..</comment>
157
+ <param name="defaultDCControlGroup" value="X">
158
+ <comment>The control group to use for the system-generated DC datastream
159
+ if no DC datastream is present on ingest. Must be &quot;X&quot; or &quot;M&quot;.</comment>
160
+ </param>
161
+ <param name="gSearchPassword" value="examplePassword">
162
+ <comment>The associated password for accessing the REST endpoint
163
+ of the Fedora Generic Search service. This parameter is only
164
+ required if GSearchDOManager is used, and the service requires
165
+ authentication.</comment>
166
+ </param>
167
+ <param name="storageCharacterEncoding" value="UTF-8">
168
+ <comment>If the serialization format is text-based, this is the
169
+ character encoding that should be used. Default is UTF-8.</comment>
170
+ </param>
171
+ <param name="gSearchUsername" value="exampleUsername">
172
+ <comment>The username for accessing the REST endpoint of the
173
+ Fedora Generic Search service. This parameter is only required if
174
+ GSearchDOManager is used, and the service requires
175
+ authentication.</comment>
176
+ </param>
177
+ <param name="storagePool" value="localDerbyPool">
178
+ <comment>The named connection pool from which read/write database
179
+ connections are to be provided for the storage subsystem (see the
180
+ ConnectionPoolManager module). Default is the default provided by the
181
+ ConnectionPoolManager.</comment>
182
+ </param>
183
+ <param name="fedoraStorageHintProvider" value="org.fcrepo.server.storage.NullStorageHintsProvider">
184
+ <comment>Hints are gathered and passed to the underline storage systems (only Akubra for now).
185
+ These are meta data or contextual information about object or datastream to be added or updated.
186
+ The default implementation is NullStorageHintsProvider; it provides no hints. You you can implement
187
+ your own FedoraStorageHintProvider and drop your implementation to the $CATALINA_HOME/webapps/fedora/WEB_INF/classes
188
+ directory (unpackaged), or the $CATALINA_HOME/webapps/fedora/WEB_INF/lib director (packaged).</comment>
189
+ </param>
190
+ <param name="gSearchRESTURL" value="http://localhost:8080/fedoragsearch/rest">
191
+ <comment>The REST endpoint of the Fedora Generic Search service.
192
+ This parameter is only required if GSearchDOManager is
193
+ used.</comment>
194
+ </param>
195
+ <param name="defaultExportFormat" value="info:fedora/fedora-system:FOXML-1.1"/>
196
+ <param name="defaultRELSControlGroup" value="X">
197
+ <comment>The control group to use for system-generated RELS-EXT and
198
+ RELS-INT datastreams where these are not already present when
199
+ adding relationships via addRelationship. Must be &quot;X&quot; or &quot;M&quot;.</comment>
200
+ </param>
201
+ <param name="pidNamespace" value="changeme">
202
+ <comment>This is the namespace id for pids of newly-created objects.
203
+ This should be unique for a repository. It can be from 1 to 17
204
+ characters, and may only contain A-Z, a-z, 0-9, &apos;.&apos;, or &apos;-&apos; (dash).</comment>
205
+ </param>
206
+ </module>
207
+ <module role="org.fcrepo.server.management.Management" class="org.fcrepo.server.management.ManagementModule">
208
+ <comment>The management subsystem. This implements the methods necessary
209
+ to fulfill API-M requests without regard to:
210
+ - how the service is exposed
211
+ - how bytestreams and java types might be marshalled/demarshalled over the wire
212
+ - how the storage subsystem is implemented.</comment>
213
+ <param name="purgeDelayInMillis" value="60000">
214
+ <comment>Optional, default is 60000 (1 minute).
215
+ This specifies the amount of time between checks to remove
216
+ temporary files uploaded via the API-M upload interface. During
217
+ each check, old files whose age exceeds uploadStorageMinutes
218
+ will be removed.</comment>
219
+ </param>
220
+ <param name="decorator1" value="org.fcrepo.server.messaging.NotificationInvocationHandler"/>
221
+ <param name="checksumAlgorithm" value="MD5">
222
+ <comment>Specifies which checksumming algorithm is to be used when
223
+ automatically computing checksums as specified by the above
224
+ parameter. Valid values are: MD5 SHA-1 SHA-256 SHA-384 SHA-512.</comment>
225
+ </param>
226
+ <param name="uploadStorageMinutes" value="5">
227
+ <comment>Optional, default is 5.
228
+ This specifies the minimum amount of time that each uploaded
229
+ file should be kept in temporary storage.</comment>
230
+ </param>
231
+ <param name="autoChecksum" value="false">
232
+ <comment>Controls whether a checksum is automatically computed for
233
+ every datastream as the datastream is added to the repository. This
234
+ will allow the integrity of datastream contents to be periodically
235
+ checked to insure the object is not corrupted.</comment>
236
+ </param>
237
+ </module>
238
+ <module role="org.fcrepo.server.access.Access" class="org.fcrepo.server.access.DefaultAccess">
239
+ <comment>Description: The access subsystem. This implements the methods
240
+ necessary to fulfill API-A requests without regard to:
241
+ - how the service is exposed
242
+ - how bytestreams and java types might be marshalled/demarshalled
243
+ over the wire.</comment>
244
+ <param name="doMediateDatastreams" value="false">
245
+ <comment>A boolean switch indicating whether Datastream Mediation is
246
+ activated or not. Datastream Mediation is required if using basic
247
+ authentication for API-A. When basic authentication is enabled for
248
+ API-A, backend services used by custom disseminations may or may not be
249
+ capable of authenticating with the Fedora server. Datastream mediation
250
+ coupled with the backend service configuration information in the
251
+ beSecurity.xml file enables the Fedora server to determine which backend
252
+ services are required to authenticate and which ones are allowed to
253
+ connect without authentication. Datastream mediation provides additional
254
+ repository security by not exposing the physical location of Referenced
255
+ Content datastreams to external mechanisms(services). Instead of
256
+ exposing the actual physical location of Referenced Content datastreams,
257
+ Datastream Mediation functions as a proxy requiring all external
258
+ services to communicate through the Fedora server to resolve the
259
+ location of Referenced Content datastreams.
260
+
261
+ IMPORTANT: For Datastream Mediation to function, the Fedora server must
262
+ be internet accessible using the configured name for fedoraServerHost
263
+ and fedoraServerPort. For example, using the default fedoraServerHost
264
+ value of &quot;localhost&quot; will not work if you have remote backend services
265
+ since the hostname of &quot;localhost&quot; will not be resolvable as the Fedora
266
+ server by the remote backend services. This requirement can be difficult
267
+ to satisfy if the Fedora server is located behind a firewall and you do
268
+ not have ready access to the firewall&apos;s configuration to enable the
269
+ required access. If the Fedora server is behind a firewall and you have
270
+ no access to the firewall&apos;s configuration, you are limited to keeping
271
+ Datastream Mediation turned off. Note that this will also prevent you
272
+ from using basic authentication with API-A. The default value of
273
+ doMediateDatastreams is false.</comment>
274
+ </param>
275
+ </module>
276
+ <module role="org.fcrepo.server.access.DynamicAccess" class="org.fcrepo.server.access.DynamicAccessModule">
277
+ <comment>The dynamic behavior module for the access subsystem. This
278
+ implements the methods necessary to fulfill API-A requests without
279
+ regard to:
280
+ - dynamically associating a default behavior definition and mechanism with objects
281
+ - (Future) dynamically associating other behavior definitions and mechanisms
282
+ with objects
283
+ - running disseminations of dynamic behaviors</comment>
284
+ <param name="fedora-system:1" value="org.fcrepo.server.access.internalservices.Bootstrap">
285
+ <comment>The interface that defines the methods of the bootstrap
286
+ disseminator. These methods are &quot;built-in&quot; to the Fedora system, and
287
+ are dynamically associated with every behavior definition and
288
+ behavior mechanism object.</comment>
289
+ </param>
290
+ <param name="fedora-system:2" value="org.fcrepo.server.access.internalservices.BootstrapImpl">
291
+ <comment>The class that implements the methods of the bootstrap
292
+ disseminator. These method implementations are &quot;built-in&quot; to the
293
+ Fedora system, and are dynamically associated with every behavior
294
+ definition and behavior mechanism object. This class can be thought
295
+ of as implementing an &quot;internal service&quot; whereas other disseminators
296
+ use external services (described by WSDL) to do their work.</comment>
297
+ </param>
298
+ <param name="fedora-system:3" value="org.fcrepo.server.access.defaultdisseminator.DefaultDisseminator">
299
+ <comment>The interface that defines the methods of the default
300
+ disseminator. These methods are &quot;built-in&quot; to the Fedora system, and
301
+ are dynamically associated with every object.</comment>
302
+ </param>
303
+ <param name="fedora-system:4" value="org.fcrepo.server.access.defaultdisseminator.DefaultDisseminatorImpl">
304
+ <comment>The class that implements the methods of the default
305
+ disseminator. These method implementations are &quot;built-in&quot; to the
306
+ Fedora system, and are dynamically associated with every object.
307
+ This class can be though of as implementing an &quot;internal service&quot;
308
+ whereas other disseminators use external services (described by
309
+ WSDL) to do their work.</comment>
310
+ </param>
311
+ </module>
312
+ <module role="org.fcrepo.server.search.FieldSearch" class="org.fcrepo.server.search.FieldSearchSQLModule">
313
+ <comment>Supports the API-A simpleSearch and advancedSearch methods.</comment>
314
+ <param name="indexDCFields" value="true">
315
+ <comment>(optional, default is true) Whether the content of the DC
316
+ datastream should be examined and the contents indexed, for each object.
317
+ You may wish to save time and space by disabling DC field indexing,
318
+ particularly if you have an external search service (such as Fedora
319
+ Generic Search) that already fulfills this need.
320
+ Note: If you change this value on a Fedora repository that has been
321
+ running for some time, you will need to perform a SQL rebuild using the
322
+ Fedora Rebuilder tool if you want to change objects that have already
323
+ been ingested.</comment>
324
+ </param>
325
+ <param name="connectionPool" value="localDerbyPool">
326
+ <comment>(optional) To make unspecified, comment out or delete the
327
+ whole param line as opposed to using an empty string,
328
+ default=ConnectionPoolManager&apos;s default) The connectionPool
329
+ providing the connection to the database to be used. Warning: When
330
+ setting these values, keep in mind that while a session is not timed
331
+ out (maxSecondsPerSession seconds haven&apos;t elapsed, and not all
332
+ results have been requested), a connection from the pool is tied up.
333
+ Therefore, the connectionPool should be at least of size n, large
334
+ enough to accomodate n simultaneous search sessions. The longer
335
+ maxSecondsPerSession is, the more chance you have of tying up all
336
+ available connections from the pool. Therefore, keep
337
+ maxSecondsPerSession fairly low, but still reasonable for an
338
+ automated program or user to serially get a long list of results,
339
+ and make sure you have a connectionPool large enough to accomodate
340
+ your users.</comment>
341
+ </param>
342
+ <param name="maxSecondsPerSession" value="500">
343
+ <comment>(required, must be &gt; 0)
344
+ The maximum number of seconds that the server guarantees subsequent
345
+ search results may be obtained. This is only used in cases where the
346
+ number of results is greater than maxResults (as specified by the
347
+ server [above] or the client [in the search request]).</comment>
348
+ </param>
349
+ <param name="maxResults" value="100">
350
+ <comment>(required, must be &gt; 0)
351
+ The maximum number of records to
352
+ return as the result of a search. Even if a client requests more
353
+ results at a time, this is the cutoff value.</comment>
354
+ </param>
355
+ </module>
356
+ <module role="org.fcrepo.server.resourceIndex.ResourceIndex" class="org.fcrepo.server.resourceIndex.ResourceIndexModule">
357
+ <comment>Supports the ResourceIndex.</comment>
358
+ <param name="level" value="0">
359
+ <comment>(required)
360
+ Index level. Currently, only 0, and 1 are supported levels.
361
+ 0 = off and 1 = on.
362
+ WARNING: changing the level (except to 0) requires
363
+ running the Resource Index Rebuilder.</comment>
364
+ </param>
365
+ <param name="syncUpdates" value="false">
366
+ <comment>(optional, default is false)
367
+ Whether to flush the triple buffer before
368
+ returning from object modification operations.
369
+ Specifying this as true will ensure that RI queries
370
+ immediately reflect the latest triples.
371
+ Specifying false will not provide this guarantee,
372
+ but can significantly reduce roundtrip time for
373
+ API-M operations (depending on the triplestore
374
+ implementation).</comment>
375
+ </param>
376
+ <param name="datastore" value="localMulgaraTriplestore">
377
+ <comment>(required)
378
+ Name of the triplestore to use. WARNING: changing the
379
+ triplestore running the Resource Index Rebuilder.</comment>
380
+ </param>
381
+ <param name="alias:test" value="http://example.org/terms#">
382
+ <comment>(optional) Aliases that can be used for queries. The param
383
+ name of an alias starts with the string &quot;alias:&quot; and is followed by
384
+ the name of the alias (shortcut) for the value, which is a URI
385
+ prefix. For example: name=&quot;alias:test&quot;
386
+ value=&quot;http://example.org/terms#&quot; will allow a query to use
387
+ test:apple instead of http://example.org/terms#apple</comment>
388
+ </param>
389
+ </module>
390
+ <module role="org.fcrepo.oai.OAIProvider" class="org.fcrepo.server.oai.FedoraOAIProviderModule">
391
+ <comment>Description: Exposes the repository for OAI harvesters.</comment>
392
+ <param name="maxRecords" value="100"/>
393
+ <param name="friends" value="http://arXiv.org/oai2 http://memory.loc.gov/cgi-bin/oai2_0"/>
394
+ <param name="adminEmails" value="oai-admin@example.org bob@example.org"/>
395
+ <param name="repositoryDomainName" value="example.org"/>
396
+ <param name="maxHeaders" value="100"/>
397
+ <param name="repositoryName" value="Your Fedora Repository Name Here"/>
398
+ </module>
399
+ <module role="org.fcrepo.server.storage.translation.DOTranslator" class="org.fcrepo.server.storage.translation.DOTranslatorModule">
400
+ <comment>Supports translation from DigitalObject to a stream of some
401
+ format, and vice-versa. The parameters below specify
402
+ serializer/deserializer classes to be used for a given format. Those
403
+ classes must implement the DOSerializer/DODeserializer interfaces.</comment>
404
+ <param name="serializer_info:fedora/fedora-system:ATOM-1.1" value="org.fcrepo.server.storage.translation.Atom1_1DOSerializer"/>
405
+ <param name="deserializer_info:fedora/fedora-system:FOXML-1.1" value="org.fcrepo.server.storage.translation.FOXML1_1DODeserializer"/>
406
+ <param name="serializer_info:fedora/fedora-system:METSFedoraExt-1.0" value="org.fcrepo.server.storage.translation.METSFedoraExt1_0DOSerializer"/>
407
+ <param name="deserializer_info:fedora/fedora-system:METSFedoraExt-1.1" value="org.fcrepo.server.storage.translation.METSFedoraExt1_1DODeserializer"/>
408
+ <param name="serializer_info:fedora/fedora-system:METSFedoraExt-1.1" value="org.fcrepo.server.storage.translation.METSFedoraExt1_1DOSerializer"/>
409
+ <param name="deserializer_info:fedora/fedora-system:METSFedoraExt-1.0" value="org.fcrepo.server.storage.translation.METSFedoraExt1_0DODeserializer"/>
410
+ <param name="serializer_info:fedora/fedora-system:FOXML-1.0" value="org.fcrepo.server.storage.translation.FOXML1_0DOSerializer"/>
411
+ <param name="deserializer_info:fedora/fedora-system:ATOMZip-1.1" value="org.fcrepo.server.storage.translation.AtomZip1_1DODeserializer"/>
412
+ <param name="serializer_info:fedora/fedora-system:FOXML-1.1" value="org.fcrepo.server.storage.translation.FOXML1_1DOSerializer"/>
413
+ <param name="deserializer_info:fedora/fedora-system:ATOM-1.1" value="org.fcrepo.server.storage.translation.Atom1_1DODeserializer"/>
414
+ <param name="deserializer_info:fedora/fedora-system:FOXML-1.0" value="org.fcrepo.server.storage.translation.FOXML1_0DODeserializer"/>
415
+ <param name="serializer_info:fedora/fedora-system:ATOMZip-1.1" value="org.fcrepo.server.storage.translation.AtomZip1_1DOSerializer"/>
416
+ </module>
417
+ <module role="org.fcrepo.server.management.PIDGenerator" class="org.fcrepo.server.management.BasicPIDGenerator">
418
+ <comment>The pid generator.</comment>
419
+ <param name="pidgen_log_dir" value="pidgen"/>
420
+ </module>
421
+ <module role="org.fcrepo.server.messaging.Messaging" class="org.fcrepo.server.messaging.MessagingModule">
422
+ <comment>Fedora's Java Messaging Service (JMS) Module</comment>
423
+ <param name="enabled" value="false"/>
424
+ <param name="java.naming.factory.initial" value="org.apache.activemq.jndi.ActiveMQInitialContextFactory"/>
425
+ <param name="java.naming.provider.url" value="vm:(broker:(tcp://localhost:61616))"/>
426
+ <param name="datastore1" value="apimUpdateMessages">
427
+ <comment>A datastore representing a JMS Destination for APIM events which update the repository</comment>
428
+ </param>
429
+ <param name="datastore2" value="apimAccessMessages">
430
+ <comment>A datastore representing a JMS Destination for APIM events which do not update the repository</comment>
431
+ </param>
432
+ </module>
433
+ <module role="org.fcrepo.server.storage.ConnectionPoolManager" class="org.fcrepo.server.storage.ConnectionPoolManagerImpl">
434
+ <comment>This module facilitates obtaining ConnectionPools</comment>
435
+ <param name="defaultPoolName" value="localDerbyPool"/>
436
+ <param name="poolNames" value="localDerbyPool"/>
437
+ </module>
438
+ <module role="org.fcrepo.server.validation.DOValidator" class="org.fcrepo.server.validation.DOValidatorModule">
439
+ <comment>Description: Supports validation of digital objects, including
440
+ XML Schema validation, Schematron validation (to Fedora Rules schema
441
+ written in Schematron language), and other programatic validation
442
+ including referential integrity checking of existence and
443
+ availability of distributed data and/or services.</comment>
444
+ <param name="tempDir" value="work">
445
+ <comment>(required)
446
+ This is a directory that the validation module can use as a work space, as
447
+ when it must write a temporary file.</comment>
448
+ </param>
449
+ <param name="rules_info:fedora/fedora-system:ATOM-1.1" value="schematron/atom-bogus.xml">
450
+ <comment>The local path to the Schematron Rules used for
451
+ Fedora-specific on Atom XML files.</comment>
452
+ </param>
453
+ <param name="schtron_preprocessor" value="schematron/preprocessor.xslt"/>
454
+ <param name="rules_info:fedora/fedora-system:ATOMZip-1.1" value="schematron/atom-bogus.xml">
455
+ <comment>The local path to the Schematron Rules used for
456
+ Fedora-specific on Atom Zip files.</comment>
457
+ </param>
458
+ <param name="rules_info:fedora/fedora-system:FOXML-1.1" value="schematron/foxmlRules1-1.xml">
459
+ <comment>The local path to the Schematron Rules used for
460
+ Fedora-specific validation on FOXML 1.1 XML files.</comment>
461
+ </param>
462
+ <param name="rules_info:fedora/fedora-system:FOXML-1.0" value="schematron/foxmlRules1-0.xml">
463
+ <comment>The local path to the Schematron Rules used for
464
+ Fedora-specific validation on FOXML 1.0 XML files.</comment>
465
+ </param>
466
+ <param name="xsd_info:fedora/fedora-system:METSFedoraExt-1.1" value="xsd/mets-fedora-ext1-1.xsd">
467
+ <comment>The local path for the Fedora-METS XML
468
+ schema used to do XML schema validation of digital objects.</comment>
469
+ </param>
470
+ <param name="xsd_info:fedora/fedora-system:METSFedoraExt-1.0" value="xsd/mets-fedora-ext.xsd">
471
+ <comment>The local path for the Fedora-METS 1.0 XML
472
+ schema used to do XML schema validation of digital objects.</comment>
473
+ </param>
474
+ <param name="xsd_xacml_policy1.0" value="xsd/cs-xacml-schema-policy-1.0.xsd">
475
+ <comment>The local path for the OASIS XACML XML policy schema
476
+ used to do XML schema validation of XACML policies.</comment>
477
+ </param>
478
+ <param name="xsd_info:fedora/fedora-system:FOXML-1.1" value="xsd/foxml1-1.xsd">
479
+ <comment>The local path for the Fedora FOXML 1.1 XML schema
480
+ used to do XML schema validation of digital objects</comment>
481
+ </param>
482
+ <param name="xsd_info:fedora/fedora-system:FOXML-1.0" value="xsd/foxml1-0.xsd">
483
+ <comment>The local path for the Fedora FOXML 1.0 XML schema
484
+ used to do XML schema validation of digital objects</comment>
485
+ </param>
486
+ <param name="xsd_info:fedora/fedora-system:ATOM-1.1" value="xsd/atom.xsd">
487
+ <comment>The local path for the Atom XML schema used to do XML
488
+ schema validation of digital objects</comment>
489
+ </param>
490
+ <param name="rules_info:fedora/fedora-system:METSFedoraExt-1.0" value="schematron/metsExtRules1-0.xml">
491
+ <comment>The local path to the Schematron Rules used for
492
+ Fedora-specific validation on Fedora-METS 1.0 XML files.</comment>
493
+ </param>
494
+ <param name="xsd_info:fedora/fedora-system:ATOMZip-1.1" value="xsd/atom.xsd">
495
+ <comment>The local path for the Atom XML schema used to do XML
496
+ schema validation of digital objects</comment>
497
+ </param>
498
+ <param name="rules_info:fedora/fedora-system:METSFedoraExt-1.1" value="schematron/metsExtRules1-1.xml">
499
+ <comment>The local path to the Schematron Rules used for
500
+ Fedora-specific validation on Fedora-METS XML files.</comment>
501
+ </param>
502
+ </module>
503
+ <module role="org.fcrepo.server.storage.ExternalContentManager" class="org.fcrepo.server.storage.DefaultExternalContentManager">
504
+ <comment>This module facilitates obtaining external content via HTTP</comment>
505
+ </module>
506
+ <datastore id="localMySQLPool">
507
+ <comment>MySQL database on localhost with db name of fedora3. Each
508
+ connection pool instance has several configuration parameter that
509
+ can be used to tune the options for the connection pool. It is
510
+ recommended that you not change the default values unless you are
511
+ trying to address a specific performance issue. For additional
512
+ information regarding connection pool options, refer to the Apache
513
+ Commons Pool API documentation at
514
+ http://jakarta.apache.org/commons/pool/apidocs/index.html.</comment>
515
+ <param name="maxIdle" value="10">
516
+ <comment>The maximum number of idle instances in pool.</comment>
517
+ </param>
518
+ <param name="testOnBorrow" value="true">
519
+ <comment>When true objects are validated before borrowed from the
520
+ pool.</comment>
521
+ </param>
522
+ <param name="testWhileIdle" value="true">
523
+ <comment>When true, objects are validated by the idle object evictor
524
+ thread.</comment>
525
+ </param>
526
+ <param name="validationQuery" value="select 1">
527
+ <comment>The query to run when validating connections.
528
+ Connections are validated according to the testOnBorrow,
529
+ testOnReturn, and testWhileIdle configuration values.
530
+ If this is specified, it must be a SQL SELECT statement
531
+ that returns at least one row. If this is NOT specified,
532
+ validation tests will not be run.</comment>
533
+ </param>
534
+ <param name="ddlConverter" value="org.fcrepo.server.utilities.MySQLDDLConverter"/>
535
+ <param name="dbUsername" value="fedoraAdmin">
536
+ <comment>The database user name.</comment>
537
+ </param>
538
+ <param name="testOnReturn" value="true">
539
+ <comment>When true, objects are validated before returned to the
540
+ pool.</comment>
541
+ </param>
542
+ <param name="maxActive" value="100">
543
+ <comment>The maximum number of active instances in pool.</comment>
544
+ </param>
545
+ <param name="dbPassword" value="fedoraAdmin">
546
+ <comment>The database password.</comment>
547
+ </param>
548
+ <param name="jdbcURL" value="jdbc:mysql://localhost/fedora3?useUnicode=true&amp;characterEncoding=UTF-8&amp;autoReconnect=true">
549
+ <comment>The JDBC connection URL.</comment>
550
+ </param>
551
+ <param name="whenExhaustedAction" value="1">
552
+ <comment>Action to take when a new object is requested and the the pool has
553
+ reached maximum number of active objects. Valid values are:
554
+ 0 (fail i.e., throw Exception)
555
+ 1 (block i.e., wait until pool resources are freed)
556
+ 2 (grow i.e., increase the size of the pool).</comment>
557
+ </param>
558
+ <param name="numTestsPerEvictionRun" value="3">
559
+ <comment>The number of objects to be examined on each run of idle
560
+ evictor thread (if applicable). A value less than zero indicates
561
+ that ceil(numIdle)/abs(numTestsPerEvictionRun) will be run.</comment>
562
+ </param>
563
+ <param name="jdbcDriverClass" value="com.mysql.jdbc.Driver">
564
+ <comment>The JDBC driver class name.</comment>
565
+ </param>
566
+ <param name="maxWait" value="-1">
567
+ <comment>The maximum amount of time in milliseconds the
568
+ borrowObject() method should wait before throwing an Exception when
569
+ whenExhaustedAction is set to WHEN_EXHAUSTED_BLOCK. A value less
570
+ than zero indicates block indefinitely.</comment>
571
+ </param>
572
+ <param name="minIdle" value="0">
573
+ <comment>The minimum of idle instances in pool.</comment>
574
+ </param>
575
+ <param name="minEvictableIdleTimeMillis" value="1800000">
576
+ <comment>The minimum amount of time in milliseconds an object can be
577
+ idle in pool before eligible for eviction (if applicable). A value
578
+ less than zero indicates no object will be evicted due to idle time
579
+ alone.</comment>
580
+ </param>
581
+ <param name="timeBetweenEvictionRunsMillis" value="-1">
582
+ <comment>The time in milliseconds to sleep between runs of the idle
583
+ object evictor thread. A value less than zero indicates no idle
584
+ evictor thread is run.</comment>
585
+ </param>
586
+ </datastore>
587
+ <datastore id="localDerbyPool">
588
+ <comment>Derby database on localhost running on port 1527 Each
589
+ connection pool instance has several configuration parameter that
590
+ can be used to tune the options for the connection pool. It is
591
+ recommended that you not change the default values unless you are
592
+ trying to address a specific performance issue. For additional
593
+ information regarding connection pool options, refer to the Apache
594
+ Commons Pool API documentation at
595
+ http://jakarta.apache.org/commons/pool/apidocs/index.html.</comment>
596
+ <param name="maxIdle" value="10">
597
+ <comment>The maximum number of idle instances in pool.</comment>
598
+ </param>
599
+ <param name="testOnBorrow" value="true">
600
+ <comment>When true objects are validated before borrowed from the
601
+ pool.</comment>
602
+ </param>
603
+ <param name="testWhileIdle" value="true">
604
+ <comment>When true, objects are validated by the idle object evictor
605
+ thread.</comment>
606
+ </param>
607
+ <param name="ddlConverter" value="org.fcrepo.server.utilities.DerbyDDLConverter"/>
608
+ <param name="dbUsername" value="fedoraAdmin">
609
+ <comment>The database user name.</comment>
610
+ </param>
611
+ <param name="testOnReturn" value="true">
612
+ <comment>When true, objects are validated before returned to the
613
+ pool.</comment>
614
+ </param>
615
+ <param name="maxActive" value="100">
616
+ <comment>The maximum number of active instances in pool.</comment>
617
+ </param>
618
+ <param name="dbPassword" value="fedoraAdmin">
619
+ <comment>The database password.</comment>
620
+ </param>
621
+ <param name="jdbcURL" value="jdbc:derby:fedora/test/derby/fedora3;create=true">
622
+ <comment>The JDBC connection URL.</comment>
623
+ </param>
624
+ <param name="whenExhaustedAction" value="1">
625
+ <comment>Action to take when a new object is requested and the the pool has
626
+ reached maximum number of active objects. Valid values are:
627
+ 0 (fail i.e., throw Exception)
628
+ 1 (block i.e., wait until pool resources are freed)
629
+ 2 (grow i.e., increase the size of the pool).</comment>
630
+ </param>
631
+ <param name="numTestsPerEvictionRun" value="3">
632
+ <comment>The number of objects to be examined on each run of idle
633
+ evictor thread (if applicable). A value less than zero indicates
634
+ that ceil(numIdle)/abs(numTestsPerEvictionRun) will be run.</comment>
635
+ </param>
636
+ <param name="jdbcDriverClass" value="org.apache.derby.jdbc.EmbeddedDriver">
637
+ <comment>The JDBC driver class name.</comment>
638
+ </param>
639
+ <param name="maxWait" value="-1">
640
+ <comment>The maximum amount of time in milliseconds the
641
+ borrowObject() method should wait before throwing an Exception when
642
+ whenExhaustedAction is set to WHEN_EXHAUSTED_BLOCK. A value less
643
+ than zero indicates block indefinitely.</comment>
644
+ </param>
645
+ <param name="minIdle" value="0">
646
+ <comment>The minimum of idle instances in pool.</comment>
647
+ </param>
648
+ <param name="minEvictableIdleTimeMillis" value="1800000">
649
+ <comment>The minimum amount of time in milliseconds an object can be
650
+ idle in pool before eligible for eviction (if applicable). A value
651
+ less than zero indicates no object will be evicted due to idle time
652
+ alone.</comment>
653
+ </param>
654
+ <param name="timeBetweenEvictionRunsMillis" value="-1">
655
+ <comment>The time in milliseconds to sleep between runs of the idle
656
+ object evictor thread. A value less than zero indicates no idle
657
+ evictor thread is run.</comment>
658
+ </param>
659
+ </datastore>
660
+ <datastore id="localOraclePool">
661
+ <comment>Oracle database on localhost with SID=fedora3 Each
662
+ connection pool instance has several configuration parameter that
663
+ can be used to tune the options for the connection pool. It is
664
+ recommended that you not change the default values unless you are
665
+ trying to address a specific performance issue. For additional
666
+ information regarding connection pool options, refer to the Apache
667
+ Commons Pool API documentation at
668
+ http://jakarta.apache.org/commons/pool/apidocs/index.html.</comment>
669
+ <param name="maxIdle" value="10">
670
+ <comment>The maximum number of idle instances in pool.</comment>
671
+ </param>
672
+ <param name="testOnBorrow" value="true">
673
+ <comment>When true objects are validated before borrowed from the
674
+ pool.</comment>
675
+ </param>
676
+ <param name="testWhileIdle" value="true">
677
+ <comment>When true, objects are validated by the idle object evictor
678
+ thread.</comment>
679
+ </param>
680
+ <param name="validationQuery" value="select &apos;validationQuery&apos; from dual">
681
+ <comment>The query to run when validating connections.
682
+ Connections are validated according to the testOnBorrow,
683
+ testOnReturn, and testWhileIdle configuration values.
684
+ If this is specified, it must be a SQL SELECT statement
685
+ that returns at least one row. If this is NOT specified,
686
+ validation tests will not be run.</comment>
687
+ </param>
688
+ <param name="ddlConverter" value="org.fcrepo.server.utilities.OracleDDLConverter"/>
689
+ <param name="dbUsername" value="fedoraAdmin">
690
+ <comment>The database user name.</comment>
691
+ </param>
692
+ <param name="connection.SetBigStringTryClob" value="true"/>
693
+ <param name="testOnReturn" value="true">
694
+ <comment>When true, objects are validated before returned to the
695
+ pool.</comment>
696
+ </param>
697
+ <param name="maxActive" value="100">
698
+ <comment>The maximum number of active instances in pool.</comment>
699
+ </param>
700
+ <param name="dbPassword" value="fedoraAdmin">
701
+ <comment>The database password.</comment>
702
+ </param>
703
+ <param name="jdbcURL" value="jdbc:oracle:thin:@localhost:1521:fedora3">
704
+ <comment>The JDBC connection URL.</comment>
705
+ </param>
706
+ <param name="whenExhaustedAction" value="1">
707
+ <comment>Action to take when a new object is requested and the the pool has
708
+ reached maximum number of active objects. Valid values are:
709
+ 0 (fail i.e., throw Exception)
710
+ 1 (block i.e., wait until pool resources are freed)
711
+ 2 (grow i.e., increase the size of the pool).</comment>
712
+ </param>
713
+ <param name="numTestsPerEvictionRun" value="3">
714
+ <comment>The number of objects to be examined on each run of idle
715
+ evictor thread (if applicable). A value less than zero indicates
716
+ that ceil(numIdle)/abs(numTestsPerEvictionRun) will be run.</comment>
717
+ </param>
718
+ <param name="jdbcDriverClass" value="oracle.jdbc.OracleDriver">
719
+ <comment>The JDBC driver class name.</comment>
720
+ </param>
721
+ <param name="maxWait" value="-1">
722
+ <comment>The maximum amount of time in milliseconds the
723
+ borrowObject() method should wait before throwing an Exception when
724
+ whenExhaustedAction is set to WHEN_EXHAUSTED_BLOCK. A value less
725
+ than zero indicates block indefinitely.</comment>
726
+ </param>
727
+ <param name="minIdle" value="0">
728
+ <comment>The minimum of idle instances in pool.</comment>
729
+ </param>
730
+ <param name="minEvictableIdleTimeMillis" value="1800000">
731
+ <comment>The minimum amount of time in milliseconds an object can be
732
+ idle in pool before eligible for eviction (if applicable). A value
733
+ less than zero indicates no object will be evicted due to idle time
734
+ alone.</comment>
735
+ </param>
736
+ <param name="timeBetweenEvictionRunsMillis" value="-1">
737
+ <comment>The time in milliseconds to sleep between runs of the idle
738
+ object evictor thread. A value less than zero indicates no idle
739
+ evictor thread is run.</comment>
740
+ </param>
741
+ </datastore>
742
+ <datastore id="localPostgreSQLPool">
743
+ <comment>PostgreSQL database on localhost with db name of fedora3. Each
744
+ connection pool instance has several configuration parameter that
745
+ can be used to tune the options for the connection pool. It is
746
+ recommended that you not change the default values unless you are
747
+ trying to address a specific performance issue. For additional
748
+ information regarding connection pool options, refer to the Apache
749
+ Commons Pool API documentation at
750
+ http://jakarta.apache.org/commons/pool/apidocs/index.html.</comment>
751
+ <param name="maxIdle" value="10">
752
+ <comment>The maximum number of idle instances in pool.</comment>
753
+ </param>
754
+ <param name="testOnBorrow" value="true">
755
+ <comment>When true objects are validated before borrowed from the
756
+ pool.</comment>
757
+ </param>
758
+ <param name="testWhileIdle" value="true">
759
+ <comment>When true, objects are validated by the idle object evictor
760
+ thread.</comment>
761
+ </param>
762
+ <param name="validationQuery" value="select 1">
763
+ <comment>The query to run when validating connections.
764
+ Connections are validated according to the testOnBorrow,
765
+ testOnReturn, and testWhileIdle configuration values.
766
+ If this is specified, it must be a SQL SELECT statement
767
+ that returns at least one row. If this is NOT specified,
768
+ validation tests will not be run.</comment>
769
+ </param>
770
+ <param name="ddlConverter" value="org.fcrepo.server.utilities.PostgresDDLConverter"/>
771
+ <param name="dbUsername" value="fedoraAdmin">
772
+ <comment>The database user name.</comment>
773
+ </param>
774
+ <param name="testOnReturn" value="true">
775
+ <comment>When true, objects are validated before returned to the
776
+ pool.</comment>
777
+ </param>
778
+ <param name="maxActive" value="100">
779
+ <comment>The maximum number of active instances in pool.</comment>
780
+ </param>
781
+ <param name="dbPassword" value="fedoraAdmin">
782
+ <comment>The database password.</comment>
783
+ </param>
784
+ <param name="jdbcURL" value="jdbc:postgresql:fedora3">
785
+ <comment>The JDBC connection URL.</comment>
786
+ </param>
787
+ <param name="whenExhaustedAction" value="1">
788
+ <comment>Action to take when a new object is requested and the the pool has
789
+ reached maximum number of active objects. Valid values are:
790
+ 0 (fail i.e., throw Exception)
791
+ 1 (block i.e., wait until pool resources are freed)
792
+ 2 (grow i.e., increase the size of the pool).</comment>
793
+ </param>
794
+ <param name="numTestsPerEvictionRun" value="3">
795
+ <comment>The number of objects to be examined on each run of idle
796
+ evictor thread (if applicable). A value less than zero indicates
797
+ that ceil(numIdle)/abs(numTestsPerEvictionRun) will be run.</comment>
798
+ </param>
799
+ <param name="jdbcDriverClass" value="org.postgresql.Driver">
800
+ <comment>The JDBC driver class name.</comment>
801
+ </param>
802
+ <param name="maxWait" value="-1">
803
+ <comment>The maximum amount of time in milliseconds the
804
+ borrowObject() method should wait before throwing an Exception when
805
+ whenExhaustedAction is set to WHEN_EXHAUSTED_BLOCK. A value less
806
+ than zero indicates block indefinitely.</comment>
807
+ </param>
808
+ <param name="minIdle" value="0">
809
+ <comment>The minimum of idle instances in pool.</comment>
810
+ </param>
811
+ <param name="minEvictableIdleTimeMillis" value="1800000">
812
+ <comment>The minimum amount of time in milliseconds an object can be
813
+ idle in pool before eligible for eviction (if applicable). A value
814
+ less than zero indicates no object will be evicted due to idle time
815
+ alone.</comment>
816
+ </param>
817
+ <param name="timeBetweenEvictionRunsMillis" value="-1">
818
+ <comment>The time in milliseconds to sleep between runs of the idle
819
+ object evictor thread. A value less than zero indicates no idle
820
+ evictor thread is run.</comment>
821
+ </param>
822
+ </datastore>
823
+ <datastore id="localMulgaraTriplestore">
824
+ <comment>local Mulgara Triplestore used by the Resource Index</comment>
825
+ <param name="poolInitialSize" value="3">
826
+ <comment>The initial size of the session pool used for queries.
827
+ Note: A value of 0 will cause the Resource Index to operate in
828
+ synchronized mode: concurrent read/write requests are put in a queue
829
+ and handled in FIFO order; this will severely impair performance and
830
+ is only intended for debugging.</comment>
831
+ </param>
832
+ <param name="bufferSafeCapacity" value="40000">
833
+ <comment>The maximum size the buffer can reach before being forcibly
834
+ flushed. If this threshold is reached, flushing will occur in the
835
+ foreground and the buffer will be locked for writing until it is
836
+ finished. This should be larger than autoFlushBufferSize.</comment>
837
+ </param>
838
+ <param name="autoCreate" value="true">
839
+ <comment>Create the model if it doesn&apos;t already exist.
840
+ At startup, the model will be automatically created. In addition, an
841
+ XML schema datatyped model named &quot;xsd&quot; will also be automatically
842
+ created.</comment>
843
+ </param>
844
+ <param name="bufferFlushBatchSize" value="20000">
845
+ <comment>The number of updates to send to the triplestore at a time.
846
+ This should be the same size as, or smaller than
847
+ autoFlushBufferSize.</comment>
848
+ </param>
849
+ <param name="autoTextIndex" value="false">
850
+ <comment>Whether to propagate adds/deletes to a full-text
851
+ [Full-Text] model automatically. While a very useful feature,
852
+ enabling full-text indexing adds significantly to object ingest
853
+ times. If true, the text model will be named modelName-fullText.
854
+ Note that if this is true and autoCreate is true, the text model
855
+ will also be created if it doesn&apos;t already exist.</comment>
856
+ </param>
857
+ <param name="poolMaxGrowth" value="-1">
858
+ <comment>Maximum number of additional sessions the pool may add. If
859
+ specified as -1, no limit will be placed on pool growth.</comment>
860
+ </param>
861
+ <param name="remote" value="false">
862
+ <comment>Tells the connector to communicate with Mulgara in remote or
863
+ local mode. If true, the host parameter must be defined. If false,
864
+ the path parameter must be defined.</comment>
865
+ </param>
866
+ <param name="autoFlushDormantSeconds" value="5">
867
+ <comment>Seconds of buffer inactivity that will trigger an
868
+ auto-flush. If this threshold is reached, flushing will occur in the
869
+ background, during which time the buffer is still available for
870
+ writing.</comment>
871
+ </param>
872
+ <param name="serverName" value="fedora">
873
+ <comment>The server name for rmi binding.</comment>
874
+ </param>
875
+ <param name="autoFlushBufferSize" value="20000">
876
+ <comment>The size at which the buffer should be auto-flushed. If
877
+ this threshold is reached, flushing will occur in the background,
878
+ during which time the buffer is still available for
879
+ writing.</comment>
880
+ </param>
881
+ <param name="modelName" value="ri">
882
+ <comment>The name of the model to use.</comment>
883
+ </param>
884
+ <param name="readOnly" value="false">
885
+ <comment>Whether the triplestore should be read-only. Most Fedora
886
+ repositories will set this to false.</comment>
887
+ </param>
888
+ <param name="path" value="data/resourceIndex" isFilePath="true">
889
+ <comment>The local path to the main triplestore directory.</comment>
890
+ </param>
891
+ <param name="connectorClassName" value="org.trippi.impl.mulgara.MulgaraConnector">
892
+ <comment>The name of the Trippi Connector class used to communicate
893
+ with the triplestore.</comment>
894
+ </param>
895
+ </datastore>
896
+ <datastore id="localPostgresMPTTriplestore">
897
+ <comment>Example local MPTStore backed by Postgres.
898
+ To use this triplestore for the Resource Index:
899
+ 1) In fedora.fcfg, change the "datastore" parameter of the
900
+ ResourceIndex module to localPostgresMPTTriplestore.
901
+ 2) Login to your Postgres server as an administrative user and
902
+ run the following commands:
903
+ CREATE ROLE "fedoraAdmin" LOGIN PASSWORD 'fedoraAdmin'
904
+ NOINHERIT CREATEDB
905
+ VALID UNTIL 'infinity';
906
+ CREATE DATABASE "riTriples"
907
+ WITH ENCODING='SQL_ASCII'
908
+ OWNER="fedoraAdmin";
909
+ 3) Make sure you can login to your Postgres server as fedoraAdmin.
910
+ 4) Download the appropriate Postgres JDBC 3 driver from
911
+ http://jdbc.postgresql.org/download.html
912
+ and make sure it's accessible to your servlet container.
913
+ If you're running Tomcat, putting it in common/lib/ will work.</comment>
914
+ <param name="fetchSize" value="1000"/>
915
+ <param name="poolInitialSize" value="3"/>
916
+ <param name="bufferSafeCapacity" value="2000"/>
917
+ <param name="bufferFlushBatchSize" value="1000"/>
918
+ <param name="backslashIsEscape" value="true"/>
919
+ <param name="autoFlushDormantSeconds" value="5"/>
920
+ <param name="password" value="fedoraAdmin"/>
921
+ <param name="autoFlushBufferSize" value="1000"/>
922
+ <param name="username" value="fedoraAdmin"/>
923
+ <param name="poolMaxSize" value="10"/>
924
+ <param name="jdbcURL" value="jdbc:postgresql://localhost/riTriples"/>
925
+ <param name="ddlGenerator" value="org.nsdl.mptstore.impl.postgres.PostgresDDLGenerator"/>
926
+ <param name="connectorClassName" value="org.trippi.impl.mpt.MPTConnector"/>
927
+ <param name="jdbcDriver" value="org.postgresql.Driver"/>
928
+ </datastore>
929
+ <datastore id="apimUpdateMessages">
930
+ <comment>Messaging Destination for API-M events which update the repository</comment>
931
+ <param name="messageTypes" value="apimUpdate">
932
+ <comment>A space-separated list of message types that will be
933
+ delivered to this Destination. Currently, &quot;apimUpdate&quot; and
934
+ &quot;apimAccess&quot; are the only supported message types.</comment>
935
+ </param>
936
+ <param name="name" value="fedora.apim.update"/>
937
+ <param name="type" value="topic">
938
+ <comment>Optional, defaults to topic.</comment>
939
+ </param>
940
+ </datastore>
941
+ <datastore id="apimAccessMessages">
942
+ <comment>Messaging Destination for API-M events which did not make changes to the repository</comment>
943
+ <param name="messageTypes" value="apimAccess">
944
+ <comment>A space-separated list of message types that will be
945
+ delivered to this Destination. Currently, &quot;apimUpdate&quot; and
946
+ &quot;apimAccess&quot; are the only supported message types.</comment>
947
+ </param>
948
+ <param name="name" value="fedora.apim.access"/>
949
+ <param name="type" value="topic">
950
+ <comment>Optional, defaults to topic.</comment>
951
+ </param>
952
+ </datastore>
953
+ </server>