curate 0.3.2 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1200) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +4 -2
  3. data/README.md +65 -3
  4. data/Rakefile +17 -4
  5. data/app/assets/images/curate/nope.png +0 -0
  6. data/app/assets/javascripts/curate.js +12 -3
  7. data/app/assets/javascripts/curate/facet_mine.js +22 -0
  8. data/app/assets/javascripts/curate/link_users.js.coffee +107 -0
  9. data/app/assets/javascripts/curate/proxy_rights.js.coffee +95 -0
  10. data/app/assets/javascripts/curate/select_works.js.coffee +24 -0
  11. data/app/assets/javascripts/toggle_details.js +1 -3
  12. data/app/assets/stylesheets/curate.css.scss +3 -1
  13. data/app/assets/stylesheets/curate/linkedUsers.css.scss +16 -0
  14. data/app/assets/stylesheets/global-variables.scss +3 -3
  15. data/app/assets/stylesheets/layout/positioning.css.scss +28 -15
  16. data/app/assets/stylesheets/modules.scss +4 -1
  17. data/app/assets/stylesheets/modules/accessibility.css.scss +50 -0
  18. data/app/assets/stylesheets/modules/classify_work.css.scss +58 -0
  19. data/app/assets/stylesheets/modules/forms.css.scss +16 -1
  20. data/app/assets/stylesheets/modules/search_results.css.scss +28 -0
  21. data/app/assets/stylesheets/modules/site_actions.css.scss +48 -0
  22. data/app/assets/stylesheets/modules/site_search.css.scss +27 -13
  23. data/app/assets/stylesheets/style/theme.css.scss +6 -8
  24. data/app/assets/stylesheets/style/typography.css.scss +16 -11
  25. data/app/controllers/catalog_controller.rb +153 -128
  26. data/app/controllers/classify_concerns_controller.rb +1 -0
  27. data/app/controllers/common_objects_controller.rb +1 -0
  28. data/app/controllers/concerns/curate/fields_for_add_to_collection.rb +27 -0
  29. data/app/controllers/concerns/curate/parent_container.rb +27 -0
  30. data/app/controllers/concerns/curate/themed_layout_controller.rb +30 -0
  31. data/app/controllers/concerns/curate_controller.rb +105 -0
  32. data/app/controllers/curate/collections_controller.rb +122 -0
  33. data/app/controllers/curate/depositors_controller.rb +50 -0
  34. data/app/controllers/curate/people_controller.rb +59 -0
  35. data/app/controllers/curation_concern/articles_controller.rb +4 -0
  36. data/app/controllers/curation_concern/base_controller.rb +11 -7
  37. data/app/controllers/curation_concern/datasets_controller.rb +3 -0
  38. data/app/controllers/curation_concern/documents_controller.rb +3 -0
  39. data/app/controllers/curation_concern/etds_controller.rb +4 -0
  40. data/app/controllers/curation_concern/generic_files_controller.rb +23 -37
  41. data/app/controllers/curation_concern/generic_works_controller.rb +113 -0
  42. data/app/controllers/curation_concern/images_controller.rb +3 -0
  43. data/app/controllers/curation_concern/linked_resources_controller.rb +48 -0
  44. data/app/controllers/curation_concern/permissions_controller.rb +21 -0
  45. data/app/controllers/downloads_controller.rb +2 -17
  46. data/app/controllers/errors_controller.rb +0 -1
  47. data/app/controllers/help_requests_controller.rb +20 -7
  48. data/app/controllers/registrations_controller.rb +20 -0
  49. data/app/controllers/sessions_controller.rb +4 -0
  50. data/app/controllers/terms_of_service_agreements_controller.rb +1 -1
  51. data/app/helpers/curate/catalog_helper.rb +30 -0
  52. data/app/helpers/curate/collections_helper.rb +66 -0
  53. data/app/helpers/curate/people_helper.rb +15 -0
  54. data/app/helpers/curate_helper.rb +103 -0
  55. data/app/helpers/generic_file_helper.rb +11 -0
  56. data/app/models/account.rb +196 -0
  57. data/app/models/classify_concern.rb +19 -12
  58. data/app/models/concerns/curate/ability.rb +22 -0
  59. data/app/models/contributor_agreement.rb +0 -37
  60. data/app/models/curate/devise_user_shim.rb +65 -0
  61. data/app/models/curate/proxy_deposit_rights.rb +4 -0
  62. data/app/models/curate/user_behavior.rb +17 -0
  63. data/app/models/curate/user_behavior/base.rb +22 -0
  64. data/app/models/curate/user_behavior/delegates.rb +10 -0
  65. data/app/models/curate/user_behavior/with_associated_person.rb +31 -0
  66. data/app/models/help_request.rb +0 -10
  67. data/app/models/quick_classification_query.rb +22 -0
  68. data/app/repository_datastreams/article_metadata_datastream.rb +87 -0
  69. data/app/repository_datastreams/curate/properties_datastream.rb +20 -0
  70. data/app/repository_datastreams/document_datastream.rb +7 -0
  71. data/app/repository_datastreams/etd_metadata.rb +83 -0
  72. data/app/repository_datastreams/file_content_datastream.rb +17 -23
  73. data/app/repository_datastreams/generic_work_rdf_datastream.rb +64 -0
  74. data/app/repository_datastreams/image_metadata.rb +58 -0
  75. data/app/repository_datastreams/person_metadata_datastream.rb +48 -0
  76. data/app/repository_models/article.rb +102 -0
  77. data/app/repository_models/collection.rb +57 -0
  78. data/app/repository_models/curation_concern/doi_assignable.rb +50 -0
  79. data/app/repository_models/curation_concern/embargoable.rb +28 -18
  80. data/app/repository_models/curation_concern/model.rb +23 -17
  81. data/app/repository_models/curation_concern/with_generic_files.rb +2 -2
  82. data/app/repository_models/curation_concern/with_linked_contributors.rb +72 -0
  83. data/app/repository_models/curation_concern/with_linked_resources.rb +17 -0
  84. data/app/repository_models/curation_concern/with_related_works.rb +25 -0
  85. data/app/repository_models/dataset.rb +50 -0
  86. data/app/repository_models/document.rb +25 -0
  87. data/app/repository_models/etd.rb +128 -0
  88. data/app/repository_models/generic_file.rb +22 -6
  89. data/app/repository_models/generic_work.rb +46 -0
  90. data/app/repository_models/image.rb +113 -0
  91. data/app/repository_models/linked_resource.rb +41 -0
  92. data/app/repository_models/person.rb +75 -0
  93. data/app/services/anti_virus_scanner.rb +3 -1
  94. data/app/services/curation_concern.rb +3 -0
  95. data/app/services/curation_concern/article_actor.rb +4 -0
  96. data/app/services/curation_concern/base_actor.rb +60 -10
  97. data/app/services/curation_concern/dataset_actor.rb +4 -0
  98. data/app/services/curation_concern/document_actor.rb +4 -0
  99. data/app/services/curation_concern/etd_actor.rb +4 -0
  100. data/app/services/curation_concern/generic_file_actor.rb +9 -8
  101. data/app/services/curation_concern/generic_work_actor.rb +86 -0
  102. data/app/services/curation_concern/image_actor.rb +4 -0
  103. data/app/services/curation_concern/linked_resource_actor.rb +4 -0
  104. data/app/validators/future_date_validator.rb +1 -1
  105. data/app/views/_footer.html.erb +2 -2
  106. data/app/views/_masthead.html.erb +0 -16
  107. data/app/views/catalog/_add_to_collection_gui.html.erb +21 -0
  108. data/app/views/catalog/_document.html.erb +48 -14
  109. data/app/views/catalog/_document_list.html.erb +5 -2
  110. data/app/views/catalog/_email_form.html.erb +11 -11
  111. data/app/views/catalog/_facets.html.erb +22 -1
  112. data/app/views/catalog/_index_partials/_thumbnail_display.html.erb +3 -0
  113. data/app/views/catalog/_show_tools.html.erb +46 -46
  114. data/app/views/catalog/_sms_form.html.erb +21 -21
  115. data/app/views/catalog/index.html.erb +20 -28
  116. data/app/views/catalog/opensearch.xml.builder +10 -10
  117. data/app/views/classify_concerns/new.html.erb +18 -23
  118. data/app/views/collections/_collection.html.erb +42 -0
  119. data/app/views/common_objects/_generic_work.html.erb +2 -0
  120. data/app/views/common_objects/show_stub_information.html.erb +1 -6
  121. data/app/views/curate/collections/_button_create_collection.html.erb +2 -0
  122. data/app/views/curate/collections/_collection.html.erb +10 -0
  123. data/app/views/curate/collections/_document_list.html.erb +11 -0
  124. data/app/views/curate/collections/_form.html.erb +33 -0
  125. data/app/views/curate/collections/_form_permission.html.erb +36 -0
  126. data/app/views/curate/collections/_form_to_add_member.html.erb +27 -0
  127. data/app/views/curate/collections/add_member_form.html.erb +2 -0
  128. data/app/views/curate/collections/edit.html.erb +6 -0
  129. data/app/views/curate/collections/index.html.erb +11 -0
  130. data/app/views/curate/collections/new.html.erb +2 -0
  131. data/app/views/curate/collections/show.html.erb +8 -0
  132. data/app/views/curate/collections/unauthorized.html.erb +3 -0
  133. data/app/views/curate/depositors/index.html.erb +30 -0
  134. data/app/views/curate/people/show.html.erb +41 -0
  135. data/app/views/curation_concern/articles/_article.html.erb +42 -0
  136. data/app/views/curation_concern/articles/_attributes.html.erb +24 -0
  137. data/app/views/curation_concern/articles/_form_additional_information.html.erb +10 -0
  138. data/app/views/curation_concern/articles/_form_required_information.html.erb +22 -0
  139. data/app/views/curation_concern/articles/edit.html.erb +15 -0
  140. data/app/views/curation_concern/articles/show.html.erb +21 -0
  141. data/app/views/curation_concern/base/_collections.html.erb +31 -0
  142. data/app/views/curation_concern/base/_contributors_attribute.html.erb +10 -0
  143. data/app/views/curation_concern/base/_form_content_license.html.erb +16 -0
  144. data/app/views/curation_concern/base/_form_contributor_agreement.html.erb +28 -0
  145. data/app/views/curation_concern/base/_form_doi.html.erb +57 -0
  146. data/app/views/curation_concern/base/_form_files_and_links.html.erb +29 -0
  147. data/app/views/curation_concern/base/_form_permission.html.erb +40 -0
  148. data/app/views/curation_concern/base/_form_supplementary_fields.html.erb +19 -0
  149. data/app/views/curation_concern/base/_legally_binding_text.html.erb +33 -0
  150. data/app/views/curation_concern/base/_linked_contributors.html.erb +42 -0
  151. data/app/views/curation_concern/{_manage_related_files.html.erb → base/_manage_related_files.html.erb} +0 -0
  152. data/app/views/curation_concern/base/_on_behalf_of.html.erb +6 -0
  153. data/app/views/curation_concern/base/_related_files.html.erb +56 -0
  154. data/app/views/curation_concern/base/_related_resources.html.erb +37 -0
  155. data/app/views/curation_concern/base/_related_works.html.erb +31 -0
  156. data/app/views/curation_concern/base/_thumbnail.html.erb +5 -0
  157. data/app/views/curation_concern/base/unauthorized.html.erb +3 -0
  158. data/app/views/curation_concern/datasets/_dataset.html.erb +42 -0
  159. data/app/views/curation_concern/documents/_attributes.html.erb +26 -0
  160. data/app/views/curation_concern/documents/_document.html.erb +57 -0
  161. data/app/views/curation_concern/documents/_form_additional_information.html.erb +12 -0
  162. data/app/views/curation_concern/etds/_attributes.html.erb +22 -0
  163. data/app/views/curation_concern/etds/_etd.html.erb +48 -0
  164. data/app/views/curation_concern/etds/_form.html.erb +22 -0
  165. data/app/views/curation_concern/etds/_form_files_and_links.html.erb +13 -0
  166. data/app/views/curation_concern/etds/_form_metadata.html.erb +99 -0
  167. data/app/views/curation_concern/etds/show.html.erb +19 -0
  168. data/app/views/curation_concern/generic_files/_attributes.html.erb +2 -2
  169. data/app/views/curation_concern/generic_files/_form.html.erb +6 -3
  170. data/app/views/curation_concern/{_media_display.html.erb → generic_files/_media_display.html.erb} +0 -0
  171. data/app/views/curation_concern/generic_works/_attributes.html.erb +25 -0
  172. data/app/views/curation_concern/generic_works/_form.html.erb +27 -0
  173. data/app/views/curation_concern/generic_works/_form_additional_information.html.erb +11 -0
  174. data/app/views/curation_concern/generic_works/_form_required_information.html.erb +21 -0
  175. data/app/views/curation_concern/generic_works/_generic_work.html.erb +3 -0
  176. data/app/views/curation_concern/generic_works/edit.html.erb +15 -0
  177. data/app/views/curation_concern/generic_works/new.html.erb +14 -0
  178. data/app/views/curation_concern/generic_works/show.html.erb +22 -0
  179. data/app/views/curation_concern/images/_attributes.html.erb +23 -0
  180. data/app/views/curation_concern/images/_form.html.erb +22 -0
  181. data/app/views/curation_concern/images/_form_files_and_links.html.erb +13 -0
  182. data/app/views/curation_concern/images/_form_metadata.html.erb +95 -0
  183. data/app/views/curation_concern/images/_image.html.erb +48 -0
  184. data/app/views/curation_concern/images/show.html.erb +19 -0
  185. data/app/views/curation_concern/linked_resources/_form.html.erb +10 -0
  186. data/app/views/curation_concern/linked_resources/new.html.erb +5 -0
  187. data/app/views/curation_concern/people/_person.html.erb +21 -0
  188. data/app/views/curation_concern/permissions/confirm.html.erb +8 -0
  189. data/app/views/help_requests/new.html.erb +1 -1
  190. data/app/views/layouts/common_objects.html.erb +1 -10
  191. data/app/views/layouts/curate_nd.html.erb +12 -14
  192. data/app/views/layouts/curate_nd/catalog.html.erb +1 -1
  193. data/app/views/layouts/hydra-head.html.erb +0 -16
  194. data/app/views/registrations/edit.html.erb +80 -0
  195. data/app/views/shared/_brand_bar.html.erb +10 -0
  196. data/app/views/shared/_site_actions.html.erb +41 -0
  197. data/app/views/shared/_site_search.html.erb +3 -2
  198. data/app/views/terms_of_service_agreements/new.html.erb +4 -4
  199. data/app/workers/characterize_job.rb +1 -1
  200. data/app/workers/mint_remote_identifier_worker.rb +25 -0
  201. data/app/workers/visibility_copy_worker.rb +21 -0
  202. data/config/initializers/curate_initializer.rb +2 -0
  203. data/config/initializers/sufia_initializer.rb +8 -0
  204. data/config/jetty.yml +6 -0
  205. data/config/locales/sufia.en.yml +5 -1
  206. data/lib/contributors_association.rb +99 -0
  207. data/lib/curate.rb +18 -6
  208. data/lib/curate/active_model_adaptor.rb +15 -0
  209. data/lib/curate/configuration.rb +56 -0
  210. data/lib/curate/engine.rb +15 -9
  211. data/lib/curate/jobs/content_deposit_event_job.rb +36 -0
  212. data/lib/curate/rails/routes.rb +47 -0
  213. data/lib/curate/spec_support.rb +34 -0
  214. data/lib/curate/version.rb +1 -1
  215. data/lib/generators/curate/application_template.rb +57 -0
  216. data/lib/generators/curate/application_template.rb.erb +57 -0
  217. data/lib/generators/curate/curate_generator.rb +167 -0
  218. data/lib/generators/curate/templates/README.md +24 -0
  219. data/lib/generators/curate/templates/catalog_controller.rb +6 -0
  220. data/lib/generators/curate/templates/curate_initializer.erb.rb +16 -0
  221. data/lib/generators/curate/templates/migrations/add_repository_id_to_user.rb +6 -0
  222. data/lib/generators/curate/templates/migrations/add_terms_of_service_to_user.rb +5 -0
  223. data/lib/generators/curate/templates/migrations/add_user_force_update_profile.rb +8 -0
  224. data/lib/generators/curate/templates/migrations/create_curate_proxy_deposit_rights.rb +11 -0
  225. data/lib/generators/curate/templates/migrations/create_help_requests.rb +22 -0
  226. data/lib/generators/curate/work/USAGE +21 -0
  227. data/lib/generators/curate/work/templates/README +13 -0
  228. data/lib/generators/curate/work/templates/actor.rb.erb +6 -0
  229. data/lib/generators/curate/work/templates/actor_spec.rb.erb +7 -0
  230. data/lib/generators/curate/work/templates/controller.rb.erb +6 -0
  231. data/lib/generators/curate/work/templates/controller_spec.rb.erb +7 -0
  232. data/lib/generators/curate/work/templates/datastream.rb.erb +78 -0
  233. data/lib/generators/curate/work/templates/factory.rb.erb +40 -0
  234. data/lib/generators/curate/work/templates/model.rb.erb +49 -0
  235. data/lib/generators/curate/work/templates/model_spec.rb.erb +19 -0
  236. data/lib/generators/curate/work/with_doi/with_doi_generator.rb +26 -0
  237. data/lib/generators/curate/work/work_generator.rb +97 -0
  238. data/lib/inline_reflection.rb +12 -0
  239. data/lib/rdf/etd_ms.rb +15 -0
  240. data/lib/rdf/image.rb +16 -0
  241. data/lib/rdf/qualified_dc.rb +25 -0
  242. data/lib/rdf/qualified_foaf.rb +11 -0
  243. data/lib/rdf/relators.rb +6 -0
  244. data/spec/abilities/generic_file_abilities_spec.rb +4 -4
  245. data/spec/abilities/generic_work_abilities_spec.rb +61 -0
  246. data/spec/controllers/catalog_controller_spec.rb +44 -0
  247. data/spec/controllers/classify_concerns_controller_spec.rb +3 -3
  248. data/spec/controllers/common_objects_controller_spec.rb +11 -11
  249. data/spec/controllers/curate/collections_controller_spec.rb +162 -0
  250. data/spec/controllers/curate/depositors_controller_spec.rb +52 -0
  251. data/spec/controllers/curate/people_controller_spec.rb +68 -0
  252. data/spec/controllers/curation_concern/articles_controller_spec.rb +5 -0
  253. data/spec/controllers/curation_concern/base_controller_spec.rb +1 -4
  254. data/spec/controllers/curation_concern/datasets_controller_spec.rb +5 -0
  255. data/spec/controllers/curation_concern/documents_controller_spec.rb +8 -0
  256. data/spec/controllers/curation_concern/etds_controller_spec.rb +5 -0
  257. data/spec/controllers/curation_concern/generic_files_controller_spec.rb +13 -17
  258. data/spec/controllers/curation_concern/generic_works_controller_spec.rb +5 -0
  259. data/spec/controllers/curation_concern/images_controller_spec.rb +5 -0
  260. data/spec/controllers/curation_concern/linked_resources_controller_spec.rb +67 -0
  261. data/spec/controllers/curation_concern/permissions_controller_spec.rb +29 -0
  262. data/spec/controllers/downloads_controller_spec.rb +11 -2
  263. data/spec/controllers/help_requests_controller_spec.rb +1 -1
  264. data/spec/curate/internal/factories.rb +24 -0
  265. data/spec/factories/articles_factory.rb +25 -0
  266. data/spec/factories/collections_factory.rb +21 -0
  267. data/spec/factories/create_curation_concern.rb +2 -10
  268. data/spec/factories/create_generic_file.rb +5 -9
  269. data/spec/factories/datasets_factory.rb +32 -0
  270. data/spec/factories/documents_factory.rb +13 -0
  271. data/spec/factories/etds_factory.rb +29 -0
  272. data/spec/factories/generic_files_factory.rb +18 -0
  273. data/spec/factories/generic_works_factory.rb +33 -0
  274. data/spec/factories/{help_requests.rb → help_requests_factory.rb} +0 -0
  275. data/spec/factories/images_factory.rb +24 -0
  276. data/spec/factories/linked_resource.rb +6 -0
  277. data/spec/factories/person.rb +17 -0
  278. data/spec/features/adding_items_to_collections.rb +26 -0
  279. data/spec/features/adding_section_to_profile.rb +21 -0
  280. data/spec/features/article_spec.rb +80 -0
  281. data/spec/features/associating_works_spec.rb +70 -0
  282. data/spec/features/catalog_search_spec.rb +94 -0
  283. data/spec/features/collections_spec.rb +55 -0
  284. data/spec/features/dataset_spec.rb +80 -0
  285. data/spec/features/edit_file_spec.rb +25 -0
  286. data/spec/features/end_to_end_spec.rb +51 -167
  287. data/spec/features/error_handlers_spec.rb +5 -9
  288. data/spec/features/etd_spec.rb +54 -0
  289. data/spec/features/generic_file_spec.rb +90 -0
  290. data/spec/features/generic_work_spec.rb +81 -0
  291. data/spec/features/image_spec.rb +47 -0
  292. data/spec/features/person_profile_spec.rb +55 -0
  293. data/spec/features/thumbnail_display_spec.rb +23 -0
  294. data/spec/features/user_profile_workflow_spec.rb +155 -0
  295. data/spec/helpers/curate/catalog_helper.rb +47 -0
  296. data/spec/helpers/curate_helper_spec.rb +184 -0
  297. data/spec/lib/curate/configuration_spec.rb +33 -0
  298. data/spec/lib/curate_spec.rb +12 -0
  299. data/spec/lib/generators/curate/work/work_generator_spec.rb +66 -0
  300. data/spec/mailers/notification_mailer_spec.rb +11 -11
  301. data/spec/models/account_spec.rb +163 -0
  302. data/spec/models/classify_concern_spec.rb +16 -25
  303. data/spec/models/contributor_agreement_spec.rb +1 -5
  304. data/spec/models/curate/user_spec.rb +24 -0
  305. data/spec/models/quick_classification_query_spec.rb +29 -0
  306. data/spec/repository_models/article_spec.rb +27 -0
  307. data/spec/repository_models/collection_spec.rb +97 -0
  308. data/spec/repository_models/curation_concern/doi_assignable_spec.rb +63 -0
  309. data/spec/repository_models/curation_concern/embargoable_spec.rb +27 -1
  310. data/spec/repository_models/dataset_spec.rb +16 -0
  311. data/spec/repository_models/document_spec.rb +43 -0
  312. data/spec/repository_models/etd_spec.rb +22 -0
  313. data/spec/repository_models/generic_file_spec.rb +5 -3
  314. data/spec/repository_models/generic_work_spec.rb +28 -0
  315. data/spec/repository_models/image_spec.rb +33 -0
  316. data/spec/repository_models/linked_resource_spec.rb +72 -0
  317. data/spec/repository_models/person_spec.rb +50 -0
  318. data/spec/routing/collections_routing_spec.rb +19 -0
  319. data/spec/routing/common_objects_routing_spec.rb +5 -1
  320. data/spec/routing/people_routes_spec.rb +46 -0
  321. data/spec/services/curation_concern/article_actor_spec.rb +5 -0
  322. data/spec/services/curation_concern/base_actor_spec.rb +88 -17
  323. data/spec/services/curation_concern/dataset_actor_spec.rb +5 -0
  324. data/spec/services/curation_concern/document_actor_spec.rb +5 -0
  325. data/spec/services/curation_concern/etd_actor_spec.rb +35 -0
  326. data/spec/services/curation_concern/generic_file_actor_spec.rb +46 -30
  327. data/spec/services/curation_concern/generic_work_actor_spec.rb +147 -0
  328. data/spec/services/curation_concern/image_actor_spec.rb +6 -0
  329. data/spec/services/curation_concern/linked_resource_actor_spec.rb +42 -0
  330. data/spec/services/curation_concern_spec.rb +16 -2
  331. data/spec/skeleton/config/locales/en.yml +14 -0
  332. data/spec/skeleton/lib/generators/test_app_generator.rb +27 -0
  333. data/spec/spec_helper.rb +6 -24
  334. data/spec/support/curate_fixture_file_upload.rb +6 -0
  335. data/spec/support/curation_concern/factory_helpers.rb +14 -0
  336. data/spec/support/environment_override.rb +3 -9
  337. data/spec/support/features.rb +49 -0
  338. data/spec/support/features/create_works.rb +8 -0
  339. data/spec/support/features/curate_fixture_file_upload.rb +8 -0
  340. data/spec/support/features/javascript.rb +7 -0
  341. data/spec/support/features/session_helpers.rb +11 -0
  342. data/spec/support/matchers/metadata_field_matchers.rb +28 -0
  343. data/spec/support/shared/doi_assignable.rb +9 -0
  344. data/spec/support/shared/has_common_solr_fields.rb +9 -0
  345. data/spec/support/shared/has_linked_contributors.rb +62 -0
  346. data/spec/support/shared/shared_examples_has_dc_metadata.rb +20 -0
  347. data/spec/support/shared/shared_examples_is_a_curation_concern_actor.rb +108 -0
  348. data/spec/support/shared/shared_examples_is_a_curation_concern_controller.rb +144 -0
  349. data/spec/support/shared/shared_examples_is_a_curation_concern_model.rb +25 -0
  350. data/spec/support/shared/shared_examples_is_embargoable.rb +0 -1
  351. data/spec/support/shared/shared_examples_remotely_identified.rb +13 -0
  352. data/spec/support/shared/shared_examples_with_access_rights.rb +10 -11
  353. data/spec/support/shared/shared_examples_with_related_works.rb +25 -0
  354. data/spec/views/catalog/_add_to_collection_gui.html.erb_spec.rb +42 -0
  355. data/spec/views/curate/collections/show.html.erb_spec.rb +22 -0
  356. data/spec/views/curate/people/show.html.erb_spec.rb +39 -0
  357. data/spec/views/shared/_site_actions.html.erb_spec.rb +58 -0
  358. data/spec/workers/characterize_job_spec.rb +17 -4
  359. data/spec/workers/mint_remote_identifier_worker_spec.rb +22 -0
  360. data/spec/workers/visibility_copy_worker_spec.rb +40 -0
  361. metadata +445 -1697
  362. data/app/assets/stylesheets/blacklight.css.scss +0 -6
  363. data/app/assets/stylesheets/modules/action_bar.css.scss +0 -29
  364. data/app/controllers/application_controller.rb +0 -85
  365. data/app/controllers/dashboard_controller.rb +0 -84
  366. data/app/controllers/welcome_controller.rb +0 -32
  367. data/app/helpers/application_helper.rb +0 -93
  368. data/app/models/access_right.rb +0 -81
  369. data/app/models/digital_object_identifier.rb +0 -83
  370. data/app/models/doi_config.rb +0 -26
  371. data/app/models/mint_doi.rb +0 -51
  372. data/app/models/mint_purl.rb +0 -40
  373. data/app/models/object_access.rb +0 -17
  374. data/app/models/purl.rb +0 -18
  375. data/app/models/repo_object.rb +0 -24
  376. data/app/models/solr_document.rb +0 -35
  377. data/app/repository_models/curation_concern/with_access_right.rb +0 -35
  378. data/app/views/_logo.html.erb +0 -34
  379. data/app/views/catalog/_index_partials/_default_group.html.erb +0 -37
  380. data/app/views/catalog/_search_form.html.erb +0 -20
  381. data/app/views/curation_concern/_content_license.html.erb +0 -16
  382. data/app/views/curation_concern/_contributor_agreement.html.erb +0 -27
  383. data/app/views/curation_concern/_doi.html.erb +0 -44
  384. data/app/views/curation_concern/_permission.html.erb +0 -36
  385. data/app/views/curation_concern/_related_files.html.erb +0 -53
  386. data/app/views/dashboard/_constraints.html.erb +0 -22
  387. data/app/views/dashboard/_did_you_mean.html.erb +0 -26
  388. data/app/views/dashboard/_document_list.html.erb +0 -20
  389. data/app/views/dashboard/_facet_layout.html.erb +0 -27
  390. data/app/views/dashboard/_facet_limit.html.erb +0 -35
  391. data/app/views/dashboard/_facet_pagination.html.erb +0 -25
  392. data/app/views/dashboard/_facet_selected.html.erb +0 -28
  393. data/app/views/dashboard/_facets.html.erb +0 -22
  394. data/app/views/dashboard/_index_partials/_default_group.html.erb +0 -37
  395. data/app/views/dashboard/_index_partials/_list_files.html.erb +0 -66
  396. data/app/views/dashboard/_index_partials/_thumbnail_display.html.erb +0 -0
  397. data/app/views/dashboard/_results_pagination.html.erb +0 -22
  398. data/app/views/dashboard/_search_form.html.erb +0 -36
  399. data/app/views/dashboard/_show_partials/_default.html.erb +0 -38
  400. data/app/views/dashboard/_show_partials/_default_details.html.erb +0 -31
  401. data/app/views/dashboard/_show_partials/_facets.html.erb +0 -103
  402. data/app/views/dashboard/_sort_and_per_page.html.erb +0 -18
  403. data/app/views/dashboard/facet.html.erb +0 -38
  404. data/app/views/dashboard/get_related_file.html.erb +0 -4
  405. data/app/views/dashboard/index.html.erb +0 -60
  406. data/app/views/shared/_action_bar.html.erb +0 -25
  407. data/app/views/welcome/index.html.erb +0 -21
  408. data/app/workers/doi_worker.rb +0 -16
  409. data/config/recipients_list.yml +0 -4
  410. data/config/routes.rb +0 -43
  411. data/lib/tasks/curate_tasks.rake +0 -75
  412. data/spec/controllers/dashboard_controller_spec.rb +0 -85
  413. data/spec/controllers/welcome_controller_spec.rb +0 -32
  414. data/spec/dummy/README.rdoc +0 -261
  415. data/spec/dummy/Rakefile +0 -7
  416. data/spec/dummy/app/assets/images/blacklight/bg.png +0 -0
  417. data/spec/dummy/app/assets/images/blacklight/border.png +0 -0
  418. data/spec/dummy/app/assets/images/blacklight/bul_sq_gry.gif +0 -0
  419. data/spec/dummy/app/assets/images/blacklight/checkmark.gif +0 -0
  420. data/spec/dummy/app/assets/images/blacklight/logo.png +0 -0
  421. data/spec/dummy/app/assets/images/blacklight/magnifying_glass.gif +0 -0
  422. data/spec/dummy/app/assets/images/blacklight/remove.gif +0 -0
  423. data/spec/dummy/app/assets/images/blacklight/separator.gif +0 -0
  424. data/spec/dummy/app/assets/images/blacklight/start_over.gif +0 -0
  425. data/spec/dummy/app/assets/javascripts/application.js +0 -13
  426. data/spec/dummy/app/assets/stylesheets/application.css +0 -14
  427. data/spec/dummy/app/controllers/application_controller.rb +0 -3
  428. data/spec/dummy/app/controllers/curation_concern/mock_curation_concerns_controller.rb +0 -94
  429. data/spec/dummy/app/helpers/application_helper.rb +0 -2
  430. data/spec/dummy/app/models/solr_document.rb +0 -4
  431. data/spec/dummy/app/models/user.rb +0 -13
  432. data/spec/dummy/app/services/curation_concern/mock_curation_concern_actor.rb +0 -58
  433. data/spec/dummy/app/views/common_objects/_mock_curation_concern.html.erb +0 -2
  434. data/spec/dummy/app/views/curation_concern/mock_curation_concerns/_attributes.html.erb +0 -25
  435. data/spec/dummy/app/views/curation_concern/mock_curation_concerns/_form.html.erb +0 -88
  436. data/spec/dummy/app/views/curation_concern/mock_curation_concerns/edit.html.erb +0 -15
  437. data/spec/dummy/app/views/curation_concern/mock_curation_concerns/new.html.erb +0 -14
  438. data/spec/dummy/app/views/curation_concern/mock_curation_concerns/show.html.erb +0 -18
  439. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  440. data/spec/dummy/config.ru +0 -4
  441. data/spec/dummy/config/SolrMarc/config-test.properties +0 -37
  442. data/spec/dummy/config/SolrMarc/config.properties +0 -37
  443. data/spec/dummy/config/SolrMarc/index.properties +0 -97
  444. data/spec/dummy/config/SolrMarc/index_scripts/dewey.bsh +0 -47
  445. data/spec/dummy/config/SolrMarc/index_scripts/format.bsh +0 -126
  446. data/spec/dummy/config/SolrMarc/translation_maps/README_MAPS +0 -1
  447. data/spec/dummy/config/SolrMarc/translation_maps/callnumber_map.properties +0 -407
  448. data/spec/dummy/config/SolrMarc/translation_maps/composition_era_map.properties +0 -56
  449. data/spec/dummy/config/SolrMarc/translation_maps/country_map.properties +0 -379
  450. data/spec/dummy/config/SolrMarc/translation_maps/format_map.properties +0 -50
  451. data/spec/dummy/config/SolrMarc/translation_maps/instrument_map.properties +0 -101
  452. data/spec/dummy/config/SolrMarc/translation_maps/language_map.properties +0 -490
  453. data/spec/dummy/config/application.rb +0 -68
  454. data/spec/dummy/config/boot.rb +0 -10
  455. data/spec/dummy/config/database.yml +0 -24
  456. data/spec/dummy/config/doi.yml +0 -11
  457. data/spec/dummy/config/environment.rb +0 -5
  458. data/spec/dummy/config/environments/development.rb +0 -37
  459. data/spec/dummy/config/environments/production.rb +0 -67
  460. data/spec/dummy/config/environments/test.rb +0 -53
  461. data/spec/dummy/config/fedora.yml +0 -20
  462. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  463. data/spec/dummy/config/initializers/compass.rb +0 -3
  464. data/spec/dummy/config/initializers/devise.rb +0 -232
  465. data/spec/dummy/config/initializers/hydra_config.rb +0 -41
  466. data/spec/dummy/config/initializers/inflections.rb +0 -15
  467. data/spec/dummy/config/initializers/mailboxer.rb +0 -17
  468. data/spec/dummy/config/initializers/mime_types.rb +0 -5
  469. data/spec/dummy/config/initializers/redis_config.rb +0 -45
  470. data/spec/dummy/config/initializers/secret_token.rb +0 -7
  471. data/spec/dummy/config/initializers/session_store.rb +0 -8
  472. data/spec/dummy/config/initializers/sufia.rb +0 -66
  473. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  474. data/spec/dummy/config/jetty.yml +0 -13
  475. data/spec/dummy/config/locales/en.yml +0 -14
  476. data/spec/dummy/config/purl.yml +0 -15
  477. data/spec/dummy/config/recipients_list.yml +0 -4
  478. data/spec/dummy/config/redis.yml +0 -6
  479. data/spec/dummy/config/role_map_ci.yml +0 -15
  480. data/spec/dummy/config/role_map_cucumber.yml +0 -10
  481. data/spec/dummy/config/role_map_development.yml +0 -12
  482. data/spec/dummy/config/role_map_pre_production.yml +0 -2
  483. data/spec/dummy/config/role_map_production.yml +0 -2
  484. data/spec/dummy/config/role_map_test.yml +0 -15
  485. data/spec/dummy/config/routes.rb +0 -7
  486. data/spec/dummy/config/smtp_config.yml +0 -13
  487. data/spec/dummy/config/solr.yml +0 -17
  488. data/spec/dummy/db/migrate/20130130142162_create_purl.rb +0 -55
  489. data/spec/dummy/db/migrate/20130312135359_create_help_requests.rb +0 -22
  490. data/spec/dummy/db/migrate/20130408165008_create_users.rb +0 -12
  491. data/spec/dummy/db/migrate/20130408165009_acts_as_follower_migration.rb +0 -31
  492. data/spec/dummy/db/migrate/20130408165010_add_social_to_users.rb +0 -27
  493. data/spec/dummy/db/migrate/20130408165011_create_single_use_links.rb +0 -12
  494. data/spec/dummy/db/migrate/20130408165012_add_ldap_attrs_to_user.rb +0 -41
  495. data/spec/dummy/db/migrate/20130408165013_add_avatars_to_users.rb +0 -23
  496. data/spec/dummy/db/migrate/20130408165014_create_checksum_audit_logs.rb +0 -34
  497. data/spec/dummy/db/migrate/20130408165015_create_version_committers.rb +0 -29
  498. data/spec/dummy/db/migrate/20130408165016_add_groups_to_users.rb +0 -25
  499. data/spec/dummy/db/migrate/20130408165017_create_local_authorities.rb +0 -64
  500. data/spec/dummy/db/migrate/20130408165018_create_trophies.rb +0 -10
  501. data/spec/dummy/db/migrate/20130408165022_create_mailboxer.mailboxer_engine.rb +0 -62
  502. data/spec/dummy/db/migrate/20130408165023_add_notified_object.mailboxer_engine.rb +0 -18
  503. data/spec/dummy/db/migrate/20130408165024_add_notification_code.mailboxer_engine.rb +0 -14
  504. data/spec/dummy/db/migrate/20130408165025_add_attachments.mailboxer_engine.rb +0 -10
  505. data/spec/dummy/db/migrate/20130408165026_rename_receipts_read.mailboxer_engine.rb +0 -10
  506. data/spec/dummy/db/migrate/20130417124658_create_searches.rb +0 -16
  507. data/spec/dummy/db/migrate/20130417124659_create_bookmarks.rb +0 -18
  508. data/spec/dummy/db/migrate/20130417124660_remove_editable_fields_from_bookmarks.rb +0 -12
  509. data/spec/dummy/db/migrate/20130417124661_add_user_types_to_bookmarks_searches.rb +0 -16
  510. data/spec/dummy/db/schema.rb +0 -217
  511. data/spec/dummy/db/test.sqlite3 +0 -0
  512. data/spec/dummy/fedora_conf/conf/development/fedora.fcfg +0 -953
  513. data/spec/dummy/fedora_conf/conf/test/fedora.fcfg +0 -953
  514. data/spec/dummy/log/development.log +0 -13054
  515. data/spec/dummy/log/test.log +0 -2192
  516. data/spec/dummy/public/404.html +0 -26
  517. data/spec/dummy/public/422.html +0 -26
  518. data/spec/dummy/public/500.html +0 -25
  519. data/spec/dummy/public/favicon.ico +0 -0
  520. data/spec/dummy/script/rails +0 -6
  521. data/spec/dummy/solr_conf/conf/schema.xml +0 -692
  522. data/spec/dummy/solr_conf/conf/solrconfig.xml +0 -299
  523. data/spec/dummy/solr_conf/solr.xml +0 -35
  524. data/spec/dummy/tmp/cache/assets/BEE/280/sprockets%2F4a96c292a05953045737b1374631464d +0 -0
  525. data/spec/dummy/tmp/cache/assets/BF1/950/sprockets%2F343962410073a928e0e550a37634f849 +0 -0
  526. data/spec/dummy/tmp/cache/assets/BF5/270/sprockets%2F755e8613850805765c143a62b4e85711 +0 -0
  527. data/spec/dummy/tmp/cache/assets/BF5/760/sprockets%2F717749838fa8141976001445db424a09 +0 -0
  528. data/spec/dummy/tmp/cache/assets/BFC/E30/sprockets%2F6676159f63d37f3029087d425041a991 +0 -0
  529. data/spec/dummy/tmp/cache/assets/C01/5E0/sprockets%2Fb15629265d9575a6f31c689148668140 +0 -0
  530. data/spec/dummy/tmp/cache/assets/C10/4E0/sprockets%2Fc0151c45827b1f1308452391160d389a +0 -0
  531. data/spec/dummy/tmp/cache/assets/C1A/9E0/sprockets%2F46832526b7ea5253713a39e804017b09 +0 -0
  532. data/spec/dummy/tmp/cache/assets/C1A/F00/sprockets%2F5144a5f7bc0084194e527827a1661272 +0 -0
  533. data/spec/dummy/tmp/cache/assets/C1C/B10/sprockets%2F5621097c0b63a6141699a52371ef4724 +0 -0
  534. data/spec/dummy/tmp/cache/assets/C1F/970/sprockets%2F484003e3913a751130843fe75ae46883 +0 -0
  535. data/spec/dummy/tmp/cache/assets/C21/BE0/sprockets%2F070263a383619079784e4ce15cf15443 +0 -0
  536. data/spec/dummy/tmp/cache/assets/C27/400/sprockets%2F3b1845739203685f4774d084180ecb19 +0 -0
  537. data/spec/dummy/tmp/cache/assets/C29/1A0/sprockets%2F046a646f3f94642508526034c3b99d56 +0 -0
  538. data/spec/dummy/tmp/cache/assets/C2A/670/sprockets%2Fd0996770408b19d3de990c5422243719 +0 -0
  539. data/spec/dummy/tmp/cache/assets/C2E/280/sprockets%2Fc5809b28563d6580682809f094c2e019 +0 -0
  540. data/spec/dummy/tmp/cache/assets/C38/330/sprockets%2F431e3e6cb395117c72310311d770d160 +0 -0
  541. data/spec/dummy/tmp/cache/assets/C43/2B0/sprockets%2F9b960a046349531535a7324cc0a249e0 +0 -0
  542. data/spec/dummy/tmp/cache/assets/C49/AC0/sprockets%2Fa281149813ac418e0c56cc9201683862 +0 -0
  543. data/spec/dummy/tmp/cache/assets/C4B/C70/sprockets%2Ff25943c1702f0a80b6481b2e58059922 +0 -0
  544. data/spec/dummy/tmp/cache/assets/C4D/B80/sprockets%2Fd341193bd80195195a371185c81236ef +0 -0
  545. data/spec/dummy/tmp/cache/assets/C59/B50/sprockets%2F193b9053d1f9c704186c715727774aa8 +0 -0
  546. data/spec/dummy/tmp/cache/assets/C5C/760/sprockets%2Ff66a395731b378912b8a8756133e26b6 +0 -0
  547. data/spec/dummy/tmp/cache/assets/C5E/CC0/sprockets%2F6a54d195926b521a5c4e80f543897457 +0 -0
  548. data/spec/dummy/tmp/cache/assets/C62/330/sprockets%2F937f623c3970341e4bd4977548aa8492 +0 -0
  549. data/spec/dummy/tmp/cache/assets/C72/150/sprockets%2F8644e9479b424d8f67459d4292c8b546 +0 -0
  550. data/spec/dummy/tmp/cache/assets/C74/5D0/sprockets%2F25519d4eb6922ef8985955174966e8e1 +0 -0
  551. data/spec/dummy/tmp/cache/assets/C74/970/sprockets%2Fb28136263bc33c8b88b1d09090d48033 +0 -0
  552. data/spec/dummy/tmp/cache/assets/C77/880/sprockets%2F6c8214398623b5940fa08a9d11b5504a +0 -0
  553. data/spec/dummy/tmp/cache/assets/C78/8B0/sprockets%2F724e22480f931a0aa06e5646980b570e +0 -0
  554. data/spec/dummy/tmp/cache/assets/C79/000/sprockets%2F991514a48101105e752a852fd058eab9 +0 -0
  555. data/spec/dummy/tmp/cache/assets/C79/1C0/sprockets%2F99992370b03c4a613b9eb90029f22d11 +0 -0
  556. data/spec/dummy/tmp/cache/assets/C7B/490/sprockets%2F825ebe920d2733a79218d0375084bd41 +0 -0
  557. data/spec/dummy/tmp/cache/assets/C7B/870/sprockets%2F33e051bb754ba6ac0469692516a53875 +0 -0
  558. data/spec/dummy/tmp/cache/assets/C7D/D70/sprockets%2Fc36263d40934302871efc7d68032c36e +0 -0
  559. data/spec/dummy/tmp/cache/assets/C80/0E0/sprockets%2F28acce610f921144009bb467b6288776 +0 -0
  560. data/spec/dummy/tmp/cache/assets/C81/0A0/sprockets%2Fffc7139a2722177d934e156b11c68029 +0 -0
  561. data/spec/dummy/tmp/cache/assets/C81/750/sprockets%2F5141429549bc789c5a18f47a631ee310 +0 -0
  562. data/spec/dummy/tmp/cache/assets/C82/320/sprockets%2Fe449a41d593a7c9d76b171058a025808 +0 -0
  563. data/spec/dummy/tmp/cache/assets/C82/630/sprockets%2F618191a0a9a69720899c37204f4a6f2b +0 -0
  564. data/spec/dummy/tmp/cache/assets/C83/670/sprockets%2F057917692a3c7644931194bc2fe9a3c0 +0 -0
  565. data/spec/dummy/tmp/cache/assets/C85/180/sprockets%2Fb41a9b303c982767c2148b6791b9168a +0 -0
  566. data/spec/dummy/tmp/cache/assets/C86/840/sprockets%2F2767e4b0473f06a70846e29803d6d2a9 +0 -0
  567. data/spec/dummy/tmp/cache/assets/C86/A00/sprockets%2F435049d9f4438757b0e06db0df336744 +0 -0
  568. data/spec/dummy/tmp/cache/assets/C8C/D90/sprockets%2F6836569e10cb543b16e435e7439d0d79 +0 -0
  569. data/spec/dummy/tmp/cache/assets/C8D/A70/sprockets%2F2c19a7334026456e186881f5c57fb48f +0 -0
  570. data/spec/dummy/tmp/cache/assets/C8D/A80/sprockets%2F809d78c3559c634239a3430f68fb09f0 +0 -0
  571. data/spec/dummy/tmp/cache/assets/C90/590/sprockets%2F42c954e3f45168b32ea1784667f94d53 +0 -0
  572. data/spec/dummy/tmp/cache/assets/C90/F90/sprockets%2F390fb924f8ab076253683671b89b94b6 +0 -0
  573. data/spec/dummy/tmp/cache/assets/C91/320/sprockets%2F979753779357229cac20c75b44ae4d82 +0 -0
  574. data/spec/dummy/tmp/cache/assets/C93/840/sprockets%2F0d4e97442bf041803f01b01d0d3c5308 +0 -0
  575. data/spec/dummy/tmp/cache/assets/C95/010/sprockets%2F56f50610d12bf99f348e619575757b6e +0 -0
  576. data/spec/dummy/tmp/cache/assets/C95/0F0/sprockets%2F650c2005e602ab47f62431ac0a2d2985 +0 -0
  577. data/spec/dummy/tmp/cache/assets/C95/2E0/sprockets%2F2a2a136c189d3f7437d31be31c820101 +0 -0
  578. data/spec/dummy/tmp/cache/assets/C95/4A0/sprockets%2F2e7c6939f061337e9d65b8a34857a591 +0 -0
  579. data/spec/dummy/tmp/cache/assets/C97/920/sprockets%2Fec7912a49919820961fe3922f7a77d28 +0 -0
  580. data/spec/dummy/tmp/cache/assets/C9B/D40/sprockets%2F66b4c464499c5fd3737c36517265f89c +0 -0
  581. data/spec/dummy/tmp/cache/assets/C9E/A80/sprockets%2F8401fd13fe82bb392806930ed02005e1 +0 -0
  582. data/spec/dummy/tmp/cache/assets/C9F/A70/sprockets%2Fc87707b63b1f6200ee10d87220f51a80 +0 -0
  583. data/spec/dummy/tmp/cache/assets/CA0/710/sprockets%2Fb42e113e23858760eef4467ab0d43021 +0 -0
  584. data/spec/dummy/tmp/cache/assets/CA2/070/sprockets%2Fa51700d5b1b33350b79d955243b437ee +0 -0
  585. data/spec/dummy/tmp/cache/assets/CA2/4C0/sprockets%2F28b7f863550ad330b03ea4600bf94148 +0 -0
  586. data/spec/dummy/tmp/cache/assets/CA6/6C0/sprockets%2Faa7a13e25198066f183fa670b8035f13 +0 -0
  587. data/spec/dummy/tmp/cache/assets/CA7/7F0/sprockets%2F24fa065bbacaa11929378433f5175069 +0 -0
  588. data/spec/dummy/tmp/cache/assets/CA7/B00/sprockets%2F308d041d879e14263b288a55cbdc2405 +0 -0
  589. data/spec/dummy/tmp/cache/assets/CA8/580/sprockets%2F0d26b0e44966c1371d8c511b14b684e7 +0 -0
  590. data/spec/dummy/tmp/cache/assets/CA9/1E0/sprockets%2F3d2699ef5903889e899a6204639fd2f7 +0 -0
  591. data/spec/dummy/tmp/cache/assets/CA9/5C0/sprockets%2F7d4fe23150294500a7bcd2630667e5c8 +0 -0
  592. data/spec/dummy/tmp/cache/assets/CA9/5D0/sprockets%2F0a836f867c24d13da60f594402512d5e +0 -0
  593. data/spec/dummy/tmp/cache/assets/CAA/770/sprockets%2Fe47883595d98483e42ffa84742f9771e +0 -0
  594. data/spec/dummy/tmp/cache/assets/CAA/C20/sprockets%2Fb7b1bd5008a414158fd686f0460282f7 +0 -0
  595. data/spec/dummy/tmp/cache/assets/CAB/3B0/sprockets%2F060190928e7d199e0c44128ee0b414fc +0 -0
  596. data/spec/dummy/tmp/cache/assets/CAB/780/sprockets%2F620ba99c260539e5c24862fb38bf5021 +0 -0
  597. data/spec/dummy/tmp/cache/assets/CAB/790/sprockets%2F97b20017838b0da007d65a908867eab4 +0 -0
  598. data/spec/dummy/tmp/cache/assets/CAB/E20/sprockets%2F79e778b84a99e64374980fc68d69162b +0 -0
  599. data/spec/dummy/tmp/cache/assets/CAD/070/sprockets%2F227072f77f22245d2f5e59ba7e1131e6 +0 -0
  600. data/spec/dummy/tmp/cache/assets/CAD/130/sprockets%2F8f311d5849c26ea0cd22e93d84290305 +0 -0
  601. data/spec/dummy/tmp/cache/assets/CAD/3A0/sprockets%2F1133c11c76d960a91f8a93446d509ec3 +0 -0
  602. data/spec/dummy/tmp/cache/assets/CAD/5E0/sprockets%2F8f93ee302135f0b4f9200b5a136775f7 +0 -0
  603. data/spec/dummy/tmp/cache/assets/CAD/670/sprockets%2F99fd50bd74b642556b363372e01b74d0 +0 -0
  604. data/spec/dummy/tmp/cache/assets/CAD/C40/sprockets%2F2248c4ae9bd13787dc7104d2070b8809 +0 -0
  605. data/spec/dummy/tmp/cache/assets/CAF/100/sprockets%2Fb027bc6aa0808c770390195b69b4874e +0 -0
  606. data/spec/dummy/tmp/cache/assets/CAF/8D0/sprockets%2Fb0b1385b6d49b01eb71696759b82730c +0 -0
  607. data/spec/dummy/tmp/cache/assets/CAF/E00/sprockets%2Ff047f9747ca292f228002f2d1647de23 +0 -0
  608. data/spec/dummy/tmp/cache/assets/CB1/040/sprockets%2F7c40bc7d01d47a69055b5f8959b25440 +0 -0
  609. data/spec/dummy/tmp/cache/assets/CB1/9A0/sprockets%2F165098c3e3de3f14f4748528023ba9a5 +0 -0
  610. data/spec/dummy/tmp/cache/assets/CB3/E80/sprockets%2Fb1722b410668cc1a06d7cf977b847961 +0 -0
  611. data/spec/dummy/tmp/cache/assets/CB4/440/sprockets%2F9872a6eb38119353af2e417f823a6c71 +0 -0
  612. data/spec/dummy/tmp/cache/assets/CB4/5C0/sprockets%2F32ea09ba3835e42f72463a8986802de4 +0 -0
  613. data/spec/dummy/tmp/cache/assets/CB6/490/sprockets%2Fb243995f86d161c703fa5c6886080bc3 +0 -0
  614. data/spec/dummy/tmp/cache/assets/CB7/3D0/sprockets%2F195922257458aaf29a92e07ca37b6e19 +0 -0
  615. data/spec/dummy/tmp/cache/assets/CB8/FC0/sprockets%2F9ebb733338e43918d81d0651ed77d117 +0 -0
  616. data/spec/dummy/tmp/cache/assets/CBA/E80/sprockets%2Fd227560bb4535d7d998022e97d94ba81 +0 -0
  617. data/spec/dummy/tmp/cache/assets/CBB/7B0/sprockets%2F6008667b487e01dfbf7582e29b4354b7 +0 -0
  618. data/spec/dummy/tmp/cache/assets/CBB/F50/sprockets%2F0e379d44589f6b214ae64418f63a5e63 +0 -0
  619. data/spec/dummy/tmp/cache/assets/CBC/640/sprockets%2F7f1829e1234d375d891b920e4ecc6709 +0 -0
  620. data/spec/dummy/tmp/cache/assets/CBC/DB0/sprockets%2F902f821fe9720a4a8e98cb7410584b69 +0 -0
  621. data/spec/dummy/tmp/cache/assets/CBC/FD0/sprockets%2Fac1b68418fb0975660664c8a98fe0445 +0 -0
  622. data/spec/dummy/tmp/cache/assets/CBE/B30/sprockets%2F539a613adb0a431a71042ea9152535ab +0 -0
  623. data/spec/dummy/tmp/cache/assets/CC0/B60/sprockets%2F8f426516d89fabf78a3e62353881d505 +0 -0
  624. data/spec/dummy/tmp/cache/assets/CC0/C00/sprockets%2F81a98f5d3365e351e443b5a76855de29 +0 -0
  625. data/spec/dummy/tmp/cache/assets/CC2/E30/sprockets%2F6ce90876c61a1a3fbb26796355888c55 +0 -0
  626. data/spec/dummy/tmp/cache/assets/CC3/510/sprockets%2F545ef92ea771756595d792318eae33d2 +0 -0
  627. data/spec/dummy/tmp/cache/assets/CC4/A80/sprockets%2F027729ea35a84872d5268ee8855f6ce0 +0 -0
  628. data/spec/dummy/tmp/cache/assets/CC4/B00/sprockets%2F3400a0e9cfdc0d723b17293ab4005752 +0 -0
  629. data/spec/dummy/tmp/cache/assets/CC5/250/sprockets%2F7634cf7556551f289dfd08e3957b2c34 +0 -0
  630. data/spec/dummy/tmp/cache/assets/CC5/990/sprockets%2F1309525d697e6a75299f532f4ad719df +0 -0
  631. data/spec/dummy/tmp/cache/assets/CC5/EB0/sprockets%2Fe37dfd875763d5323c94dd71d2709854 +0 -0
  632. data/spec/dummy/tmp/cache/assets/CC6/D90/sprockets%2F35335cb5116dcd9870b9658dff895590 +0 -0
  633. data/spec/dummy/tmp/cache/assets/CC9/280/sprockets%2Fdeac97f7380f5496725203d9d96008f9 +0 -0
  634. data/spec/dummy/tmp/cache/assets/CCA/260/sprockets%2F7b7cd95379c9d15cf28336815c83555f +0 -0
  635. data/spec/dummy/tmp/cache/assets/CCC/060/sprockets%2F117ab31b70c615a1efca88058312379a +0 -0
  636. data/spec/dummy/tmp/cache/assets/CCC/710/sprockets%2F97e7e993150e99c7c312d89d964d21b5 +0 -0
  637. data/spec/dummy/tmp/cache/assets/CCC/8B0/sprockets%2F968c3e1e4d2e647f0872cfd692471779 +0 -0
  638. data/spec/dummy/tmp/cache/assets/CCD/4E0/sprockets%2F02bc354b6b4e98b1e8204c365015b55a +0 -0
  639. data/spec/dummy/tmp/cache/assets/CCE/200/sprockets%2F37a28f8fe2880695e7f1b7f051429e99 +0 -0
  640. data/spec/dummy/tmp/cache/assets/CCE/250/sprockets%2Fb2775e6d22a2d0c03e5d693402a32f54 +0 -0
  641. data/spec/dummy/tmp/cache/assets/CCE/B30/sprockets%2F3a68a87aaa70d5762bb234103a9039b5 +0 -0
  642. data/spec/dummy/tmp/cache/assets/CCF/F00/sprockets%2Fe1a6978a79078b12100e422a2721bfcc +0 -0
  643. data/spec/dummy/tmp/cache/assets/CD0/E80/sprockets%2F88439ada18202054b09e32aae930b9d1 +0 -0
  644. data/spec/dummy/tmp/cache/assets/CD1/710/sprockets%2F8414f20bc1d8106c03473b97a9233eea +0 -0
  645. data/spec/dummy/tmp/cache/assets/CD1/8C0/sprockets%2F4be8408c410a790ab157824a90b4e6b2 +0 -0
  646. data/spec/dummy/tmp/cache/assets/CD2/970/sprockets%2Fbd504060676b0e451ad0c996a342db85 +0 -0
  647. data/spec/dummy/tmp/cache/assets/CD3/440/sprockets%2F45949886cb988ab545c517ee6538cd84 +0 -0
  648. data/spec/dummy/tmp/cache/assets/CD4/2E0/sprockets%2F9fbb4d45561962d0595320b30eac804a +0 -0
  649. data/spec/dummy/tmp/cache/assets/CD6/2D0/sprockets%2F4716672d32c3216070afc77b50fa4d9c +0 -0
  650. data/spec/dummy/tmp/cache/assets/CD7/800/sprockets%2F26d7709cac826d3a51fc11a982808a21 +0 -0
  651. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  652. data/spec/dummy/tmp/cache/assets/CD8/490/sprockets%2Fd546ce4a62943121aa52b353f725be96 +0 -0
  653. data/spec/dummy/tmp/cache/assets/CD8/830/sprockets%2F99f7530e8785b29f83fd44f995074ac8 +0 -0
  654. data/spec/dummy/tmp/cache/assets/CD8/B40/sprockets%2Fb9154f37135b4b5af2c7880fe2a71071 +0 -0
  655. data/spec/dummy/tmp/cache/assets/CDA/1E0/sprockets%2Fc27bb3c84850b6222615564f9c074eac +0 -0
  656. data/spec/dummy/tmp/cache/assets/CDA/330/sprockets%2F7b3e1f0dda414f78641f035972f30b27 +0 -0
  657. data/spec/dummy/tmp/cache/assets/CDA/660/sprockets%2Fec45e7dc13082d1ab99620807386b4d0 +0 -0
  658. data/spec/dummy/tmp/cache/assets/CDA/860/sprockets%2F44755e113ac2ac865d38ea93ec244272 +0 -0
  659. data/spec/dummy/tmp/cache/assets/CDA/B60/sprockets%2F8712aa7bd4bd98d2b902206f4a342991 +0 -0
  660. data/spec/dummy/tmp/cache/assets/CDB/BA0/sprockets%2Fcff491e350e73e48a351a350d442f077 +0 -0
  661. data/spec/dummy/tmp/cache/assets/CDC/1F0/sprockets%2Fe0805fbd23056b4a73d59a6f9546c511 +0 -0
  662. data/spec/dummy/tmp/cache/assets/CDC/5E0/sprockets%2Fb86884a10093343345358ecb5e4af2eb +0 -0
  663. data/spec/dummy/tmp/cache/assets/CDD/DB0/sprockets%2Fda33591d5f2e15e06203b086646ed8f4 +0 -0
  664. data/spec/dummy/tmp/cache/assets/CDE/CD0/sprockets%2Fb89f26279a0873b7d64ac032733cf00f +0 -0
  665. data/spec/dummy/tmp/cache/assets/CDE/E20/sprockets%2F2807e11992ffebac41f4716a19c60644 +0 -0
  666. data/spec/dummy/tmp/cache/assets/CDF/C40/sprockets%2F3317aa4af75d07d88135f846433fb25c +0 -0
  667. data/spec/dummy/tmp/cache/assets/CDF/F20/sprockets%2Fe5133e2e15e56f115721d983158bfd1f +0 -0
  668. data/spec/dummy/tmp/cache/assets/CE0/970/sprockets%2F652e3d196b12d27fc12317f8527bf1e8 +0 -0
  669. data/spec/dummy/tmp/cache/assets/CE1/680/sprockets%2Fc1a9006972ec7253d5db15d645984cc3 +0 -0
  670. data/spec/dummy/tmp/cache/assets/CE2/8F0/sprockets%2F69f45b7bd2f66927dbb1645537a01e14 +0 -0
  671. data/spec/dummy/tmp/cache/assets/CE2/A60/sprockets%2F7cb65dd059b5c978d154dc090519522a +0 -0
  672. data/spec/dummy/tmp/cache/assets/CE4/1B0/sprockets%2F4893667b7a21289b464be4bb05d6cb37 +0 -0
  673. data/spec/dummy/tmp/cache/assets/CE4/9C0/sprockets%2Fc28a77206f192c1963afc3169ac476b8 +0 -0
  674. data/spec/dummy/tmp/cache/assets/CE4/E50/sprockets%2Fad4224668dfb29f623b928b95aa51257 +0 -0
  675. data/spec/dummy/tmp/cache/assets/CE5/830/sprockets%2Fd077859e17954ebc4020108dcf84a7a7 +0 -0
  676. data/spec/dummy/tmp/cache/assets/CE8/FF0/sprockets%2F57221f654432f9c8192e14d13eb9ff6c +0 -0
  677. data/spec/dummy/tmp/cache/assets/CE9/010/sprockets%2F4417316b4458791cc815adf870f9d0ee +0 -0
  678. data/spec/dummy/tmp/cache/assets/CE9/740/sprockets%2F4c5e67849a42922256c692cebe3625ae +0 -0
  679. data/spec/dummy/tmp/cache/assets/CEA/8C0/sprockets%2Fa95a807cc5ce999a772c65c332a38254 +0 -0
  680. data/spec/dummy/tmp/cache/assets/CEA/900/sprockets%2Fa333b33a23500c0eb493af2d2b4421d7 +0 -0
  681. data/spec/dummy/tmp/cache/assets/CEA/930/sprockets%2Ff8c9365834a4e55a433228db982fd52b +0 -0
  682. data/spec/dummy/tmp/cache/assets/CEA/F50/sprockets%2F6a3a83c94d4551316d9f69e3b572dd27 +0 -0
  683. data/spec/dummy/tmp/cache/assets/CEA/F70/sprockets%2F829703e65fe075968b0c71197fbddc20 +0 -0
  684. data/spec/dummy/tmp/cache/assets/CEB/D10/sprockets%2Fd72f494e234538d23936515dce8c2e6c +0 -0
  685. data/spec/dummy/tmp/cache/assets/CEF/9C0/sprockets%2F8d35c088af286570915ee524f71fca67 +0 -0
  686. data/spec/dummy/tmp/cache/assets/CF1/310/sprockets%2F8a125339996eee66b2a9e5512ee843e4 +0 -0
  687. data/spec/dummy/tmp/cache/assets/CF2/220/sprockets%2Fd2473a08bfca80032fc2b63d1b701155 +0 -0
  688. data/spec/dummy/tmp/cache/assets/CF2/D30/sprockets%2F3386a3e4c27708fac9b2084de999089b +0 -0
  689. data/spec/dummy/tmp/cache/assets/CF3/9C0/sprockets%2Fa83e02f3a413d8cd10312bb8d209a714 +0 -0
  690. data/spec/dummy/tmp/cache/assets/CF4/5D0/sprockets%2F175c060809f92eee8631653fc6fa7f68 +0 -0
  691. data/spec/dummy/tmp/cache/assets/CF7/0D0/sprockets%2F3083ce7289f23b977d2374f259fb7be7 +0 -0
  692. data/spec/dummy/tmp/cache/assets/CF7/C60/sprockets%2Fb2d3f448e350f07335cb04dc4b115b42 +0 -0
  693. data/spec/dummy/tmp/cache/assets/CF8/810/sprockets%2Fc87670b2a502ef0aa460304751eb63db +0 -0
  694. data/spec/dummy/tmp/cache/assets/CFA/700/sprockets%2F1f5e28dd03721cb63a4e9912ee00024a +0 -0
  695. data/spec/dummy/tmp/cache/assets/CFB/C00/sprockets%2F28bb0b5d3c211a35792130e7e1ed53c7 +0 -0
  696. data/spec/dummy/tmp/cache/assets/CFD/800/sprockets%2F602111c1b5e162c695dfaa0c5e90358d +0 -0
  697. data/spec/dummy/tmp/cache/assets/D00/480/sprockets%2F9c79987623f41db580d580fcd3af8887 +0 -0
  698. data/spec/dummy/tmp/cache/assets/D01/4D0/sprockets%2F8b506130e5fed374410470ffec2a36e0 +0 -0
  699. data/spec/dummy/tmp/cache/assets/D02/B00/sprockets%2F24cb139b8e033b92f144dee0d9e40513 +0 -0
  700. data/spec/dummy/tmp/cache/assets/D04/1D0/sprockets%2F7c0280d29016bff02e140572f4b4f7fc +0 -0
  701. data/spec/dummy/tmp/cache/assets/D04/C30/sprockets%2Fa3d9b09b0c053086b2a524e349ec6f35 +0 -0
  702. data/spec/dummy/tmp/cache/assets/D05/070/sprockets%2F0c4376d17c840c7d33de7e070e06b7a2 +0 -0
  703. data/spec/dummy/tmp/cache/assets/D06/230/sprockets%2F1cc3ffc359ca44b57d9636301bf10571 +0 -0
  704. data/spec/dummy/tmp/cache/assets/D06/360/sprockets%2Fb65310fa7a1f8eeb184a510531658e4f +0 -0
  705. data/spec/dummy/tmp/cache/assets/D06/FB0/sprockets%2Ffbbc59afa21227148436b62ec761804c +0 -0
  706. data/spec/dummy/tmp/cache/assets/D08/3B0/sprockets%2F28ee40c314cc04a260743a6909ff7b9a +0 -0
  707. data/spec/dummy/tmp/cache/assets/D08/3B0/sprockets%2F43f40fd864db51134c5bb2e88b14337d +0 -0
  708. data/spec/dummy/tmp/cache/assets/D08/5A0/sprockets%2Fedc975623910ce09602b3b5f51a70ff1 +0 -0
  709. data/spec/dummy/tmp/cache/assets/D09/8B0/sprockets%2Ffd119008a2479e6caf815c3657ea2a32 +0 -0
  710. data/spec/dummy/tmp/cache/assets/D09/C80/sprockets%2F7c3a2ee228fb640ecd8c3823311881f2 +0 -0
  711. data/spec/dummy/tmp/cache/assets/D0A/880/sprockets%2F031ce75177b64d265b8b58f31d5cd24a +0 -0
  712. data/spec/dummy/tmp/cache/assets/D0B/A80/sprockets%2F8f752c1b29fe6660e40162d9a9a40a4b +0 -0
  713. data/spec/dummy/tmp/cache/assets/D0C/8E0/sprockets%2Fd5988a30a4210af88a139700ae89aa9d +0 -0
  714. data/spec/dummy/tmp/cache/assets/D0C/AA0/sprockets%2F150477c7b4a296af65cbda66048a73d3 +0 -0
  715. data/spec/dummy/tmp/cache/assets/D0D/320/sprockets%2F6197f7697db2c678ff77ffa98837822a +0 -0
  716. data/spec/dummy/tmp/cache/assets/D0D/440/sprockets%2Fbc086214da3895404ab038e397bdf45f +0 -0
  717. data/spec/dummy/tmp/cache/assets/D0D/8D0/sprockets%2F374cb33170b158fda7fd680d1126c99c +0 -0
  718. data/spec/dummy/tmp/cache/assets/D0E/0B0/sprockets%2F8d9dc3fc716b8f659b124abb20033954 +0 -0
  719. data/spec/dummy/tmp/cache/assets/D0E/4A0/sprockets%2Fd31764d33cba12b9f89cf74a932408e0 +0 -0
  720. data/spec/dummy/tmp/cache/assets/D0F/040/sprockets%2Fb2d26c724ae8198b25a23354289bae9d +0 -0
  721. data/spec/dummy/tmp/cache/assets/D0F/380/sprockets%2Fab83b3a0a7f2155a1d967838773b59ca +0 -0
  722. data/spec/dummy/tmp/cache/assets/D0F/EE0/sprockets%2F735335952b9e005f8273141c6fdadbdf +0 -0
  723. data/spec/dummy/tmp/cache/assets/D10/510/sprockets%2F015dec16afa9648285e2d301f26fc865 +0 -0
  724. data/spec/dummy/tmp/cache/assets/D10/6B0/sprockets%2F4ab0d420f9d9732fb796425e8abc0447 +0 -0
  725. data/spec/dummy/tmp/cache/assets/D11/390/sprockets%2F1f48c3cd0d514b4e189d16015388ef9b +0 -0
  726. data/spec/dummy/tmp/cache/assets/D11/670/sprockets%2F6bc2cb555fe34b794095fa5878103ac3 +0 -0
  727. data/spec/dummy/tmp/cache/assets/D12/D10/sprockets%2F235f530e6143e6855451efe9ae53cda5 +0 -0
  728. data/spec/dummy/tmp/cache/assets/D13/2E0/sprockets%2F7b125a9e648ff8bc51848d05f3a2a822 +0 -0
  729. data/spec/dummy/tmp/cache/assets/D13/F40/sprockets%2Fd8d6e462d46d3e912ab0d42f62d64746 +0 -0
  730. data/spec/dummy/tmp/cache/assets/D14/530/sprockets%2F1bd4423498d62dfbd824b51d6e9049b6 +0 -0
  731. data/spec/dummy/tmp/cache/assets/D14/B80/sprockets%2F958f1a071d2c8447c40f936ca480fff1 +0 -0
  732. data/spec/dummy/tmp/cache/assets/D14/D10/sprockets%2F8fb18276535bb290ec79a9d2502f2de4 +0 -0
  733. data/spec/dummy/tmp/cache/assets/D14/D30/sprockets%2Ff764d030964480dbcd47f560bc5912ff +0 -0
  734. data/spec/dummy/tmp/cache/assets/D15/860/sprockets%2Fff190da59237984fbc5984300bde046b +0 -0
  735. data/spec/dummy/tmp/cache/assets/D16/660/sprockets%2F13ee787c5864e162826fc012cfc8c7a3 +0 -0
  736. data/spec/dummy/tmp/cache/assets/D16/700/sprockets%2Fd60358a8fd903864b2564c61d7c2c4ef +0 -0
  737. data/spec/dummy/tmp/cache/assets/D16/CB0/sprockets%2F4736e54c5b3db5d0a3e538d763f75c91 +0 -0
  738. data/spec/dummy/tmp/cache/assets/D16/D00/sprockets%2Fd1c51742e989d671c2ef2da75a4f1492 +0 -0
  739. data/spec/dummy/tmp/cache/assets/D17/220/sprockets%2F321c818f884fc2e3d3b31a97e6c8055f +0 -0
  740. data/spec/dummy/tmp/cache/assets/D17/7F0/sprockets%2Fc7c5113e82e0fda38545bf7867274ae5 +0 -0
  741. data/spec/dummy/tmp/cache/assets/D18/090/sprockets%2F2aae174229689b9b55b247c8428becf4 +0 -0
  742. data/spec/dummy/tmp/cache/assets/D18/0C0/sprockets%2Fd09a9f246ee8dd44250e47364135df9a +0 -0
  743. data/spec/dummy/tmp/cache/assets/D18/F50/sprockets%2F2b7958cbf652ef00a5a09f835c22959d +0 -0
  744. data/spec/dummy/tmp/cache/assets/D19/0F0/sprockets%2F7b91bcc79f75b08b43d759a50993a1c4 +0 -0
  745. data/spec/dummy/tmp/cache/assets/D1B/1F0/sprockets%2F5c89e413f2c16cda19e8882905ed9e01 +0 -0
  746. data/spec/dummy/tmp/cache/assets/D1B/600/sprockets%2F67b5ddc3e4604184b9eea8052c5f6929 +0 -0
  747. data/spec/dummy/tmp/cache/assets/D1C/240/sprockets%2F69e7bcb3f4b65499484a46c7b645c2a2 +0 -0
  748. data/spec/dummy/tmp/cache/assets/D1C/860/sprockets%2F776ba0a574f61844c7ce9e86eb4b2455 +0 -0
  749. data/spec/dummy/tmp/cache/assets/D1C/940/sprockets%2Fe98e19da68794d5caf8940331511dbb6 +0 -0
  750. data/spec/dummy/tmp/cache/assets/D1E/D80/sprockets%2Fb0d8898718d71c7cf2c076c858b0f1c6 +0 -0
  751. data/spec/dummy/tmp/cache/assets/D1F/F90/sprockets%2F58bd4a5e8ee00669e40477c4e94f52f3 +0 -0
  752. data/spec/dummy/tmp/cache/assets/D20/F30/sprockets%2F7ad17900be4e1022daba23bf30b89025 +0 -0
  753. data/spec/dummy/tmp/cache/assets/D21/D80/sprockets%2F76b48bf68bf3f69b83be3072225d658d +0 -0
  754. data/spec/dummy/tmp/cache/assets/D22/220/sprockets%2F237161f00c4175301abe0eece48ba73a +0 -0
  755. data/spec/dummy/tmp/cache/assets/D22/440/sprockets%2Ffcee3489424257547cad87881cbb7f61 +0 -0
  756. data/spec/dummy/tmp/cache/assets/D23/2B0/sprockets%2Fbd496f629ba93446fdf36545a64d96a4 +0 -0
  757. data/spec/dummy/tmp/cache/assets/D23/730/sprockets%2F9cd39ce917937e8a0d7c46618a4fb418 +0 -0
  758. data/spec/dummy/tmp/cache/assets/D25/970/sprockets%2F0f90def26f8517475577781d9eae40de +0 -0
  759. data/spec/dummy/tmp/cache/assets/D27/2E0/sprockets%2F6cc3a48c6b79524a847157fbc97f17f9 +0 -0
  760. data/spec/dummy/tmp/cache/assets/D27/F40/sprockets%2Fee2b113e38a2b37d97b82620aa3e2b21 +0 -0
  761. data/spec/dummy/tmp/cache/assets/D28/480/sprockets%2Fd461090cc504002c44e6d871acd1dab9 +0 -0
  762. data/spec/dummy/tmp/cache/assets/D28/680/sprockets%2Ff81c0593fa21cfa09dac290085a0413c +0 -0
  763. data/spec/dummy/tmp/cache/assets/D28/750/sprockets%2F9bb1842c7189826aede6406f5ee768e6 +0 -0
  764. data/spec/dummy/tmp/cache/assets/D29/200/sprockets%2Ff6f398ae175d2c738c47b535e37a859f +0 -0
  765. data/spec/dummy/tmp/cache/assets/D29/340/sprockets%2F3d50c1a8206024147eced2e442cd9ea2 +0 -0
  766. data/spec/dummy/tmp/cache/assets/D29/3C0/sprockets%2Fd521df5ab31d34b479f364b1ba00722f +0 -0
  767. data/spec/dummy/tmp/cache/assets/D29/A10/sprockets%2Ffa016b85d46779d9538faf482d9b0d88 +0 -0
  768. data/spec/dummy/tmp/cache/assets/D29/B60/sprockets%2Fbd8b53130b5c2ac56a7435abf663b620 +0 -0
  769. data/spec/dummy/tmp/cache/assets/D2A/AE0/sprockets%2Ff765d69ffb2717d5b3fc6919255a44f9 +0 -0
  770. data/spec/dummy/tmp/cache/assets/D2B/610/sprockets%2F747a00b86d75f71b2d313ec4114fab1c +0 -0
  771. data/spec/dummy/tmp/cache/assets/D2B/BB0/sprockets%2Fd78219f3ad7899984e93c1cf27f470ac +0 -0
  772. data/spec/dummy/tmp/cache/assets/D2D/220/sprockets%2F952a222a7755da0f4a0b537dc9d40c3b +0 -0
  773. data/spec/dummy/tmp/cache/assets/D30/A20/sprockets%2Fbb62e103dc74b8a0157e9ac64e04615d +0 -0
  774. data/spec/dummy/tmp/cache/assets/D31/D30/sprockets%2F7b39816dae3d37aaa36d1014b65d44b5 +0 -0
  775. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  776. data/spec/dummy/tmp/cache/assets/D33/5F0/sprockets%2Fc0fc6ad016c68844bfab869024421ab6 +0 -0
  777. data/spec/dummy/tmp/cache/assets/D33/E30/sprockets%2Feb24e1c5c186fb6a917dd22a0165614f +0 -0
  778. data/spec/dummy/tmp/cache/assets/D34/540/sprockets%2F5ab186f3051df37d0d13bd4d7e38d702 +0 -0
  779. data/spec/dummy/tmp/cache/assets/D34/6A0/sprockets%2F439f79ff15f7e549caf380947acd8289 +0 -0
  780. data/spec/dummy/tmp/cache/assets/D34/950/sprockets%2F3c88c750d2c15d804f246fd1ec100d4f +0 -0
  781. data/spec/dummy/tmp/cache/assets/D35/400/sprockets%2Fdf430afbb0376b18743e6e09b29a3b17 +0 -0
  782. data/spec/dummy/tmp/cache/assets/D36/3F0/sprockets%2F5c4f771bdfcd3a1834276cdd0490116c +0 -0
  783. data/spec/dummy/tmp/cache/assets/D36/AE0/sprockets%2Fa176d1d0edd296a07491a5b1269e4ec3 +0 -0
  784. data/spec/dummy/tmp/cache/assets/D37/440/sprockets%2F7cfcda54012ad65c9d11463c611b9c96 +0 -0
  785. data/spec/dummy/tmp/cache/assets/D39/B30/sprockets%2F399d8a1320aeb33460b7c96ceb7e323d +0 -0
  786. data/spec/dummy/tmp/cache/assets/D3A/CE0/sprockets%2F8d66efed932b91661f51d5b1ae10222f +0 -0
  787. data/spec/dummy/tmp/cache/assets/D3B/0B0/sprockets%2F50c5f83c89260e6051f72bb0eb9bea72 +0 -0
  788. data/spec/dummy/tmp/cache/assets/D3B/520/sprockets%2F2c7849e41fe961de63dad0e4c33a3152 +0 -0
  789. data/spec/dummy/tmp/cache/assets/D3B/900/sprockets%2F899093230df091ea1b7fb3d1b9421ddf +0 -0
  790. data/spec/dummy/tmp/cache/assets/D3B/D80/sprockets%2F738da474a477ce7be056fc2c1da74042 +0 -0
  791. data/spec/dummy/tmp/cache/assets/D3C/290/sprockets%2Fc6ef34f37a00798fb50c6193baae9070 +0 -0
  792. data/spec/dummy/tmp/cache/assets/D3C/630/sprockets%2F5b0eee423e49a4e251c59a307f475d2e +0 -0
  793. data/spec/dummy/tmp/cache/assets/D3C/C00/sprockets%2Fef54a62fe06bff62227348f16ef00e14 +0 -0
  794. data/spec/dummy/tmp/cache/assets/D3D/ED0/sprockets%2Ff9425a5c82f466a4180b246adcf7a4e3 +0 -0
  795. data/spec/dummy/tmp/cache/assets/D3E/2A0/sprockets%2Fab939178c90813ec8dd42fb324164cda +0 -0
  796. data/spec/dummy/tmp/cache/assets/D3E/330/sprockets%2Fbe53db478b9548646b6d0cb6050c3af5 +0 -0
  797. data/spec/dummy/tmp/cache/assets/D3E/730/sprockets%2F4132e961bdf0f2ffa2f96a4c7822e209 +0 -0
  798. data/spec/dummy/tmp/cache/assets/D3E/AC0/sprockets%2F2667b026c4dda2bfacf294919e52029f +0 -0
  799. data/spec/dummy/tmp/cache/assets/D3E/F20/sprockets%2Fe6fc74b1ef499540f9a0f0650bda1148 +0 -0
  800. data/spec/dummy/tmp/cache/assets/D40/040/sprockets%2F6d44832105d43d8e5bdb99adf730e6b2 +0 -0
  801. data/spec/dummy/tmp/cache/assets/D40/A10/sprockets%2Fad2a1b709e4f7bd921e23e7b386519c6 +0 -0
  802. data/spec/dummy/tmp/cache/assets/D40/A80/sprockets%2F9217cc4f520a8dcbfa0fc7066a867771 +0 -0
  803. data/spec/dummy/tmp/cache/assets/D40/F60/sprockets%2F2546f43ee8ffbae2c22a570149fa5583 +0 -0
  804. data/spec/dummy/tmp/cache/assets/D41/DF0/sprockets%2F0f880ba0653a81054d9f9cc8e726aae6 +0 -0
  805. data/spec/dummy/tmp/cache/assets/D42/F90/sprockets%2Fbd4a5121c6495d513075e759f8cca6ed +0 -0
  806. data/spec/dummy/tmp/cache/assets/D43/4B0/sprockets%2Ff35933f472d1b8efd7973ed2a17a10c6 +0 -0
  807. data/spec/dummy/tmp/cache/assets/D43/550/sprockets%2Fd6a7b3bda8c079a94208d3c676d62e53 +0 -0
  808. data/spec/dummy/tmp/cache/assets/D43/A50/sprockets%2F178923d572eb781148683ca6caeefaa2 +0 -0
  809. data/spec/dummy/tmp/cache/assets/D44/020/sprockets%2Ff2ac8d42804fc9f768b12a15b89e416b +0 -0
  810. data/spec/dummy/tmp/cache/assets/D44/450/sprockets%2F3632fc7b865c93feec41390cef532a45 +0 -0
  811. data/spec/dummy/tmp/cache/assets/D44/620/sprockets%2F147f823e422a8cd4fa30fc87a96bc089 +0 -0
  812. data/spec/dummy/tmp/cache/assets/D44/720/sprockets%2F80667c08bc8ba6ec00ee41de62556e96 +0 -0
  813. data/spec/dummy/tmp/cache/assets/D45/2B0/sprockets%2Fbd0dea58c57774fef248f0b0844a4654 +0 -0
  814. data/spec/dummy/tmp/cache/assets/D46/0A0/sprockets%2F97352aaf14d7ece0fd85633bf1b95708 +0 -0
  815. data/spec/dummy/tmp/cache/assets/D46/0E0/sprockets%2F97f6da893e8c725d5c8a02f15c51c6b0 +0 -0
  816. data/spec/dummy/tmp/cache/assets/D46/400/sprockets%2F3939fe62e945cceba0e6121890f452cf +0 -0
  817. data/spec/dummy/tmp/cache/assets/D47/1B0/sprockets%2Fa78955d078661fa994b28af02af6cb1c +0 -0
  818. data/spec/dummy/tmp/cache/assets/D47/1E0/sprockets%2Fbcfecf8a39945267c50c2d89a7b56311 +0 -0
  819. data/spec/dummy/tmp/cache/assets/D47/470/sprockets%2F74da2e825b7166d97bbb7614bc58d7a5 +0 -0
  820. data/spec/dummy/tmp/cache/assets/D47/510/sprockets%2F8887bbbe206afc2460c5c95cc29874f0 +0 -0
  821. data/spec/dummy/tmp/cache/assets/D47/9B0/sprockets%2Fc27b7cb57f0ef4e7c9095d608f11a618 +0 -0
  822. data/spec/dummy/tmp/cache/assets/D47/BE0/sprockets%2F552b7ca6783bfbd5f0139578dad219b9 +0 -0
  823. data/spec/dummy/tmp/cache/assets/D48/E60/sprockets%2F24e815508f0568b1c5b28cf55efafd94 +0 -0
  824. data/spec/dummy/tmp/cache/assets/D49/D20/sprockets%2F04530d816bfbab4acbd77898a9659d28 +0 -0
  825. data/spec/dummy/tmp/cache/assets/D4A/1F0/sprockets%2F98bff13de81912d7e0f2d98cb592a415 +0 -0
  826. data/spec/dummy/tmp/cache/assets/D4A/630/sprockets%2F5e201af5753b956229ce6aaf8e1dd698 +0 -0
  827. data/spec/dummy/tmp/cache/assets/D4C/150/sprockets%2F39dbc8b5a929e5f4b734a1a9347d951f +0 -0
  828. data/spec/dummy/tmp/cache/assets/D4D/060/sprockets%2Fb27e3c251f8d182877bc37863edacd96 +0 -0
  829. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  830. data/spec/dummy/tmp/cache/assets/D4E/770/sprockets%2F39c962e5f6fabccc2978d3d4160f6293 +0 -0
  831. data/spec/dummy/tmp/cache/assets/D4E/8E0/sprockets%2F429754565d5bb3ce6ed1ddbc3944d778 +0 -0
  832. data/spec/dummy/tmp/cache/assets/D4F/480/sprockets%2F5e30be10bbb0322c3f31c39e23a63e7b +0 -0
  833. data/spec/dummy/tmp/cache/assets/D51/780/sprockets%2F14d084fbe463d80039e01aa3b1dc6aa1 +0 -0
  834. data/spec/dummy/tmp/cache/assets/D52/560/sprockets%2Fabc1ba29714b88d8e2f6f89a57975a46 +0 -0
  835. data/spec/dummy/tmp/cache/assets/D52/EF0/sprockets%2F615e3453cbdf4957fc5c6e1fed824677 +0 -0
  836. data/spec/dummy/tmp/cache/assets/D56/7B0/sprockets%2F4cc5de1ec95b52629708e899b24fe64f +0 -0
  837. data/spec/dummy/tmp/cache/assets/D56/E20/sprockets%2Fe98267afbe73c6a6c089e7b386f8441c +0 -0
  838. data/spec/dummy/tmp/cache/assets/D57/2F0/sprockets%2Fcdf8872264f5f8dd811cdf810f6875a7 +0 -0
  839. data/spec/dummy/tmp/cache/assets/D57/CF0/sprockets%2F0bd945e34e4d877e2f8646f4b872dc9b +0 -0
  840. data/spec/dummy/tmp/cache/assets/D57/D40/sprockets%2F34b3c0df1d05b7dd1f3a9e234e01a185 +0 -0
  841. data/spec/dummy/tmp/cache/assets/D58/290/sprockets%2Fb1f174b16eaa838a412ea264dae6e203 +0 -0
  842. data/spec/dummy/tmp/cache/assets/D59/650/sprockets%2F5b60791a9f0337a0dbc22b5a5e1c43dc +0 -0
  843. data/spec/dummy/tmp/cache/assets/D5A/230/sprockets%2Fa2fa28a0cba207509a6f4e16253fe22f +0 -0
  844. data/spec/dummy/tmp/cache/assets/D5A/A80/sprockets%2F4581d4fbdc8aaa427e86648968e4f59d +0 -0
  845. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  846. data/spec/dummy/tmp/cache/assets/D5D/B90/sprockets%2Fe8c72ce721aaa05ab91811f5162de6b2 +0 -0
  847. data/spec/dummy/tmp/cache/assets/D5F/480/sprockets%2F1b3da6dd4f00bdf367e44113944dc06d +0 -0
  848. data/spec/dummy/tmp/cache/assets/D5F/4B0/sprockets%2F2ca5a2477bcb91172f0e4b1c5337cc6e +0 -0
  849. data/spec/dummy/tmp/cache/assets/D5F/C20/sprockets%2F34fc9c47da430016d377eb1cbc86ea00 +0 -0
  850. data/spec/dummy/tmp/cache/assets/D60/6F0/sprockets%2F2e1dc9e87db8088d102ab1e9a00d33a5 +0 -0
  851. data/spec/dummy/tmp/cache/assets/D61/6C0/sprockets%2Fc28ab2aac487ecce9865b1a05d056052 +0 -0
  852. data/spec/dummy/tmp/cache/assets/D62/030/sprockets%2F2cc738de658c9cd63d79c72f8c54983f +0 -0
  853. data/spec/dummy/tmp/cache/assets/D63/070/sprockets%2F4de95ad4c299e5ec6f9869f80f410f78 +0 -0
  854. data/spec/dummy/tmp/cache/assets/D64/3B0/sprockets%2F705da78a00c4caa995ca13d6d1d833e6 +0 -0
  855. data/spec/dummy/tmp/cache/assets/D64/A50/sprockets%2Feb3149e42a04db33d47cb6ae079a139f +0 -0
  856. data/spec/dummy/tmp/cache/assets/D64/DE0/sprockets%2Fd0afad81b9f2be80bec354477740a540 +0 -0
  857. data/spec/dummy/tmp/cache/assets/D64/E70/sprockets%2F31363a094d96c34b35faa2dbbc5ee843 +0 -0
  858. data/spec/dummy/tmp/cache/assets/D66/9F0/sprockets%2Ff5e02de12cb33bd7401ec6e1e596a683 +0 -0
  859. data/spec/dummy/tmp/cache/assets/D66/F20/sprockets%2F4ef9f100461faed72c026fea1f14784a +0 -0
  860. data/spec/dummy/tmp/cache/assets/D66/FC0/sprockets%2Ff55a8ad0d0337da1df591ab973716dd0 +0 -0
  861. data/spec/dummy/tmp/cache/assets/D67/240/sprockets%2Ff914bfb650b60c04deb9af93561dc900 +0 -0
  862. data/spec/dummy/tmp/cache/assets/D67/E80/sprockets%2F1418c24e54b137fadd2b666af6ad4e18 +0 -0
  863. data/spec/dummy/tmp/cache/assets/D68/DA0/sprockets%2F68c970cbac725127042e6d3a4fabcb78 +0 -0
  864. data/spec/dummy/tmp/cache/assets/D69/990/sprockets%2F336d351d64b64ecd3235c602fdd3cf8d +0 -0
  865. data/spec/dummy/tmp/cache/assets/D69/B30/sprockets%2F0b5c34eef65cd0bc438f1b7208f2935c +0 -0
  866. data/spec/dummy/tmp/cache/assets/D6A/1D0/sprockets%2Fe4607c2603629aa519fcce8c4ba74e4a +0 -0
  867. data/spec/dummy/tmp/cache/assets/D6A/3B0/sprockets%2Fced7dc915de92be31dd2e0123f046683 +0 -0
  868. data/spec/dummy/tmp/cache/assets/D6A/8A0/sprockets%2F1ce35b345fae4e73607b5c2dbe882c16 +0 -0
  869. data/spec/dummy/tmp/cache/assets/D6A/A80/sprockets%2F02b5e5bb80a3c80ad75ae894d428d2d8 +0 -0
  870. data/spec/dummy/tmp/cache/assets/D6A/D60/sprockets%2Fac92c702adf8d5b7b0e17a90d7b40299 +0 -0
  871. data/spec/dummy/tmp/cache/assets/D6B/F00/sprockets%2Fe2429204bd90db2fbfdec9c32196229d +0 -0
  872. data/spec/dummy/tmp/cache/assets/D6C/550/sprockets%2F641db85ce9e604cd8d818423cdc1af30 +0 -0
  873. data/spec/dummy/tmp/cache/assets/D6C/9E0/sprockets%2Fa6e0be46f1c64b80aabd94328f9d5209 +0 -0
  874. data/spec/dummy/tmp/cache/assets/D6C/A90/sprockets%2F10ed7f0ff2fa00cdc0f810975f56f780 +0 -0
  875. data/spec/dummy/tmp/cache/assets/D6C/B70/sprockets%2F0e07f3b482960c5cfd176b1cf6f5f05a +0 -0
  876. data/spec/dummy/tmp/cache/assets/D6D/9C0/sprockets%2Fed101af2d8792e1c1005e19e8df4e9b6 +0 -0
  877. data/spec/dummy/tmp/cache/assets/D6D/CC0/sprockets%2F9c793a12a1e3a1c734b48afbd6479f1e +0 -0
  878. data/spec/dummy/tmp/cache/assets/D6E/4D0/sprockets%2F675dda747ac333fc6810d3c2167c8fbc +0 -0
  879. data/spec/dummy/tmp/cache/assets/D6F/110/sprockets%2Fe3a52a2fb65d011f1d6c38efd965b892 +0 -0
  880. data/spec/dummy/tmp/cache/assets/D6F/7B0/sprockets%2F9c4023aaef54415afaf4892ced299f30 +0 -0
  881. data/spec/dummy/tmp/cache/assets/D6F/B50/sprockets%2Fc6d2f8432ae24aaa27e3c17827d59e9a +0 -0
  882. data/spec/dummy/tmp/cache/assets/D70/010/sprockets%2Fcf9ffef0069473d2f0501724dcf4bc90 +0 -0
  883. data/spec/dummy/tmp/cache/assets/D70/B00/sprockets%2F6a97bff33aebc6bc95f6950355a422b3 +0 -0
  884. data/spec/dummy/tmp/cache/assets/D71/150/sprockets%2Fb14966a7681cd1aa3d57cdc4ecb58367 +0 -0
  885. data/spec/dummy/tmp/cache/assets/D71/A40/sprockets%2Fad9ae73156c08572b1ee37c0ff96a6e1 +0 -0
  886. data/spec/dummy/tmp/cache/assets/D71/C80/sprockets%2F745a55d7c6e050193d4f66c7a0defba8 +0 -0
  887. data/spec/dummy/tmp/cache/assets/D72/090/sprockets%2Ff66b79e1eb4937aa537b0c6244be7b7a +0 -0
  888. data/spec/dummy/tmp/cache/assets/D73/200/sprockets%2F7bdcf03c31e60f9c0f93b1785c62ce68 +0 -0
  889. data/spec/dummy/tmp/cache/assets/D73/BB0/sprockets%2Fb3124981df58ad9fd11861be84a8e6aa +0 -0
  890. data/spec/dummy/tmp/cache/assets/D75/490/sprockets%2F135ee27c1d0855609dedeb7a5764cfb7 +0 -0
  891. data/spec/dummy/tmp/cache/assets/D75/7F0/sprockets%2Fe10ef4327cbc9d9e85876ba8de0032a9 +0 -0
  892. data/spec/dummy/tmp/cache/assets/D76/5E0/sprockets%2Fe92f77b31ade816f8232e09c465bacd8 +0 -0
  893. data/spec/dummy/tmp/cache/assets/D76/E00/sprockets%2Fead921beddf6e6687f7264154d15c8a0 +0 -0
  894. data/spec/dummy/tmp/cache/assets/D78/D10/sprockets%2F84643f4e00cfb50aead15f925997ee9a +0 -0
  895. data/spec/dummy/tmp/cache/assets/D78/E40/sprockets%2F72e2748cd2dd6741bed4958bcd9b460c +0 -0
  896. data/spec/dummy/tmp/cache/assets/D79/2B0/sprockets%2Fd781c467532ac45a68cb7cde69cc6d17 +0 -0
  897. data/spec/dummy/tmp/cache/assets/D79/390/sprockets%2F20a457a490f2ba1a02df3c6c44a3b3ab +0 -0
  898. data/spec/dummy/tmp/cache/assets/D7A/320/sprockets%2F0b7623f46fcb2cf7f45df4c277a8943d +0 -0
  899. data/spec/dummy/tmp/cache/assets/D7A/C60/sprockets%2F4cb5ced193f7333aefc8092176749ded +0 -0
  900. data/spec/dummy/tmp/cache/assets/D7A/E30/sprockets%2Fb970c53969bab81d3ea5497d84d5d2db +0 -0
  901. data/spec/dummy/tmp/cache/assets/D7B/940/sprockets%2Ff35f22bdaf776b5347ee9e16d0e7d194 +0 -0
  902. data/spec/dummy/tmp/cache/assets/D7C/2E0/sprockets%2Fdd597b08fd998ac4bb470903a94d2b7e +0 -0
  903. data/spec/dummy/tmp/cache/assets/D7D/780/sprockets%2F97fd646a72ca47b56d83e3680d4fe3db +0 -0
  904. data/spec/dummy/tmp/cache/assets/D7D/AF0/sprockets%2Fe4d5134b2f87d6e4362f4ed37938cccf +0 -0
  905. data/spec/dummy/tmp/cache/assets/D7E/E80/sprockets%2F611235bfd282813bdfbc998bcbe798e8 +0 -0
  906. data/spec/dummy/tmp/cache/assets/D7F/130/sprockets%2F68a638fdc54ac444a18c69e23ff95bd7 +0 -0
  907. data/spec/dummy/tmp/cache/assets/D81/060/sprockets%2F65efa7f3776a1349b954a3bf6c82e9dc +0 -0
  908. data/spec/dummy/tmp/cache/assets/D85/D60/sprockets%2Fa0a5143fa0027ee403ca04898cad5eae +0 -0
  909. data/spec/dummy/tmp/cache/assets/D87/E90/sprockets%2F20cbb1a959a4244eeb6ad0398bc13db0 +0 -0
  910. data/spec/dummy/tmp/cache/assets/D88/AB0/sprockets%2Fcc988770cd77d9c5be71b9fb8c358f11 +0 -0
  911. data/spec/dummy/tmp/cache/assets/D89/C20/sprockets%2Ffa1aa12f3eb80a74c2187392b2b3fde1 +0 -0
  912. data/spec/dummy/tmp/cache/assets/D8C/920/sprockets%2Fe7f0cfe87094ad839b6db32dc974978e +0 -0
  913. data/spec/dummy/tmp/cache/assets/D8C/9D0/sprockets%2F53669b82fc7bb2f0a8cc17bc0b1f0d02 +0 -0
  914. data/spec/dummy/tmp/cache/assets/D8C/A90/sprockets%2F7ab21b8cfb1545decb03a74752af206e +0 -0
  915. data/spec/dummy/tmp/cache/assets/D8C/E70/sprockets%2Fa2ebab9323a5aa513c597fad441f71d3 +0 -0
  916. data/spec/dummy/tmp/cache/assets/D8D/5E0/sprockets%2F4fff33680aba92da401774ebb11ab91d +0 -0
  917. data/spec/dummy/tmp/cache/assets/D91/9D0/sprockets%2F7aa868cca853e020d8c35a01ea384cbe +0 -0
  918. data/spec/dummy/tmp/cache/assets/D92/C20/sprockets%2F0efb853ff01acbe6b136406d6f825c0c +0 -0
  919. data/spec/dummy/tmp/cache/assets/D92/D90/sprockets%2Fa04ffcf24571278cafafbf92111b72a5 +0 -0
  920. data/spec/dummy/tmp/cache/assets/D93/910/sprockets%2F1f42c62ebba58b57aac0f7a825d08e34 +0 -0
  921. data/spec/dummy/tmp/cache/assets/D93/990/sprockets%2Fe03798a6a10bcba2d96db26a5e7425cc +0 -0
  922. data/spec/dummy/tmp/cache/assets/D95/2A0/sprockets%2F4b8e63ce2dd6ceaf5f465ac20103732f +0 -0
  923. data/spec/dummy/tmp/cache/assets/D95/6D0/sprockets%2F2aa509f4fe44f56c25c0f6fd2ae5a161 +0 -0
  924. data/spec/dummy/tmp/cache/assets/D95/C90/sprockets%2Ffe23d321fd01795aead7d5d9da62c502 +0 -0
  925. data/spec/dummy/tmp/cache/assets/D96/A20/sprockets%2F618e6f0c5fa2bb81f007ec64f13ad6f2 +0 -0
  926. data/spec/dummy/tmp/cache/assets/D97/BB0/sprockets%2Fd3132b7623dea68df9f1d6e2f120edc2 +0 -0
  927. data/spec/dummy/tmp/cache/assets/D97/D40/sprockets%2F2bc30a993db529c70149bef6e1a1e1ff +0 -0
  928. data/spec/dummy/tmp/cache/assets/D97/E40/sprockets%2F7b24081e0918aaba8dbf5b6b443b5f8d +0 -0
  929. data/spec/dummy/tmp/cache/assets/D97/F60/sprockets%2Ffc1a765cf1a5ad00edd5539fd921118f +0 -0
  930. data/spec/dummy/tmp/cache/assets/D98/410/sprockets%2Fa5b14fb35b6609fda372da27bcd729a7 +0 -0
  931. data/spec/dummy/tmp/cache/assets/D99/460/sprockets%2Fa2d71e18bded7bb89cb654a380c36c24 +0 -0
  932. data/spec/dummy/tmp/cache/assets/D99/710/sprockets%2Fbe555b9ddb00812c89c3ea593da166bb +0 -0
  933. data/spec/dummy/tmp/cache/assets/D99/7F0/sprockets%2Fd7096ea131a60791bdfdb2bf1cf8c546 +0 -0
  934. data/spec/dummy/tmp/cache/assets/D99/C60/sprockets%2F345bcf160e1cda280ba64c62778f6ffa +0 -0
  935. data/spec/dummy/tmp/cache/assets/D9A/4B0/sprockets%2F67ab2467d5aa129d22eec8d39f026bbe +0 -0
  936. data/spec/dummy/tmp/cache/assets/D9A/9F0/sprockets%2Fad0c0c017880f941f2d0c79bd9e1db8e +0 -0
  937. data/spec/dummy/tmp/cache/assets/D9B/680/sprockets%2F2b1a460986dcb32e976c9bd31ab3dcc9 +0 -0
  938. data/spec/dummy/tmp/cache/assets/D9C/450/sprockets%2F308443e6bdfcdb88d9dd7cac1222812e +0 -0
  939. data/spec/dummy/tmp/cache/assets/D9D/290/sprockets%2F1f3f013d8df49445e8f6d26abe4bd0c3 +0 -0
  940. data/spec/dummy/tmp/cache/assets/D9D/440/sprockets%2Fea09aba3845be5dd7eb0395cd24f7409 +0 -0
  941. data/spec/dummy/tmp/cache/assets/D9F/C10/sprockets%2F14a5da6d8cd295cb71e27386cb2cf82d +0 -0
  942. data/spec/dummy/tmp/cache/assets/DA0/050/sprockets%2F4e70122dddedda63e198f925435fd6ab +0 -0
  943. data/spec/dummy/tmp/cache/assets/DA0/A10/sprockets%2F5e3e2504f5e09d1cf3a7fe0b8b5b597b +0 -0
  944. data/spec/dummy/tmp/cache/assets/DA0/ED0/sprockets%2F98dc2a3d189ffada0f2246bd54c641e8 +0 -0
  945. data/spec/dummy/tmp/cache/assets/DA1/770/sprockets%2Ff0c58d74cd708a72245de6d64eca4af4 +0 -0
  946. data/spec/dummy/tmp/cache/assets/DA1/DE0/sprockets%2Fd5c8882bded0d9749d256f6b1bca2c22 +0 -0
  947. data/spec/dummy/tmp/cache/assets/DA2/320/sprockets%2F9bf546b408143b171e08ea96bdbd8def +0 -0
  948. data/spec/dummy/tmp/cache/assets/DA2/AE0/sprockets%2Ffa5aaf04f0d34c2ec0fe4b6777699b73 +0 -0
  949. data/spec/dummy/tmp/cache/assets/DA2/DF0/sprockets%2Fa4d747b291ab58fe31f455055afecce9 +0 -0
  950. data/spec/dummy/tmp/cache/assets/DA4/E70/sprockets%2F91cfe4a0c741f7cb405c94a06ef6fc88 +0 -0
  951. data/spec/dummy/tmp/cache/assets/DA5/490/sprockets%2F70d7f065a421fa335eaa9d7f9dc16f9e +0 -0
  952. data/spec/dummy/tmp/cache/assets/DA5/FB0/sprockets%2F2a2743b93f8fa880fb0b381e7fec9a3f +0 -0
  953. data/spec/dummy/tmp/cache/assets/DA6/1A0/sprockets%2F1a8273f6eeebf3382d7a5297ed442bed +0 -0
  954. data/spec/dummy/tmp/cache/assets/DA7/630/sprockets%2F551a6ffc85e9e9b09d21c4f3faa0683f +0 -0
  955. data/spec/dummy/tmp/cache/assets/DA7/C40/sprockets%2Ff3bd99e576d3d55b7db5902d5ef510ad +0 -0
  956. data/spec/dummy/tmp/cache/assets/DA8/800/sprockets%2F708ce27ee07de23f094ad58fe5a3d2e9 +0 -0
  957. data/spec/dummy/tmp/cache/assets/DA8/8C0/sprockets%2Fc7d54817b63e23ffea63f79b2cf27b4c +0 -0
  958. data/spec/dummy/tmp/cache/assets/DAA/C80/sprockets%2F3d82ce0b2bd937294dfa9978badc76b4 +0 -0
  959. data/spec/dummy/tmp/cache/assets/DAB/970/sprockets%2F822749b59d40dbdd06eeebb9fe516f82 +0 -0
  960. data/spec/dummy/tmp/cache/assets/DAC/350/sprockets%2Fef4b4edb4b8839b3dfac2724366f936e +0 -0
  961. data/spec/dummy/tmp/cache/assets/DAC/3D0/sprockets%2F96a54e561364e9cfcf3ff76d4c334cda +0 -0
  962. data/spec/dummy/tmp/cache/assets/DAC/7E0/sprockets%2Fd8efe880cbaa0214f7e8ea9822e82b97 +0 -0
  963. data/spec/dummy/tmp/cache/assets/DAC/B50/sprockets%2Fe9de58c203edf73baf7d457373c0ff38 +0 -0
  964. data/spec/dummy/tmp/cache/assets/DAD/AE0/sprockets%2Fc960a5f569cbef2c65a96de7e2354b5e +0 -0
  965. data/spec/dummy/tmp/cache/assets/DAE/420/sprockets%2F4c0b82f8308bf318bf0f9f79ee7d3ee3 +0 -0
  966. data/spec/dummy/tmp/cache/assets/DAE/AA0/sprockets%2Fe370bd820e0f4113abccbcf32ae504f1 +0 -0
  967. data/spec/dummy/tmp/cache/assets/DAE/F10/sprockets%2Fca79f6e9cfc139777eb3b204b7ce157f +0 -0
  968. data/spec/dummy/tmp/cache/assets/DB0/540/sprockets%2F4d974d1f0165cf73d8eff4635cf5cd7c +0 -0
  969. data/spec/dummy/tmp/cache/assets/DB0/750/sprockets%2F6bd730e2c5cc5000acec8dc04370e4aa +0 -0
  970. data/spec/dummy/tmp/cache/assets/DB0/820/sprockets%2F77f3f737c6bd7bf605aa2e78bde42e96 +0 -0
  971. data/spec/dummy/tmp/cache/assets/DB2/790/sprockets%2F734421bae33a1bb5abc15d63ab28e9bb +0 -0
  972. data/spec/dummy/tmp/cache/assets/DB4/070/sprockets%2F6a47a2aca4bf2ba42f3914c33273cdac +0 -0
  973. data/spec/dummy/tmp/cache/assets/DB7/8F0/sprockets%2Fd483f1bc989948a78690bc82fac4fecc +0 -0
  974. data/spec/dummy/tmp/cache/assets/DB8/1D0/sprockets%2F6d5f58d93cfe9af852cf7d0de050858f +0 -0
  975. data/spec/dummy/tmp/cache/assets/DB9/BD0/sprockets%2F8fbf8981357bb772dfcd897cb047cbf6 +0 -0
  976. data/spec/dummy/tmp/cache/assets/DBA/4F0/sprockets%2Fdc6128541baacce07cdfb40602d079dc +0 -0
  977. data/spec/dummy/tmp/cache/assets/DBC/600/sprockets%2F2adf9f19023a85dc210ad5aa2f6ecc35 +0 -0
  978. data/spec/dummy/tmp/cache/assets/DBE/4D0/sprockets%2Fb6a6113e09a50bccefc92ae31e0e8a66 +0 -0
  979. data/spec/dummy/tmp/cache/assets/DC0/260/sprockets%2Ff8c1ba33a2adced61e617f0618c0e7b5 +0 -0
  980. data/spec/dummy/tmp/cache/assets/DC0/B80/sprockets%2F3ccae12df235f8aa8a94b614fe4a403d +0 -0
  981. data/spec/dummy/tmp/cache/assets/DC0/CF0/sprockets%2Fb47f2d4db0f6f0380f5ceb1dd614a60d +0 -0
  982. data/spec/dummy/tmp/cache/assets/DC1/230/sprockets%2F018c5bd3c9027db1bef7c7d2fd5fe100 +0 -0
  983. data/spec/dummy/tmp/cache/assets/DC2/590/sprockets%2Fec3ca9c1e95c2026e3a72ca760c0ce8d +0 -0
  984. data/spec/dummy/tmp/cache/assets/DC2/CE0/sprockets%2F97802d08ee6b91071abdbdbfecdc5201 +0 -0
  985. data/spec/dummy/tmp/cache/assets/DC7/220/sprockets%2F2fdb6ad46cfecdd190647aba262f2644 +0 -0
  986. data/spec/dummy/tmp/cache/assets/DC7/550/sprockets%2F9cc42d9bf6b6c0ae20d317f3888aaca2 +0 -0
  987. data/spec/dummy/tmp/cache/assets/DC9/530/sprockets%2F7ca53fc74a63f99de40be2b57cb3c4a0 +0 -0
  988. data/spec/dummy/tmp/cache/assets/DCC/AD0/sprockets%2F329e8ade05b3c724ac1f3a7b13dfe9d9 +0 -0
  989. data/spec/dummy/tmp/cache/assets/DCD/410/sprockets%2Fd70c08b1a6e971dc33dc85b298aa4cff +0 -0
  990. data/spec/dummy/tmp/cache/assets/DCE/330/sprockets%2F5464ee1e41cee244d9ecf6ad96f0c04a +0 -0
  991. data/spec/dummy/tmp/cache/assets/DCF/030/sprockets%2Fcf974f930e5b1be956118dbb1fbab19d +0 -0
  992. data/spec/dummy/tmp/cache/assets/DCF/230/sprockets%2Fb1eae01df0c9fe2bc7df07a36573966f +0 -0
  993. data/spec/dummy/tmp/cache/assets/DD0/7D0/sprockets%2F98dc1aa890c5cf1dab4e5d9854c4f31b +0 -0
  994. data/spec/dummy/tmp/cache/assets/DD1/FB0/sprockets%2F7076744ff8a54cccb11fdce36affc840 +0 -0
  995. data/spec/dummy/tmp/cache/assets/DD2/3C0/sprockets%2F81ecd9c94638acd3ece19ecac462a723 +0 -0
  996. data/spec/dummy/tmp/cache/assets/DD2/900/sprockets%2Fb2aab90dfb71d7b87d7d3d61f772da85 +0 -0
  997. data/spec/dummy/tmp/cache/assets/DD3/B00/sprockets%2F1ea34ef88e1a586c3cee4f0e74c35e4c +0 -0
  998. data/spec/dummy/tmp/cache/assets/DD7/650/sprockets%2Fba62658bb1a2d43b8db8cdfaf6f86398 +0 -0
  999. data/spec/dummy/tmp/cache/assets/DD8/670/sprockets%2Fbff97fb1fd419ff38cb19d4241e1fa56 +0 -0
  1000. data/spec/dummy/tmp/cache/assets/DD9/590/sprockets%2F56a9a8dfd87c1980e590cfa4eb8ac07b +0 -0
  1001. data/spec/dummy/tmp/cache/assets/DD9/FE0/sprockets%2F2fcdf35f467e85cdcdf4af0617d8e270 +0 -0
  1002. data/spec/dummy/tmp/cache/assets/DDA/3C0/sprockets%2F3fdf6a79d62b83bce657c2f75f5e13bb +0 -0
  1003. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  1004. data/spec/dummy/tmp/cache/assets/DDD/CD0/sprockets%2Fec049b4668298faceb8714efc7a8cb5b +0 -0
  1005. data/spec/dummy/tmp/cache/assets/DE1/2D0/sprockets%2F5eaea1b2e9ccef777ef7662a591466fe +0 -0
  1006. data/spec/dummy/tmp/cache/assets/DE1/C90/sprockets%2F95ce4c5ed75e3fb871cd8d0541fea88e +0 -0
  1007. data/spec/dummy/tmp/cache/assets/DE2/540/sprockets%2Fff1570a5b9984773bfa4ae2fd7ddf87c +0 -0
  1008. data/spec/dummy/tmp/cache/assets/DEC/CE0/sprockets%2F2e12ecb93b92adbf080dc0e68bbac921 +0 -0
  1009. data/spec/dummy/tmp/cache/assets/DEE/5B0/sprockets%2Fb856b7dbe6bdc14d0dd4faa7d302126d +0 -0
  1010. data/spec/dummy/tmp/cache/assets/DEF/D20/sprockets%2Feb69b26ccb4ecb224bfa04cc53f2727b +0 -0
  1011. data/spec/dummy/tmp/cache/assets/DF1/2C0/sprockets%2Fcbfc9eb850b21e24f31f85aa624c2ead +0 -0
  1012. data/spec/dummy/tmp/cache/assets/DF1/5D0/sprockets%2Fa9ddd9fe2738d83a79df8f6f6d932da6 +0 -0
  1013. data/spec/dummy/tmp/cache/assets/DF1/EE0/sprockets%2Fec8783bca0ec3bb482ca3e691fdbb024 +0 -0
  1014. data/spec/dummy/tmp/cache/assets/DF4/F90/sprockets%2F52fabb4e583cbe5cbe1b1ee29e03c286 +0 -0
  1015. data/spec/dummy/tmp/cache/assets/DF5/0A0/sprockets%2F4ae2e0e50ecdb7be0ffa54f185ec1726 +0 -0
  1016. data/spec/dummy/tmp/cache/assets/DF8/670/sprockets%2Fe844bd2addd46abb620a68e14dff295b +0 -0
  1017. data/spec/dummy/tmp/cache/assets/DFB/C10/sprockets%2Fba5176464aee7d82c3dcdecc42583bdc +0 -0
  1018. data/spec/dummy/tmp/cache/assets/DFD/2A0/sprockets%2F4cb3593d8b87cb3ba6b046af8cbb90fe +0 -0
  1019. data/spec/dummy/tmp/cache/assets/DFD/9C0/sprockets%2F5a36fc04ff8cf92e3ba6ad6604bd6b6c +0 -0
  1020. data/spec/dummy/tmp/cache/assets/DFE/860/sprockets%2F391a61cca83b5b3cbb9ef5659ccdb76b +0 -0
  1021. data/spec/dummy/tmp/cache/assets/DFF/100/sprockets%2F694c1bab3dd7f7721e7d3cbff2cb627d +0 -0
  1022. data/spec/dummy/tmp/cache/assets/E00/540/sprockets%2Fea0ece5befbce765051e27cf991cc805 +0 -0
  1023. data/spec/dummy/tmp/cache/assets/E00/AE0/sprockets%2Fcc1df6eff73e01c8ee0a8abb276f5438 +0 -0
  1024. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  1025. data/spec/dummy/tmp/cache/assets/E08/420/sprockets%2F4ea8d3ec8185cc310389feea95de6bdc +0 -0
  1026. data/spec/dummy/tmp/cache/assets/E09/C70/sprockets%2Feffaebf57d6ae8681631a8b529f1d0ef +0 -0
  1027. data/spec/dummy/tmp/cache/assets/E0A/720/sprockets%2Fa4868ecfeb64ebb8f608f4f0c0fc57f1 +0 -0
  1028. data/spec/dummy/tmp/cache/assets/E0C/9F0/sprockets%2Fc49b3b1df797198d64edfa4bcd38aec6 +0 -0
  1029. data/spec/dummy/tmp/cache/assets/E18/E30/sprockets%2Fbf54ddfc3289f6f9fe849ff2c02aa96e +0 -0
  1030. data/spec/dummy/tmp/cache/assets/E1E/2F0/sprockets%2Fc0ee21f0726b3c8deeefeac5c1018bd3 +0 -0
  1031. data/spec/dummy/tmp/cache/assets/E22/E00/sprockets%2F691b2ce4e00eccf6ab519f4f5bddc11d +0 -0
  1032. data/spec/dummy/tmp/cache/assets/E23/130/sprockets%2F47a419bebfb28b2def7bc2f509bb2ae1 +0 -0
  1033. data/spec/dummy/tmp/cache/assets/E24/700/sprockets%2Fecd1fd635fb10ea8e034dd790dcbc5f1 +0 -0
  1034. data/spec/dummy/tmp/cache/assets/E26/9C0/sprockets%2Fa4fc53bc2b05d5bab85c0a29df2c98ff +0 -0
  1035. data/spec/dummy/tmp/cache/assets/E26/E70/sprockets%2F8412c9eba15ebcbc0dad4848aa8bf54f +0 -0
  1036. data/spec/dummy/tmp/cache/assets/E2B/510/sprockets%2Fd794c5dcc9ea44cc9dcac0fd28e4c103 +0 -0
  1037. data/spec/dummy/tmp/cache/assets/E2E/0D0/sprockets%2Fb9e01c3935b72fdc5dbebb2c8af8f82b +0 -0
  1038. data/spec/dummy/tmp/cache/assets/E2E/270/sprockets%2F197ce33dbaaa92fa3f54d9a984fdc0ae +0 -0
  1039. data/spec/dummy/tmp/cache/assets/E32/6A0/sprockets%2Faf5cef56ce13f4f1ffdcaa0555f669d1 +0 -0
  1040. data/spec/dummy/tmp/cache/assets/E33/0D0/sprockets%2Ffeba711d0a8ef2f5fddf20ff73557ec6 +0 -0
  1041. data/spec/dummy/tmp/cache/assets/E3B/970/sprockets%2F065a75b14ddff9dd3bd995bfdb60f9fb +0 -0
  1042. data/spec/dummy/tmp/cache/assets/E56/050/sprockets%2F14cc8280dfd92ee16d2feeec2fa2db1c +0 -0
  1043. data/spec/dummy/tmp/cache/assets/E56/D40/sprockets%2F31dec9f66b8c3bd0ac17edcf43df1e2b +0 -0
  1044. data/spec/dummy/tmp/cache/assets/E5B/F40/sprockets%2F9dd9ab1dc0c184e8de3bb4ab8b796bbb +0 -0
  1045. data/spec/dummy/tmp/cache/assets/E66/1F0/sprockets%2F75fcaefe613f45bf8bc7b75ec7ca1d7b +0 -0
  1046. data/spec/dummy/tmp/cache/assets/E78/550/sprockets%2F812e1fcd05f4661aceca0a4ed1dabdfe +0 -0
  1047. data/spec/dummy/tmp/cache/assets/E7E/5A0/sprockets%2F0a3da7ccba58aee23cd08d3f7ebf3c4b +0 -0
  1048. data/spec/dummy/tmp/cache/assets/E7F/420/sprockets%2F18cc7ec1a02dffa6cff6bea37c6a1ba5 +0 -0
  1049. data/spec/dummy/tmp/cache/assets/E8D/510/sprockets%2Fb10c67dffa5fcefa1dab54edadc79872 +0 -0
  1050. data/spec/dummy/tmp/cache/assets/E92/A50/sprockets%2F56139dbfd39dda86dacb029bbfefd4fc +0 -0
  1051. data/spec/dummy/tmp/cache/assets/EA7/6E0/sprockets%2Fa84ecac3c5a54b128acbd2befcd4c4cb +0 -0
  1052. data/spec/dummy/tmp/cache/assets/EA7/D10/sprockets%2Fffbabca0cbcb4f63abcbd1dce9833072 +0 -0
  1053. data/spec/dummy/tmp/cache/assets/F12/590/sprockets%2Ffeaf1c9bdca71b6ecb496abda1dbae5f +0 -0
  1054. data/spec/dummy/tmp/cache/sass/0001e962498f25574bbd80ca1698db9761058853/accordion.css.scssc +0 -0
  1055. data/spec/dummy/tmp/cache/sass/0001e962498f25574bbd80ca1698db9761058853/action_bar.css.scssc +0 -0
  1056. data/spec/dummy/tmp/cache/sass/0001e962498f25574bbd80ca1698db9761058853/attributes.css.scssc +0 -0
  1057. data/spec/dummy/tmp/cache/sass/0001e962498f25574bbd80ca1698db9761058853/emphatic_action_area.css.scssc +0 -0
  1058. data/spec/dummy/tmp/cache/sass/0001e962498f25574bbd80ca1698db9761058853/forms.css.scssc +0 -0
  1059. data/spec/dummy/tmp/cache/sass/0001e962498f25574bbd80ca1698db9761058853/multi_value_fields.css.scssc +0 -0
  1060. data/spec/dummy/tmp/cache/sass/0001e962498f25574bbd80ca1698db9761058853/site_search.css.scssc +0 -0
  1061. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_accordion.scssc +0 -0
  1062. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_alerts.scssc +0 -0
  1063. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_breadcrumbs.scssc +0 -0
  1064. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_button-groups.scssc +0 -0
  1065. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_buttons.scssc +0 -0
  1066. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_carousel.scssc +0 -0
  1067. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_close.scssc +0 -0
  1068. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_code.scssc +0 -0
  1069. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_component-animations.scssc +0 -0
  1070. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_dropdowns.scssc +0 -0
  1071. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_forms.scssc +0 -0
  1072. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_grid.scssc +0 -0
  1073. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_hero-unit.scssc +0 -0
  1074. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_labels-badges.scssc +0 -0
  1075. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_layouts.scssc +0 -0
  1076. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_media.scssc +0 -0
  1077. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_mixins.scssc +0 -0
  1078. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_modals.scssc +0 -0
  1079. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_navbar.scssc +0 -0
  1080. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_navs.scssc +0 -0
  1081. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_pager.scssc +0 -0
  1082. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_pagination.scssc +0 -0
  1083. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_popovers.scssc +0 -0
  1084. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_progress-bars.scssc +0 -0
  1085. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_reset.scssc +0 -0
  1086. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_responsive-1200px-min.scssc +0 -0
  1087. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_responsive-767px-max.scssc +0 -0
  1088. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_responsive-768px-979px.scssc +0 -0
  1089. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_responsive-navbar.scssc +0 -0
  1090. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_responsive-utilities.scssc +0 -0
  1091. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_scaffolding.scssc +0 -0
  1092. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_sprites.scssc +0 -0
  1093. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_tables.scssc +0 -0
  1094. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_thumbnails.scssc +0 -0
  1095. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_tooltip.scssc +0 -0
  1096. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_type.scssc +0 -0
  1097. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_utilities.scssc +0 -0
  1098. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_variables.scssc +0 -0
  1099. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/_wells.scssc +0 -0
  1100. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/bootstrap.scssc +0 -0
  1101. data/spec/dummy/tmp/cache/sass/04fe972a2a75183153ed84f9c53eabb4340d0e46/responsive.scssc +0 -0
  1102. data/spec/dummy/tmp/cache/sass/0b7cf223f9ee85e07460b1ac1f5a43b68a9ed588/bootstrap-datepicker.cssc +0 -0
  1103. data/spec/dummy/tmp/cache/sass/0fef5ee917a80a79f884347a33cb617085337e88/_css3.scssc +0 -0
  1104. data/spec/dummy/tmp/cache/sass/0fef5ee917a80a79f884347a33cb617085337e88/_support.scssc +0 -0
  1105. data/spec/dummy/tmp/cache/sass/0fef5ee917a80a79f884347a33cb617085337e88/_typography.scssc +0 -0
  1106. data/spec/dummy/tmp/cache/sass/0fef5ee917a80a79f884347a33cb617085337e88/_utilities.scssc +0 -0
  1107. data/spec/dummy/tmp/cache/sass/21837c763161cf4dcdcb97ffefa93752b2f80740/_compass.scssc +0 -0
  1108. data/spec/dummy/tmp/cache/sass/2c4e5ec4f26d0102135f50b33e3392de41aefb80/_links.scssc +0 -0
  1109. data/spec/dummy/tmp/cache/sass/2c4e5ec4f26d0102135f50b33e3392de41aefb80/_lists.scssc +0 -0
  1110. data/spec/dummy/tmp/cache/sass/2c4e5ec4f26d0102135f50b33e3392de41aefb80/_text.scssc +0 -0
  1111. data/spec/dummy/tmp/cache/sass/2c4e5ec4f26d0102135f50b33e3392de41aefb80/_vertical_rhythm.scssc +0 -0
  1112. data/spec/dummy/tmp/cache/sass/34fa894f939017ea498fd4ca1dc91e770d2685aa/_base.scssc +0 -0
  1113. data/spec/dummy/tmp/cache/sass/34fa894f939017ea498fd4ca1dc91e770d2685aa/_sprite-img.scssc +0 -0
  1114. data/spec/dummy/tmp/cache/sass/48dd23849ffc8402aca01a267a9ffbcbfde58850/bootstrap-datepicker.cssc +0 -0
  1115. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_blacklight_base.css.scssc +0 -0
  1116. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_bookmark.css.scssc +0 -0
  1117. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_catalog.css.scssc +0 -0
  1118. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_dropdown.css.scssc +0 -0
  1119. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_facets.css.scssc +0 -0
  1120. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_footer.css.scssc +0 -0
  1121. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_header.css.scssc +0 -0
  1122. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_layout.css.scssc +0 -0
  1123. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_modal.css.scssc +0 -0
  1124. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_print.css.scssc +0 -0
  1125. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_responsive.css.scssc +0 -0
  1126. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/_search_history.css.scssc +0 -0
  1127. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/blacklight.css.scssc +0 -0
  1128. data/spec/dummy/tmp/cache/sass/4afdbe73149ec92a51a5bae2c147dc76c7ca5f57/blacklight_defaults.css.scssc +0 -0
  1129. data/spec/dummy/tmp/cache/sass/4f318956a254e160200beaea8363c0a32c1df956/curate.css.scssc +0 -0
  1130. data/spec/dummy/tmp/cache/sass/4f318956a254e160200beaea8363c0a32c1df956/global-variables.scssc +0 -0
  1131. data/spec/dummy/tmp/cache/sass/4f318956a254e160200beaea8363c0a32c1df956/modules.scssc +0 -0
  1132. data/spec/dummy/tmp/cache/sass/522c16a6530d0aa896cd94de1fcccce85facc5ab/_hover-link.scssc +0 -0
  1133. data/spec/dummy/tmp/cache/sass/522c16a6530d0aa896cd94de1fcccce85facc5ab/_link-colors.scssc +0 -0
  1134. data/spec/dummy/tmp/cache/sass/522c16a6530d0aa896cd94de1fcccce85facc5ab/_unstyled-link.scssc +0 -0
  1135. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_appearance.scssc +0 -0
  1136. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_background-clip.scssc +0 -0
  1137. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_background-origin.scssc +0 -0
  1138. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_background-size.scssc +0 -0
  1139. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_border-radius.scssc +0 -0
  1140. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_box-shadow.scssc +0 -0
  1141. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_box-sizing.scssc +0 -0
  1142. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_box.scssc +0 -0
  1143. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_columns.scssc +0 -0
  1144. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_filter.scssc +0 -0
  1145. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_font-face.scssc +0 -0
  1146. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_hyphenation.scssc +0 -0
  1147. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_images.scssc +0 -0
  1148. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_inline-block.scssc +0 -0
  1149. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_opacity.scssc +0 -0
  1150. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_regions.scssc +0 -0
  1151. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_shared.scssc +0 -0
  1152. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_text-shadow.scssc +0 -0
  1153. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_transform.scssc +0 -0
  1154. data/spec/dummy/tmp/cache/sass/6b6e4420c5f5309eade26b89582e20be36c448b5/_transition.scssc +0 -0
  1155. data/spec/dummy/tmp/cache/sass/718bc7e1ad44ca8ff9f9e71f8e810c4eddf32a49/_bullets.scssc +0 -0
  1156. data/spec/dummy/tmp/cache/sass/718bc7e1ad44ca8ff9f9e71f8e810c4eddf32a49/_horizontal-list.scssc +0 -0
  1157. data/spec/dummy/tmp/cache/sass/718bc7e1ad44ca8ff9f9e71f8e810c4eddf32a49/_inline-block-list.scssc +0 -0
  1158. data/spec/dummy/tmp/cache/sass/718bc7e1ad44ca8ff9f9e71f8e810c4eddf32a49/_inline-list.scssc +0 -0
  1159. data/spec/dummy/tmp/cache/sass/796ec1eba4f91e1a0b78c36c44e2932533d573da/_catalog.css.scssc +0 -0
  1160. data/spec/dummy/tmp/cache/sass/796ec1eba4f91e1a0b78c36c44e2932533d573da/_facets.css.scssc +0 -0
  1161. data/spec/dummy/tmp/cache/sass/796ec1eba4f91e1a0b78c36c44e2932533d573da/_header.css.scssc +0 -0
  1162. data/spec/dummy/tmp/cache/sass/7a222a40e1e84fd4553825ec714b6929fa94e36c/_contrast.scssc +0 -0
  1163. data/spec/dummy/tmp/cache/sass/8927fd3f03310be99ed31d90b726bfd88aef45be/_clearfix.scssc +0 -0
  1164. data/spec/dummy/tmp/cache/sass/8927fd3f03310be99ed31d90b726bfd88aef45be/_float.scssc +0 -0
  1165. data/spec/dummy/tmp/cache/sass/8927fd3f03310be99ed31d90b726bfd88aef45be/_hacks.scssc +0 -0
  1166. data/spec/dummy/tmp/cache/sass/8927fd3f03310be99ed31d90b726bfd88aef45be/_min.scssc +0 -0
  1167. data/spec/dummy/tmp/cache/sass/8927fd3f03310be99ed31d90b726bfd88aef45be/_reset.scssc +0 -0
  1168. data/spec/dummy/tmp/cache/sass/8927fd3f03310be99ed31d90b726bfd88aef45be/_tag-cloud.scssc +0 -0
  1169. data/spec/dummy/tmp/cache/sass/8b8b635794f4a4b7016ca5c3b364a1784b7046b5/_ellipsis.scssc +0 -0
  1170. data/spec/dummy/tmp/cache/sass/8b8b635794f4a4b7016ca5c3b364a1784b7046b5/_force-wrap.scssc +0 -0
  1171. data/spec/dummy/tmp/cache/sass/8b8b635794f4a4b7016ca5c3b364a1784b7046b5/_nowrap.scssc +0 -0
  1172. data/spec/dummy/tmp/cache/sass/8b8b635794f4a4b7016ca5c3b364a1784b7046b5/_replacement.scssc +0 -0
  1173. data/spec/dummy/tmp/cache/sass/927deccb9ffd2af5e8a79bf90a7cddb134ec7eea/_alternating-rows-and-columns.scssc +0 -0
  1174. data/spec/dummy/tmp/cache/sass/927deccb9ffd2af5e8a79bf90a7cddb134ec7eea/_borders.scssc +0 -0
  1175. data/spec/dummy/tmp/cache/sass/927deccb9ffd2af5e8a79bf90a7cddb134ec7eea/_scaffolding.scssc +0 -0
  1176. data/spec/dummy/tmp/cache/sass/9f543113a4f520719e27b067dee37f439f43d19d/_utilities.scssc +0 -0
  1177. data/spec/dummy/tmp/cache/sass/b44d15eaf93b4cbc82e22a7a1e10e1dead6c67fa/positioning.css.scssc +0 -0
  1178. data/spec/dummy/tmp/cache/sass/c92b06f37363292ba4b006ff2cf1bd1f696dddca/_color.scssc +0 -0
  1179. data/spec/dummy/tmp/cache/sass/c92b06f37363292ba4b006ff2cf1bd1f696dddca/_general.scssc +0 -0
  1180. data/spec/dummy/tmp/cache/sass/c92b06f37363292ba4b006ff2cf1bd1f696dddca/_sprites.scssc +0 -0
  1181. data/spec/dummy/tmp/cache/sass/c92b06f37363292ba4b006ff2cf1bd1f696dddca/_tables.scssc +0 -0
  1182. data/spec/dummy/tmp/cache/sass/df792e9ab9096ece239c4262acd1127aa538afb1/bootstrap-responsive.scssc +0 -0
  1183. data/spec/dummy/tmp/cache/sass/df792e9ab9096ece239c4262acd1127aa538afb1/bootstrap.scssc +0 -0
  1184. data/spec/dummy/tmp/cache/sass/e2acd0d3c73f2fff628566ea77de318da6e21070/_grid-background.scssc +0 -0
  1185. data/spec/dummy/tmp/cache/sass/f84d624335aacb012891ac83d799a556e89a7097/bootstrap-modal.cssc +0 -0
  1186. data/spec/dummy/tmp/cache/sass/fc9e6256e82849422f2ca3965a67f82e7d39a7b2/jquery.fileupload-ui.scssc +0 -0
  1187. data/spec/dummy/tmp/cache/sass/ff13bf5cc4548f05216bbb2ac0fa098307b175db/theme.css.scssc +0 -0
  1188. data/spec/dummy/tmp/cache/sass/ff13bf5cc4548f05216bbb2ac0fa098307b175db/typography.css.scssc +0 -0
  1189. data/spec/factories/mock_curation_concerns.rb +0 -6
  1190. data/spec/factories/users.rb +0 -9
  1191. data/spec/helpers/application_helper_spec.rb +0 -179
  1192. data/spec/models/access_right_spec.rb +0 -57
  1193. data/spec/models/digital_object_identifier_spec.rb +0 -50
  1194. data/spec/models/mint_doi_spec.rb +0 -79
  1195. data/spec/models/mint_purl_spec.rb +0 -38
  1196. data/spec/models/object_access_spec.rb +0 -24
  1197. data/spec/models/purl_spec.rb +0 -22
  1198. data/spec/models/repo_object_spec.rb +0 -39
  1199. data/spec/support/feature_support.rb +0 -9
  1200. data/spec/support/mock_curation_concern.rb +0 -113
@@ -1,10 +0,0 @@
1
- # This migration comes from mailboxer_engine (originally 20111204163911)
2
- class AddAttachments < ActiveRecord::Migration
3
- def self.up
4
- add_column :notifications, :attachment, :string
5
- end
6
-
7
- def self.down
8
- remove_column :notifications, :attachment, :string
9
- end
10
- end
@@ -1,10 +0,0 @@
1
- # This migration comes from mailboxer_engine (originally 20120813110712)
2
- class RenameReceiptsRead < ActiveRecord::Migration
3
- def up
4
- rename_column :receipts, :read, :is_read
5
- end
6
-
7
- def down
8
- rename_column :receipts, :is_read, :read
9
- end
10
- end
@@ -1,16 +0,0 @@
1
- # -*- encoding : utf-8 -*-
2
- class CreateSearches < ActiveRecord::Migration
3
- def self.up
4
- create_table :searches do |t|
5
- t.text :query_params
6
- t.integer :user_id
7
-
8
- t.timestamps
9
- end
10
- add_index :searches, :user_id
11
- end
12
-
13
- def self.down
14
- drop_table :searches
15
- end
16
- end
@@ -1,18 +0,0 @@
1
- # -*- encoding : utf-8 -*-
2
- class CreateBookmarks < ActiveRecord::Migration
3
- def self.up
4
- create_table :bookmarks do |t|
5
- t.integer :user_id, :null=>false
6
- t.text :url
7
- t.string :document_id
8
- t.string :title
9
- t.text :notes
10
- t.timestamps
11
- end
12
- end
13
-
14
- def self.down
15
- drop_table :bookmarks
16
- end
17
-
18
- end
@@ -1,12 +0,0 @@
1
- # -*- encoding : utf-8 -*-
2
- class RemoveEditableFieldsFromBookmarks < ActiveRecord::Migration
3
- def self.up
4
- remove_column :bookmarks, :notes
5
- remove_column :bookmarks, :url
6
- end
7
-
8
- def self.down
9
- add_column :bookmarks, :notes, :text
10
- add_column :bookmarks, :url, :string
11
- end
12
- end
@@ -1,16 +0,0 @@
1
- # -*- encoding : utf-8 -*-
2
- class AddUserTypesToBookmarksSearches < ActiveRecord::Migration
3
- def self.up
4
- add_column :searches, :user_type, :string
5
- add_column :bookmarks, :user_type, :string
6
- Search.reset_column_information
7
- Bookmark.reset_column_information
8
- Search.update_all("user_type = 'user'")
9
- Bookmark.update_all("user_type = 'user'")
10
- end
11
-
12
- def self.down
13
- remove_column :searches, :user_type
14
- remove_column :bookmarks, :user_type
15
- end
16
- end
@@ -1,217 +0,0 @@
1
- # encoding: UTF-8
2
- # This file is auto-generated from the current state of the database. Instead
3
- # of editing this file, please use the migrations feature of Active Record to
4
- # incrementally modify your database, and then regenerate this schema definition.
5
- #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
11
- #
12
- # It's strongly recommended to check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(:version => 20130417124661) do
15
-
16
- create_table "bookmarks", :force => true do |t|
17
- t.integer "user_id", :null => false
18
- t.string "document_id"
19
- t.string "title"
20
- t.datetime "created_at", :null => false
21
- t.datetime "updated_at", :null => false
22
- t.string "user_type"
23
- end
24
-
25
- create_table "checksum_audit_logs", :force => true do |t|
26
- t.string "pid"
27
- t.string "dsid"
28
- t.string "version"
29
- t.integer "pass"
30
- t.string "expected_result"
31
- t.string "actual_result"
32
- t.datetime "created_at", :null => false
33
- t.datetime "updated_at", :null => false
34
- end
35
-
36
- add_index "checksum_audit_logs", ["pid", "dsid"], :name => "by_pid_and_dsid"
37
-
38
- create_table "conversations", :force => true do |t|
39
- t.string "subject", :default => ""
40
- t.datetime "created_at", :null => false
41
- t.datetime "updated_at", :null => false
42
- end
43
-
44
- create_table "domain_terms", :force => true do |t|
45
- t.string "model"
46
- t.string "term"
47
- end
48
-
49
- add_index "domain_terms", ["model", "term"], :name => "terms_by_model_and_term"
50
-
51
- create_table "domain_terms_local_authorities", :id => false, :force => true do |t|
52
- t.integer "domain_term_id"
53
- t.integer "local_authority_id"
54
- end
55
-
56
- add_index "domain_terms_local_authorities", ["domain_term_id", "local_authority_id"], :name => "dtla_by_ids2"
57
- add_index "domain_terms_local_authorities", ["local_authority_id", "domain_term_id"], :name => "dtla_by_ids1"
58
-
59
- create_table "follows", :force => true do |t|
60
- t.integer "followable_id", :null => false
61
- t.string "followable_type", :null => false
62
- t.integer "follower_id", :null => false
63
- t.string "follower_type", :null => false
64
- t.boolean "blocked", :default => false, :null => false
65
- t.datetime "created_at", :null => false
66
- t.datetime "updated_at", :null => false
67
- end
68
-
69
- add_index "follows", ["followable_id", "followable_type"], :name => "fk_followables"
70
- add_index "follows", ["follower_id", "follower_type"], :name => "fk_follows"
71
-
72
- create_table "help_requests", :force => true do |t|
73
- t.string "view_port"
74
- t.text "current_url"
75
- t.string "user_agent"
76
- t.string "resolution"
77
- t.text "how_can_we_help_you"
78
- t.boolean "javascript_enabled"
79
- t.string "release_version"
80
- t.integer "user_id"
81
- t.datetime "created_at", :null => false
82
- t.datetime "updated_at", :null => false
83
- end
84
-
85
- add_index "help_requests", ["created_at"], :name => "index_help_requests_on_created_at"
86
- add_index "help_requests", ["user_id"], :name => "index_help_requests_on_user_id"
87
-
88
- create_table "local_authorities", :force => true do |t|
89
- t.string "name"
90
- end
91
-
92
- create_table "local_authority_entries", :force => true do |t|
93
- t.integer "local_authority_id"
94
- t.string "label"
95
- t.string "uri"
96
- end
97
-
98
- add_index "local_authority_entries", ["local_authority_id", "label"], :name => "entries_by_term_and_label"
99
- add_index "local_authority_entries", ["local_authority_id", "uri"], :name => "entries_by_term_and_uri"
100
-
101
- create_table "notifications", :force => true do |t|
102
- t.string "type"
103
- t.text "body"
104
- t.string "subject", :default => ""
105
- t.integer "sender_id"
106
- t.string "sender_type"
107
- t.integer "conversation_id"
108
- t.boolean "draft", :default => false
109
- t.datetime "updated_at", :null => false
110
- t.datetime "created_at", :null => false
111
- t.integer "notified_object_id"
112
- t.string "notified_object_type"
113
- t.string "notification_code"
114
- t.string "attachment"
115
- end
116
-
117
- add_index "notifications", ["conversation_id"], :name => "index_notifications_on_conversation_id"
118
-
119
- create_table "object_access", :primary_key => "access_id", :force => true do |t|
120
- t.datetime "date_accessed"
121
- t.string "ip_address"
122
- t.string "host_name"
123
- t.string "user_agent"
124
- t.string "request_method"
125
- t.string "path_info"
126
- t.integer "repo_object_id"
127
- t.integer "purl_id"
128
- end
129
-
130
- create_table "purl", :primary_key => "purl_id", :force => true do |t|
131
- t.integer "repo_object_id"
132
- t.string "access_count"
133
- t.datetime "last_accessed"
134
- t.string "source_app"
135
- t.datetime "date_created"
136
- end
137
-
138
- create_table "receipts", :force => true do |t|
139
- t.integer "receiver_id"
140
- t.string "receiver_type"
141
- t.integer "notification_id", :null => false
142
- t.boolean "is_read", :default => false
143
- t.boolean "trashed", :default => false
144
- t.boolean "deleted", :default => false
145
- t.string "mailbox_type", :limit => 25
146
- t.datetime "created_at", :null => false
147
- t.datetime "updated_at", :null => false
148
- end
149
-
150
- add_index "receipts", ["notification_id"], :name => "index_receipts_on_notification_id"
151
-
152
- create_table "repo_object", :primary_key => "repo_object_id", :force => true do |t|
153
- t.string "filename"
154
- t.string "url"
155
- t.datetime "date_added"
156
- t.string "add_source_ip"
157
- t.datetime "date_modified"
158
- t.string "information"
159
- end
160
-
161
- create_table "searches", :force => true do |t|
162
- t.text "query_params"
163
- t.integer "user_id"
164
- t.datetime "created_at", :null => false
165
- t.datetime "updated_at", :null => false
166
- t.string "user_type"
167
- end
168
-
169
- add_index "searches", ["user_id"], :name => "index_searches_on_user_id"
170
-
171
- create_table "single_use_links", :force => true do |t|
172
- t.string "downloadKey"
173
- t.string "path"
174
- t.string "itemId"
175
- t.datetime "expires"
176
- t.datetime "created_at", :null => false
177
- t.datetime "updated_at", :null => false
178
- end
179
-
180
- create_table "subject_local_authority_entries", :force => true do |t|
181
- t.string "label"
182
- t.string "lowerLabel"
183
- t.string "url"
184
- end
185
-
186
- add_index "subject_local_authority_entries", ["lowerLabel"], :name => "entries_by_lower_label"
187
-
188
- create_table "trophies", :force => true do |t|
189
- t.integer "user_id"
190
- t.string "generic_file_id"
191
- t.datetime "created_at", :null => false
192
- t.datetime "updated_at", :null => false
193
- end
194
-
195
- create_table "users", :force => true do |t|
196
- t.string "email"
197
- t.boolean "agreed_to_terms_of_service"
198
- t.string "encrypted_password"
199
- t.integer "sign_in_count", :default => 0
200
- t.datetime "created_at", :null => false
201
- t.datetime "updated_at", :null => false
202
- end
203
-
204
- create_table "version_committers", :force => true do |t|
205
- t.string "obj_id"
206
- t.string "datastream_id"
207
- t.string "version_id"
208
- t.string "committer_login"
209
- t.datetime "created_at", :null => false
210
- t.datetime "updated_at", :null => false
211
- end
212
-
213
- add_foreign_key "notifications", "conversations", :name => "notifications_on_conversation_id"
214
-
215
- add_foreign_key "receipts", "notifications", :name => "receipts_on_notification_id"
216
-
217
- end
File without changes
@@ -1,953 +0,0 @@
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/default/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>