blacklight-spotlight 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (367) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -8
  3. data/Rakefile +40 -39
  4. data/app/assets/javascripts/spotlight/blacklight_configuration.js +16 -0
  5. data/app/assets/javascripts/spotlight/blocks/resources_block.js +3 -1
  6. data/app/assets/stylesheets/spotlight/_blacklight_configuration.scss +2 -2
  7. data/app/assets/stylesheets/spotlight/_blacklight_overrides.scss +24 -0
  8. data/app/assets/stylesheets/spotlight/_header.scss +150 -47
  9. data/app/assets/stylesheets/spotlight/_pages.scss +62 -11
  10. data/app/assets/stylesheets/spotlight/_report_a_problem.scss +1 -0
  11. data/app/assets/stylesheets/spotlight/_spotlight.scss +1 -0
  12. data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +28 -21
  13. data/app/controllers/spotlight/about_pages_controller.rb +25 -14
  14. data/app/controllers/spotlight/appearances_controller.rb +34 -30
  15. data/app/controllers/spotlight/application_controller.rb +2 -1
  16. data/app/controllers/spotlight/attachments_controller.rb +9 -7
  17. data/app/controllers/spotlight/browse_controller.rb +13 -9
  18. data/app/controllers/spotlight/catalog_controller.rb +179 -161
  19. data/app/controllers/spotlight/concerns/application_controller.rb +22 -20
  20. data/app/controllers/spotlight/concerns/catalog_search_context.rb +44 -0
  21. data/app/controllers/spotlight/confirmations_controller.rb +5 -2
  22. data/app/controllers/spotlight/contact_forms_controller.rb +13 -7
  23. data/app/controllers/spotlight/contacts_controller.rb +13 -4
  24. data/app/controllers/spotlight/custom_fields_controller.rb +48 -40
  25. data/app/controllers/spotlight/dashboards_controller.rb +17 -8
  26. data/app/controllers/spotlight/default_controller.rb +3 -1
  27. data/app/controllers/spotlight/exhibits_controller.rb +69 -62
  28. data/app/controllers/spotlight/feature_pages_controller.rb +21 -11
  29. data/app/controllers/spotlight/home_pages_controller.rb +6 -5
  30. data/app/controllers/spotlight/lock_controller.rb +3 -1
  31. data/app/controllers/spotlight/metadata_configurations_controller.rb +49 -0
  32. data/app/controllers/spotlight/pages_controller.rb +28 -18
  33. data/app/controllers/spotlight/resources/upload_controller.rb +53 -46
  34. data/app/controllers/spotlight/resources_controller.rb +9 -5
  35. data/app/controllers/spotlight/roles_controller.rb +26 -22
  36. data/app/controllers/spotlight/search_configurations_controller.rb +66 -0
  37. data/app/controllers/spotlight/searches_controller.rb +91 -82
  38. data/app/controllers/spotlight/solr_controller.rb +20 -13
  39. data/app/controllers/spotlight/tags_controller.rb +5 -3
  40. data/app/controllers/spotlight/versions_controller.rb +15 -12
  41. data/app/controllers/spotlight/view_configurations_controller.rb +17 -0
  42. data/app/helpers/spotlight/application_helper.rb +44 -32
  43. data/app/helpers/spotlight/browse_helper.rb +13 -1
  44. data/app/helpers/spotlight/crud_link_helpers.rb +22 -14
  45. data/app/helpers/spotlight/jcrop_helper.rb +4 -2
  46. data/app/helpers/spotlight/main_app_helpers.rb +45 -41
  47. data/app/helpers/spotlight/navbar_helper.rb +6 -0
  48. data/app/helpers/spotlight/pages_helper.rb +23 -15
  49. data/app/helpers/spotlight/roles_helper.rb +10 -4
  50. data/app/helpers/spotlight/search_configurations_helper.rb +22 -0
  51. data/app/helpers/spotlight/title_helper.rb +16 -13
  52. data/app/jobs/spotlight/add_uploads_from_csv.rb +13 -9
  53. data/app/jobs/spotlight/reindex_job.rb +9 -9
  54. data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -0
  55. data/app/mailers/spotlight/confirmation_mailer.rb +2 -0
  56. data/app/mailers/spotlight/indexing_complete_mailer.rb +4 -2
  57. data/app/models/ability.rb +3 -0
  58. data/app/models/concerns/spotlight/ar_light.rb +49 -25
  59. data/app/models/concerns/spotlight/blacklight_configuration_defaults.rb +25 -10
  60. data/app/models/concerns/spotlight/exhibit_analytics.rb +28 -0
  61. data/app/models/concerns/spotlight/image_derivatives.rb +25 -26
  62. data/app/models/concerns/spotlight/resources/open_graph.rb +23 -19
  63. data/app/models/concerns/spotlight/resources/web.rb +25 -24
  64. data/app/models/concerns/spotlight/solr_document.rb +40 -34
  65. data/app/models/concerns/spotlight/solr_document/active_model_concern.rb +29 -40
  66. data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +22 -18
  67. data/app/models/concerns/spotlight/solr_document/finder.rb +23 -18
  68. data/app/models/concerns/spotlight/solr_document/spotlight_images.rb +43 -39
  69. data/app/models/concerns/spotlight/solr_document/uploaded_resource.rb +41 -29
  70. data/app/models/concerns/spotlight/user.rb +25 -19
  71. data/app/models/sir_trevor_rails/blocks/browse_block.rb +36 -30
  72. data/app/models/sir_trevor_rails/blocks/featured_pages_block.rb +24 -18
  73. data/app/models/sir_trevor_rails/blocks/oembed_block.rb +8 -4
  74. data/app/models/sir_trevor_rails/blocks/search_results_block.rb +29 -23
  75. data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +43 -42
  76. data/app/models/sir_trevor_rails/blocks/solr_documents_carousel_block.rb +16 -12
  77. data/app/models/sir_trevor_rails/blocks/solr_documents_embed_block.rb +7 -3
  78. data/app/models/sir_trevor_rails/blocks/solr_documents_features_block.rb +7 -3
  79. data/app/models/sir_trevor_rails/blocks/solr_documents_grid_block.rb +7 -3
  80. data/app/models/sir_trevor_rails/blocks/textable.rb +18 -18
  81. data/app/models/spotlight/ability.rb +32 -33
  82. data/app/models/spotlight/about_page.rb +3 -1
  83. data/app/models/spotlight/analytics/ga.rb +46 -27
  84. data/app/models/spotlight/attachment.rb +3 -1
  85. data/app/models/spotlight/blacklight_configuration.rb +146 -68
  86. data/app/models/spotlight/contact.rb +35 -30
  87. data/app/models/spotlight/contact_email.rb +6 -3
  88. data/app/models/spotlight/contact_form.rb +4 -3
  89. data/app/models/spotlight/custom_field.rb +41 -33
  90. data/app/models/spotlight/exhibit.rb +104 -130
  91. data/app/models/spotlight/feature_page.rb +9 -7
  92. data/app/models/spotlight/featured_image.rb +10 -10
  93. data/app/models/spotlight/field_metadata.rb +46 -0
  94. data/app/models/spotlight/home_page.rb +8 -5
  95. data/app/models/spotlight/lock.rb +4 -3
  96. data/app/models/spotlight/main_navigation.rb +9 -3
  97. data/app/models/spotlight/masthead.rb +17 -16
  98. data/app/models/spotlight/page.rb +16 -16
  99. data/app/models/spotlight/resource.rb +69 -22
  100. data/app/models/spotlight/resources/csv_upload.rb +8 -4
  101. data/app/models/spotlight/resources/upload.rb +68 -57
  102. data/app/models/spotlight/role.rb +30 -34
  103. data/app/models/spotlight/search.rb +74 -63
  104. data/app/models/spotlight/solr_document_sidecar.rb +17 -15
  105. data/app/serializers/spotlight/exhibit_export_serializer.rb +65 -29
  106. data/app/serializers/spotlight/page_representer.rb +10 -6
  107. data/app/uploaders/spotlight/attachment_uploader.rb +4 -6
  108. data/app/uploaders/spotlight/avatar_uploader.rb +4 -3
  109. data/app/uploaders/spotlight/featured_image_uploader.rb +15 -14
  110. data/app/uploaders/spotlight/item_uploader.rb +3 -1
  111. data/app/uploaders/spotlight/masthead_uploader.rb +4 -2
  112. data/app/views/catalog/_search_form.html.erb +24 -0
  113. data/app/views/shared/_browse_navbar.html.erb +1 -1
  114. data/app/views/shared/_exhibit_navbar.html.erb +1 -1
  115. data/app/views/spotlight/appearances/edit.html.erb +13 -45
  116. data/app/views/spotlight/catalog/_edit_default.html.erb +1 -1
  117. data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
  118. data/app/views/spotlight/exhibits/edit.html.erb +4 -4
  119. data/app/views/spotlight/home_pages/_empty.html.erb +1 -3
  120. data/app/views/spotlight/home_pages/_page_options.html.erb +1 -1
  121. data/app/views/spotlight/{blacklight_configurations → metadata_configurations}/_metadata_field.html.erb +0 -0
  122. data/app/views/spotlight/{blacklight_configurations/edit_metadata_fields.html.erb → metadata_configurations/edit.html.erb} +1 -1
  123. data/app/views/spotlight/pages/show.html.erb +2 -2
  124. data/app/views/spotlight/search_configurations/_default_per_page.html.erb +5 -0
  125. data/app/views/spotlight/search_configurations/_document_index_view_types.html.erb +7 -0
  126. data/app/views/spotlight/search_configurations/_facets.html.erb +38 -0
  127. data/app/views/spotlight/search_configurations/_search_fields.html.erb +58 -0
  128. data/app/views/spotlight/search_configurations/_sort.html.erb +53 -0
  129. data/app/views/spotlight/search_configurations/edit.html.erb +46 -0
  130. data/app/views/spotlight/searches/_search.html.erb +1 -1
  131. data/app/views/spotlight/shared/_admin_sidebar.html.erb +0 -2
  132. data/app/views/spotlight/shared/_curation_sidebar.html.erb +2 -3
  133. data/app/views/spotlight/shared/_report_a_problem.html.erb +2 -2
  134. data/app/views/spotlight/sir_trevor/blocks/_oembed_block.html.erb +5 -1
  135. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +7 -5
  136. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
  137. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb +7 -5
  138. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
  139. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +14 -9
  140. data/config/locales/spotlight.en.yml +94 -49
  141. data/config/routes.rb +11 -20
  142. data/db/migrate/20150410180014_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
  143. data/db/migrate/20150410180015_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
  144. data/db/migrate/20150410180016_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +10 -0
  145. data/db/migrate/20150713160101_change_spotlight_searches_to_published.rb +5 -0
  146. data/db/migrate/20151016092343_remove_searchable_from_exhibit.rb +20 -0
  147. data/lib/blacklight/spotlight.rb +1 -1
  148. data/lib/generators/spotlight/install_generator.rb +27 -25
  149. data/lib/generators/spotlight/templates/catalog_controller.rb +7 -5
  150. data/lib/generators/spotlight/templates/jetty.rake +8 -2
  151. data/lib/generators/spotlight/templates/spotlight_helper.rb +3 -1
  152. data/lib/spotlight.rb +4 -2
  153. data/lib/spotlight/base.rb +21 -14
  154. data/lib/spotlight/catalog.rb +10 -9
  155. data/lib/spotlight/catalog/access_controls_enforcement.rb +30 -15
  156. data/lib/spotlight/config.rb +4 -2
  157. data/lib/spotlight/controller.rb +12 -11
  158. data/lib/spotlight/engine.rb +30 -22
  159. data/lib/spotlight/rails/routes.rb +7 -4
  160. data/lib/spotlight/version.rb +2 -1
  161. data/lib/tasks/spotlight_tasks.rake +56 -50
  162. data/spec/controllers/application_controller_spec.rb +13 -13
  163. data/spec/controllers/spotlight/about_pages_controller_spec.rb +63 -59
  164. data/spec/controllers/spotlight/appearances_controller_spec.rb +29 -24
  165. data/spec/controllers/spotlight/application_controller_spec.rb +3 -3
  166. data/spec/controllers/spotlight/attachments_controller_spec.rb +10 -10
  167. data/spec/controllers/spotlight/browse_controller_spec.rb +23 -25
  168. data/spec/controllers/spotlight/catalog_controller_spec.rb +82 -87
  169. data/spec/controllers/spotlight/confirmations_controller_spec.rb +13 -11
  170. data/spec/controllers/spotlight/contact_forms_controller_spec.rb +17 -12
  171. data/spec/controllers/spotlight/contacts_controller_spec.rb +36 -36
  172. data/spec/controllers/spotlight/custom_fields_controller_spec.rb +26 -26
  173. data/spec/controllers/spotlight/dashboards_controller_spec.rb +14 -14
  174. data/spec/controllers/spotlight/exhibits_controller_spec.rb +59 -54
  175. data/spec/controllers/spotlight/feature_pages_controller_spec.rb +59 -59
  176. data/spec/controllers/spotlight/home_pages_controller_spec.rb +28 -29
  177. data/spec/controllers/spotlight/metadata_configurations_controller_spec.rb +84 -0
  178. data/spec/controllers/spotlight/resources/upload_controller_spec.rb +42 -33
  179. data/spec/controllers/spotlight/resources_controller_spec.rb +25 -29
  180. data/spec/controllers/spotlight/roles_controller_spec.rb +37 -19
  181. data/spec/controllers/spotlight/search_configurations_controller_spec.rb +125 -0
  182. data/spec/controllers/spotlight/searches_controller_spec.rb +84 -63
  183. data/spec/controllers/spotlight/solr_controller_spec.rb +13 -14
  184. data/spec/controllers/spotlight/tags_controller_spec.rb +16 -16
  185. data/spec/controllers/spotlight/versions_controller_spec.rb +15 -18
  186. data/spec/controllers/spotlight/view_configurations_controller_spec.rb +31 -0
  187. data/spec/factories/contacts.rb +1 -3
  188. data/spec/factories/custom_fields.rb +2 -4
  189. data/spec/factories/exhibits.rb +4 -2
  190. data/spec/factories/pages.rb +8 -11
  191. data/spec/factories/resources.rb +4 -4
  192. data/spec/factories/searches.rb +10 -13
  193. data/spec/factories/tags.rb +0 -3
  194. data/spec/factories/users.rb +2 -4
  195. data/spec/features/about_page_spec.rb +19 -19
  196. data/spec/features/add_contacts_spec.rb +34 -34
  197. data/spec/features/add_custom_field_metadata_spec.rb +24 -26
  198. data/spec/features/add_item_bookmarklet_spec.rb +12 -12
  199. data/spec/features/browse_category_admin_spec.rb +39 -39
  200. data/spec/features/catalog_spec.rb +9 -10
  201. data/spec/features/confirm_email_spec.rb +10 -10
  202. data/spec/features/create_exhibit_spec.rb +18 -15
  203. data/spec/features/create_page_spec.rb +8 -8
  204. data/spec/features/curator_items.rb +3 -3
  205. data/spec/features/dashboard_spec.rb +15 -16
  206. data/spec/features/edit_contact_spec.rb +8 -10
  207. data/spec/features/edit_search_fields_spec.rb +79 -0
  208. data/spec/features/exhibits/add_tags_spec.rb +15 -16
  209. data/spec/features/exhibits/administration_spec.rb +25 -25
  210. data/spec/features/exhibits/custom_metadata_fields_spec.rb +41 -43
  211. data/spec/features/exhibits/edit_metadata_fields_spec.rb +19 -19
  212. data/spec/features/feature_page_spec.rb +49 -48
  213. data/spec/features/home_page_spec.rb +38 -38
  214. data/spec/features/import_exhibit_spec.rb +23 -20
  215. data/spec/features/item_admin_spec.rb +28 -29
  216. data/spec/features/javascript/about_page_admin_spec.rb +9 -9
  217. data/spec/features/javascript/block_controls_spec.rb +16 -18
  218. data/spec/features/javascript/blocks/featured_browse_categories_block_spec.rb +11 -12
  219. data/spec/features/javascript/blocks/featured_pages_block_spec.rb +12 -13
  220. data/spec/features/javascript/blocks/search_result_block_spec.rb +17 -17
  221. data/spec/features/javascript/blocks/solr_documents_block_spec.rb +67 -65
  222. data/spec/features/javascript/edit_in_place_spec.rb +30 -56
  223. data/spec/features/javascript/feature_page_admin_spec.rb +73 -59
  224. data/spec/features/javascript/home_page_edit_spec.rb +6 -6
  225. data/spec/features/javascript/metadata_admin_spec.rb +15 -15
  226. data/spec/features/javascript/multi_image_select_spec.rb +17 -18
  227. data/spec/features/javascript/preview_block_spec.rb +11 -12
  228. data/spec/features/javascript/rule_block_spec.rb +7 -7
  229. data/spec/features/javascript/search_config_admin_spec.rb +144 -0
  230. data/spec/features/javascript/search_context_spec.rb +41 -42
  231. data/spec/features/main_navigation_spec.rb +22 -22
  232. data/spec/features/metadata_admin_spec.rb +8 -8
  233. data/spec/features/multiple_exhibits_spec.rb +15 -17
  234. data/spec/features/report_a_problem_spec.rb +23 -17
  235. data/spec/features/site_masthead_spec.rb +46 -46
  236. data/spec/features/slideshow_spec.rb +8 -9
  237. data/spec/features/tags_admin_spec.rb +11 -11
  238. data/spec/features/upload_non_repository_item_spec.rb +32 -32
  239. data/spec/features/user_admin_spec.rb +7 -7
  240. data/spec/helpers/spotlight/application_helper_spec.rb +63 -56
  241. data/spec/helpers/spotlight/browse_helper_spec.rb +6 -6
  242. data/spec/helpers/spotlight/crud_link_helpers_spec.rb +58 -52
  243. data/spec/helpers/spotlight/main_app_helpers_spec.rb +44 -24
  244. data/spec/helpers/spotlight/navbar_helper_spec.rb +4 -4
  245. data/spec/helpers/spotlight/pages_helper_spec.rb +56 -37
  246. data/spec/helpers/spotlight/roles_helper_spec.rb +3 -3
  247. data/spec/helpers/spotlight/search_configurations_helper_spec.rb +24 -0
  248. data/spec/helpers/spotlight/title_helper_spec.rb +33 -35
  249. data/spec/jobs/spotlight/reindex_job_spec.rb +6 -6
  250. data/spec/jobs/spotlight/rename_sidecar_field_job_spec.rb +7 -7
  251. data/spec/lib/spotlight/catalog/access_controls_enforcement_spec.rb +41 -26
  252. data/spec/lib/spotlight/controller_spec.rb +10 -10
  253. data/spec/lib/spotlight/routes_spec.rb +4 -4
  254. data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +13 -13
  255. data/spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb +8 -8
  256. data/spec/models/{spotlight/sir_trevor_blocks → sir_trevor_rails/blocks}/textable_spec.rb +7 -8
  257. data/spec/models/solr_document_spec.rb +49 -50
  258. data/spec/models/spotlight/ability_spec.rb +17 -20
  259. data/spec/models/spotlight/about_page_spec.rb +6 -6
  260. data/spec/models/spotlight/analytics/ga_spec.rb +2 -2
  261. data/spec/models/spotlight/blacklight_configuration_spec.rb +196 -133
  262. data/spec/models/spotlight/contact_email_spec.rb +28 -24
  263. data/spec/models/spotlight/contact_spec.rb +6 -7
  264. data/spec/models/spotlight/custom_field_spec.rb +51 -52
  265. data/spec/models/spotlight/exhibit_spec.rb +102 -60
  266. data/spec/models/spotlight/feature_page_spec.rb +32 -32
  267. data/spec/models/spotlight/featured_image_spec.rb +5 -5
  268. data/spec/models/spotlight/field_metadata_spec.rb +78 -0
  269. data/spec/models/spotlight/home_page_spec.rb +11 -20
  270. data/spec/models/spotlight/{spotlight_image_derivatives_spec.rb → image_derivatives_spec.rb} +2 -2
  271. data/spec/models/spotlight/main_navigation_spec.rb +7 -9
  272. data/spec/models/spotlight/masthead_spec.rb +6 -6
  273. data/spec/models/spotlight/page_spec.rb +26 -29
  274. data/spec/models/spotlight/resource_spec.rb +56 -26
  275. data/spec/models/spotlight/resources/open_graph_spec.rb +16 -18
  276. data/spec/models/spotlight/resources/upload_spec.rb +32 -35
  277. data/spec/models/spotlight/resources/web_spec.rb +9 -11
  278. data/spec/models/spotlight/role_spec.rb +20 -20
  279. data/spec/models/spotlight/search_spec.rb +32 -15
  280. data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +34 -0
  281. data/spec/models/spotlight/{solr_document_images_spec.rb → solr_document/spotlight_images_spec.rb} +18 -10
  282. data/spec/models/spotlight/solr_document/uploaded_resource_spec.rb +52 -0
  283. data/spec/models/spotlight/solr_document_sidecar_spec.rb +3 -4
  284. data/spec/routing/spotlight/exhibit_catalog_spec.rb +5 -5
  285. data/spec/routing/spotlight/pages_routing_spec.rb +24 -25
  286. data/spec/serializers/spotlight/exhibit_export_serializer_spec.rb +88 -68
  287. data/spec/spec_helper.rb +13 -22
  288. data/spec/support/features/test_features_helpers.rb +50 -46
  289. data/spec/support/views/test_view_helpers.rb +1 -1
  290. data/spec/test_app_templates/Gemfile.extra +0 -1
  291. data/spec/test_app_templates/carrierwave.rb +2 -2
  292. data/spec/test_app_templates/catalog_controller.rb +42 -42
  293. data/spec/test_app_templates/lib/generators/test_app_generator.rb +20 -11
  294. data/spec/test_app_templates/spotlight_test.rake +3 -3
  295. data/spec/uploaders/spotlight/item_uploader_spec.rb +68 -0
  296. data/spec/views/_user_util_links.html.erb_spec.rb +14 -14
  297. data/spec/views/shared/_analytics.html.erb_spec.rb +4 -6
  298. data/spec/views/shared/_exhibit_masthead.html.erb_spec.rb +19 -20
  299. data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +129 -131
  300. data/spec/views/shared/_footer.html.erb_spec.rb +6 -7
  301. data/spec/views/shared/_header_navbar.html.erb_spec.rb +5 -5
  302. data/spec/views/spotlight/about_pages/_empty.html.erb_spec.rb +4 -4
  303. data/spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb +9 -11
  304. data/spec/views/spotlight/about_pages/index.html.erb_spec.rb +31 -28
  305. data/spec/views/spotlight/browse/_search.html.erb_spec.rb +6 -6
  306. data/spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb +10 -12
  307. data/spec/views/spotlight/browse/index.html.erb_spec.rb +6 -6
  308. data/spec/views/spotlight/browse/show.html.erb_spec.rb +19 -20
  309. data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +7 -7
  310. data/spec/views/spotlight/catalog/admin.html.erb_spec.rb +7 -7
  311. data/spec/views/spotlight/catalog/edit.html.erb_spec.rb +3 -6
  312. data/spec/views/spotlight/catalog/new.html.erb_spec.rb +8 -10
  313. data/spec/views/spotlight/contacts/edit.html.erb_spec.rb +8 -8
  314. data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +22 -22
  315. data/spec/views/spotlight/exhibits/edit.html.erb_spec.rb +7 -8
  316. data/spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb +5 -5
  317. data/spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb +24 -26
  318. data/spec/views/spotlight/home_pages/_empty.html.erb_spec.rb +13 -9
  319. data/spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb +6 -6
  320. data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +26 -0
  321. data/spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb +22 -0
  322. data/spec/views/spotlight/pages/edit.html.erb_spec.rb +16 -16
  323. data/spec/views/spotlight/pages/index.html.erb_spec.rb +19 -17
  324. data/spec/views/spotlight/pages/new.html.erb_spec.rb +6 -6
  325. data/spec/views/spotlight/pages/show.html.erb_spec.rb +27 -28
  326. data/spec/views/spotlight/roles/index.html.erb_spec.rb +6 -6
  327. data/spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb +54 -0
  328. data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +28 -0
  329. data/spec/views/spotlight/searches/_search.html.erb_spec.rb +20 -10
  330. data/spec/views/spotlight/searches/edit.html.erb_spec.rb +12 -11
  331. data/spec/views/spotlight/searches/index.html.erb_spec.rb +12 -7
  332. data/spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb +7 -8
  333. data/spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb +4 -4
  334. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb +38 -0
  335. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb +7 -8
  336. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb +18 -13
  337. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb +14 -12
  338. data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb +11 -12
  339. data/spec/views/spotlight/tags/index.html.erb_spec.rb +9 -9
  340. metadata +167 -83
  341. data/app/controllers/spotlight/blacklight_configurations_controller.rb +0 -101
  342. data/app/controllers/spotlight/resources/csv_controller.rb +0 -23
  343. data/app/forms/spotlight/appearance.rb +0 -86
  344. data/app/helpers/spotlight/attachments_helper.rb +0 -4
  345. data/app/helpers/spotlight/blacklight_configurations_helper.rb +0 -15
  346. data/app/jobs/spotlight/set_default_thumbnail_job.rb +0 -16
  347. data/app/models/spotlight/resources/csv.rb +0 -80
  348. data/app/uploaders/spotlight/csv_uploader.rb +0 -15
  349. data/app/views/spotlight/blacklight_configurations/edit_facet_fields.html.erb +0 -47
  350. data/app/views/spotlight/blacklight_configurations/edit_sort_fields.html.erb +0 -65
  351. data/app/views/spotlight/resources/csv/_form.html.erb +0 -17
  352. data/app/views/spotlight/resources/csv/new.html.erb +0 -3
  353. data/spec/controllers/spotlight/blacklight_configurations_controller_spec.rb +0 -167
  354. data/spec/features/edit_sort_fields_spec.rb +0 -42
  355. data/spec/features/exhibits/edit_facet_fields_spec.rb +0 -37
  356. data/spec/features/javascript/facet_admin_spec.rb +0 -36
  357. data/spec/features/search_facets_admin_spec.rb +0 -19
  358. data/spec/features/update_appearance_spec.rb +0 -58
  359. data/spec/helpers/spotlight/blacklight_configurations_helper_spec.rb +0 -12
  360. data/spec/models/spotlight/appearance_spec.rb +0 -33
  361. data/spec/models/spotlight/resources/csv_spec.rb +0 -101
  362. data/spec/models/spotlight/solr_document_atomic_updates_spec.rb +0 -29
  363. data/spec/models/spotlight/solr_document_uploaded_resource_spec.rb +0 -45
  364. data/spec/uploaders/item_uploader_spec.rb +0 -62
  365. data/spec/views/spotlight/blacklight_configuration/_metadata_field.html.erb_spec.rb +0 -27
  366. data/spec/views/spotlight/blacklight_configuration/edit_metadata_fields.html.erb_spec.rb +0 -23
  367. data/spec/views/spotlight/blacklight_configuration/edit_sort_fields.html.erb_spec.rb +0 -19
@@ -7,9 +7,9 @@
7
7
  <div id="<%= html_id %>" class="row carousel" data-ride="carousel" data-interval="false">
8
8
  <div class="col-sm-6">
9
9
  <div class="carousel-inner">
10
- <% solr_documents_features_block.documents.each_with_index do |document, index| %>
10
+ <% solr_documents_features_block.each_document.each_with_index do |(block_options, document), index| %>
11
11
  <div class="item <%= 'active' if index == 0 %>" data-id="<%= document.id %>">
12
- <% if block_thumb = solr_documents_features_block.document_options(document.id)[:full_image_url] %>
12
+ <% if block_thumb = block_options[:full_image_url] %>
13
13
  <%= link_to_document(document, image_tag(block_thumb), counter: -1) %>
14
14
  <% elsif has_thumbnail? document %>
15
15
  <%= render_thumbnail_tag(document, {}, document_counter: -1) %>
@@ -1,10 +1,10 @@
1
1
  <% solr_documents_grid_block.with_solr_helper(self) %>
2
- <div class="content-block item-grid-block row">
3
- <div class="items-col col-md-9 pull-<%= solr_documents_grid_block.content_align %>">
2
+ <div class="content-block items-block item-grid-block row">
3
+ <div class="items-col <%= solr_documents_grid_block.text? ? 'col-md-9' : 'col-md-12' %> pull-<%= solr_documents_grid_block.content_align %>">
4
4
  <% if solr_documents_grid_block.documents? %>
5
- <% solr_documents_grid_block.documents.each_with_index do |document, index| %>
5
+ <% solr_documents_grid_block.each_document.each_with_index do |(block_options, document), index| %>
6
6
  <div class="box item-<%= index %>" data-id="<%= document.id %>">
7
- <% if block_thumb = solr_documents_grid_block.document_options(document.id)[:thumbnail_image_url] %>
7
+ <% if block_thumb = block_options[:thumbnail_image_url] %>
8
8
  <div class="thumbnail"><%= link_to_document(document, image_tag(block_thumb), counter: -1) %></div>
9
9
  <% elsif has_thumbnail? document %>
10
10
  <div class="thumbnail"><%= render_thumbnail_tag(document, {}, document_counter: -1) %></div>
@@ -14,8 +14,13 @@
14
14
  <% end %>
15
15
  </div>
16
16
 
17
- <div class="text-col col-md-3 pull-<%= solr_documents_grid_block.text_align %>">
18
- <h3><%= solr_documents_grid_block.title %></h3>
19
- <%= sir_trevor_markdown solr_documents_grid_block.text %>
20
- </div>
21
- </div>
17
+
18
+ <% if solr_documents_grid_block.text? %>
19
+ <div class="text-col col-md-3">
20
+ <% unless solr_documents_grid_block.title.blank? %>
21
+ <h3><%= solr_documents_grid_block.title %></h3>
22
+ <% end %>
23
+ <%= sir_trevor_markdown solr_documents_grid_block.text %>
24
+ </div>
25
+ <% end %>
26
+ </div>
@@ -37,7 +37,6 @@ en:
37
37
  batch_updated: "%{model} were successfully updated."
38
38
  batch_error: "There was an error updating the requested %{model}."
39
39
  destroyed: "The %{model} was deleted."
40
- appearance: *spotlight_default
41
40
  contact:
42
41
  create: "Save"
43
42
  created: "The %{model} was created."
@@ -70,8 +69,6 @@ en:
70
69
  solr_document: *spotlight_default
71
70
  users: *spotlight_default
72
71
  custom_field: *spotlight_default
73
- resource_csv:
74
- create: "Import"
75
72
  role:
76
73
  updated: "User has been updated."
77
74
  destroyed: "User has been removed."
@@ -84,8 +81,6 @@ en:
84
81
  spotlight:
85
82
  page: Page
86
83
  attributes:
87
- "spotlight/resource/csv":
88
- url: "File"
89
84
  "spotlight/contact":
90
85
  avatar: "Photo"
91
86
  "spotlight/page":
@@ -117,20 +112,23 @@ en:
117
112
  appearances:
118
113
  edit:
119
114
  header: Appearance
120
- document_index_view_types: Result page types
121
- default_per_page: Default results per page
122
115
  exhibit_style:
123
116
  heading: "Exhibit style"
124
- searchable:
125
- label: "Searchable (offer searchbox and facet sidebar)"
126
117
  main_navigation:
127
118
  menu: Main menu
128
- help: Select the menu items you want to be displayed in the main navigation menu (menu items are only displayed when published pages exist for that item). Click a menu item to change its display label. Drag and drop a menu item to change their order in the menu.
119
+ help: >
120
+ Select the menu items you want to be displayed in the main navigation menu
121
+ (menu items are only displayed when published pages exist for that item).
122
+ Click a menu item to change its display label. Drag and drop a menu item
123
+ to change their order in the menu.
129
124
  restore_default: "Restore default"
130
- search_results: Search results
131
125
  site_masthead:
132
126
  heading: Site masthead
133
- help: "You can select and crop an image to use as a background in your exhibit site's masthead. To use an image as a masthead background, you should use an image that is at least 120 pixels tall and 1200 pixels wide. For best results use an image at least 1800 pixels wide. You can crop larger images using the cropping tool below."
127
+ help: >
128
+ You can select and crop an image to use as a background in your exhibit site's
129
+ masthead. To use an image as a masthead background, you should use an image that
130
+ is at least 120 pixels tall and 1200 pixels wide. For best results use an image at
131
+ least 1800 pixels wide. You can crop larger images using the cropping tool below.
134
132
  site_thumbnail:
135
133
  heading: Site thumbnail
136
134
  help: "You can select and crop an image to visually represent this exhibit."
@@ -153,22 +151,57 @@ en:
153
151
  browse: Browse
154
152
  feature_pages: Feature pages
155
153
  about_pages: About pages
154
+ search_configuration: Search
156
155
  nav:
157
156
  home: "Home"
158
157
  header: "Curation"
159
- blacklight_configurations:
160
- edit_facet_fields:
161
- header: "Search Facets"
162
- options: "Options"
163
- field:
164
- label: "Display Label"
165
- items_count:
158
+ search_configurations:
159
+ edit:
160
+ header: "Search"
161
+ tab:
162
+ options: "Options"
163
+ facets: "Facets"
164
+ results: "Results"
165
+ search_fields:
166
+ header: "Field-based search"
167
+ help: >
168
+ Enable field-based search to add a dropdown menu to your exhibit sites search box that
169
+ provides the user with an option to restrict a search query to a single metadata field.
170
+ instructions: >
171
+ If enabled, you can select the metadata fields that are available for searching. Click
172
+ a field name to edit its display label. Drag and drop fields to specify the order they
173
+ are displayed in the search box dropdown menu.
174
+ enable_feature: Enable field-based search
175
+ facets:
176
+ help: >
177
+ If the sidebar is visible, users can use
178
+ the facets shown in the sidebar to limit a search. You can select the facets
179
+ that are available for searching below. Click a facet field name to edit its display label.
180
+ Drag and drop facets to specify the order they are displayed in the sidebar.
181
+ document_count:
166
182
  one: "%{count} item"
167
183
  other: "%{count} items"
168
- values_count:
184
+ value_count:
169
185
  one: "%{count} unique value"
170
186
  other: "%{count} unique values"
171
- edit_metadata_fields:
187
+ sort:
188
+ header: "Sort fields"
189
+ help: >
190
+ Select the fields you want to be available to users for sorting results.
191
+ Click a field title to change its display label. Drag and drop fields to
192
+ change their order in the sort dropdown menu. The field listed first is
193
+ the default sort field.
194
+ keys:
195
+ asc: ascending
196
+ desc: descending
197
+ score: relevancy score
198
+ sort_date_dtsi: date
199
+ sort_title_ssi: title
200
+ sort_type_ssi: type
201
+ sort_source_ssi: source
202
+ id: id
203
+ metadata_configurations:
204
+ edit:
172
205
  field:
173
206
  label: "Field name"
174
207
  deselect_all: "Deselect all"
@@ -181,24 +214,16 @@ en:
181
214
  "You can add metadata fields to supplement the metadata fields that are part of the repository item record."
182
215
  view:
183
216
  show: "Item Details"
184
- instructions: Select metadata fields to display on each type of page. Click a field name to edit its display label. Drag and drop fields to specify the order they are displayed on the Item Details page.
185
- edit_sort_fields:
186
- header: Sort fields
187
- help: "Select the fields you want to be available to users for sorting results. Click a field title to change its display label. Drag and drop fields to change their order in the sort dropdown menu. The field listed first is the default sort field."
188
- sort_keys:
189
- asc: ascending
190
- desc: descending
191
- score: relevancy score
192
- sort_date_dtsi: date
193
- sort_title_ssi: title
194
- sort_type_ssi: type
195
- sort_source_ssi: source
196
- id: id
217
+ instructions: >
218
+ Select metadata fields to display on each type of page. Click a field name
219
+ to edit its display label. Drag and drop fields to specify the order they
220
+ are displayed on the Item Details page.
197
221
  catalog:
198
222
  breadcrumb:
199
223
  index: 'Search Results'
200
224
  edit_default:
201
- blank_field_warning_html: "This field is currently hidden on all pages. You can make it visible on the Curation &gt; %{link} page."
225
+ blank_field_warning_html: >
226
+ This field is currently hidden on all pages. You can make it visible on the Curation &gt; %{link} page.
202
227
  full_title_tesim: "Title"
203
228
  url-field:
204
229
  help: "Valid file types: %{extensions}"
@@ -274,7 +299,9 @@ en:
274
299
  breadcrumb: Home
275
300
  delete:
276
301
  heading: Delete exhibit
277
- warning_html: This action is irreversible. Be sure to back up the exhibit settings and content using the %{export_link} feature before proceeding.
302
+ warning_html: >
303
+ This action is irreversible. Be sure to back up the exhibit settings and content using
304
+ the %{export_link} feature before proceeding.
278
305
  edit:
279
306
  header: Settings
280
307
  basic_settings:
@@ -294,7 +321,9 @@ en:
294
321
  button: Import data
295
322
  export:
296
323
  heading: Export data
297
- instructions: You can create a backup of this exhibit by exporting the data that defines it to a JSON file. You can then import that JSON file into new exhibit to restore the exhibit data or to use as a starting point for a new exhibit.
324
+ instructions: >
325
+ You can create a backup of this exhibit by exporting the data that defines it to a JSON file.
326
+ You can then import that JSON file into new exhibit to restore the exhibit data or to use as a starting point for a new exhibit.
298
327
  download: Export data
299
328
  confirmation_status:
300
329
  confirmed: Confirmed.
@@ -334,7 +363,9 @@ en:
334
363
  page_options: "Options"
335
364
  page_thumbnail: "Thumbnail"
336
365
  thumbnail:
337
- help: "You can select and crop an image to visually represent this page. It will be used as the thumbnail image if you include this page using the 'Highlight Featured Pages' widget."
366
+ help: >
367
+ You can select and crop an image to visually represent this page. It will be
368
+ used as the thumbnail image if you include this page using the 'Highlight Featured Pages' widget.
338
369
  contacts:
339
370
  edit:
340
371
  header: "Edit Contact"
@@ -356,7 +387,10 @@ en:
356
387
  header: Contacts
357
388
  contact:
358
389
  legend: Contact Details
359
- instructions: Enter details for each librarian, curator or other contact person for this exhibit. Select the contacts you want to be show in the sidebar of the About Pages. Drag and drop contacts to specify the order in which they are shown in the sidebar.
390
+ instructions: >
391
+ Enter details for each librarian, curator or other contact person for this exhibit.
392
+ Select the contacts you want to be show in the sidebar of the About Pages. Drag and
393
+ drop contacts to specify the order in which they are shown in the sidebar.
360
394
  nav_link: About
361
395
  page_options:
362
396
  published: "Publish" # Possibly no longer used
@@ -378,7 +412,9 @@ en:
378
412
  remote:
379
413
  label: "Upload an image"
380
414
  header: "Cropped image"
381
- help: 'Adjust the cropping box to cover the area of the image you want to use as the thumbnail image. Click "Save Changes" to save the cropped area.'
415
+ help: >
416
+ Adjust the cropping box to cover the area of the image you want to use
417
+ as the thumbnail image. Click "Save Changes" to save the cropped area.
382
418
 
383
419
  resources:
384
420
  new:
@@ -386,10 +422,6 @@ en:
386
422
  form:
387
423
  needs_provider: "Could not find an appropriate importer"
388
424
  has_provider: "Ready to import"
389
- csv:
390
- header: 'CSV Import'
391
- form:
392
- template: "Download Template"
393
425
  upload:
394
426
  csv:
395
427
  success: "'%{file_name}' has been uploaded. An email will be sent to you once indexing is complete."
@@ -427,9 +459,17 @@ en:
427
459
  header: "Browse"
428
460
  title: "Curation - Browse"
429
461
  categories_header: "Browse Categories"
430
- instructions: "Use the Save search button on a search results page to create a new browse category. Select the categories you want to be displayed on the browse landing page. Drag and drop categories to change the order in which they appear on that page."
431
- no_saved_searches: "You can save search results while in curation mode to create browse categories, which will be displayed here."
432
- not_searchable_html: "This exhibit is not currently searchable. To perform searches that can be saved as additional browse categories, an Administrator must temporarily turn on the Searchable option in the exhibit style section of the Administration > %{href} page."
462
+ instructions: >
463
+ Use the Save search button on a search results page to create a new browse category.
464
+ Select the categories you want to be displayed on the browse landing page. Drag and
465
+ drop categories to change the order in which they appear on that page."
466
+ no_saved_searches: >
467
+ You can save search results while in curation mode to create browse categories,
468
+ which will be displayed here.
469
+ not_searchable_html: >
470
+ This exhibit is not currently searchable. To perform searches that can be saved as
471
+ additional browse categories, an Administrator must temporarily turn on the Searchable
472
+ option in the search configuration section of the Administration > %{href} page.
433
473
  edit:
434
474
  header: "Edit Browse Category"
435
475
  title: "Curation - Browse"
@@ -444,8 +484,13 @@ en:
444
484
  search_masthead: "Masthead"
445
485
  search_thumbnail: "Thumbnail"
446
486
  masthead:
447
- help: "You can select and crop an image to use as a browse category-specific masthead, instead of the default site masthead, for this browse category's detail page."
448
- help_secondary: "To create a browse category-specific masthead, you should use an image that is at least 120 pixels tall and 1200 pixels wide. For best results use an image at least 1800 pixels wide. You can crop larger images using the cropping tool below."
487
+ help: >
488
+ You can select and crop an image to use as a browse category-specific masthead, instead
489
+ of the default site masthead, for this browse category's detail page.
490
+ help_secondary: >
491
+ To create a browse category-specific masthead, you should use an image that is at least
492
+ 120 pixels tall and 1200 pixels wide. For best results use an image at least 1800 pixels wide.
493
+ You can crop larger images using the cropping tool below.
449
494
  thumbnail:
450
495
  help: "You can select and crop an image to visually represent this search."
451
496
  browse:
data/config/routes.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  Spotlight::Engine.routes.draw do
2
-
3
- devise_for :contact_email, class_name: "Spotlight::ContactEmail", only: [:confirmations]
2
+ devise_for :contact_email, class_name: 'Spotlight::ContactEmail', only: [:confirmations]
4
3
 
5
4
  resources :exhibits, path: '/', except: [:index, :show] do
6
5
  member do
@@ -11,16 +10,14 @@ Spotlight::Engine.routes.draw do
11
10
  end
12
11
 
13
12
  resources :attachments, only: :create
14
- resource :contact_form, path: "contact", only: [:new, :create]
13
+ resource :contact_form, path: 'contact', only: [:new, :create]
15
14
  resource :blacklight_configuration, only: [:update]
16
15
 
17
16
  resource :appearance, only: [:edit, :update]
18
17
 
19
- get 'edit/metadata', to: "blacklight_configurations#edit_metadata_fields"
20
- get 'edit/facets', to: "blacklight_configurations#edit_facet_fields"
21
- get 'edit/sort_fields', to: "blacklight_configurations#edit_sort_fields"
22
- get 'metadata', to: 'blacklight_configurations#metadata_fields'
23
- get 'available_search_views', to: 'blacklight_configurations#available_search_views'
18
+ resource :metadata_configuration, only: [:show, :edit, :update]
19
+ resource :search_configuration, only: [:show, :edit, :update]
20
+ resource :view_configuration, only: [:show]
24
21
 
25
22
  blacklight_for :catalog, only: [:export]
26
23
 
@@ -30,13 +27,13 @@ Spotlight::Engine.routes.draw do
30
27
  get 'autocomplete'
31
28
  end
32
29
 
33
- get "facet/:id", :to => "catalog#facet", :as => "catalog_facet"
30
+ get 'facet/:id', to: 'catalog#facet', as: 'catalog_facet'
34
31
 
35
- put 'visiblity', to: "catalog#make_public"
36
- delete 'visiblity', to: "catalog#make_private"
32
+ put 'visiblity', to: 'catalog#make_public'
33
+ delete 'visiblity', to: 'catalog#make_private'
37
34
  end
38
35
 
39
- get "catalog/:id", to: "catalog#show", as: "solr_document"
36
+ get 'catalog/:id', to: 'catalog#show', as: 'solr_document'
40
37
 
41
38
  resources :solr_document, only: [:edit], to: 'catalog#edit'
42
39
 
@@ -50,7 +47,7 @@ Spotlight::Engine.routes.draw do
50
47
  end
51
48
  end
52
49
 
53
- post :csv_uploads, to: "resources/upload#csv_upload", path: 'upload_resources/csv_upload', as: :resources_csv_uploads
50
+ post :csv_uploads, to: 'resources/upload#csv_upload', path: 'upload_resources/csv_upload', as: :resources_csv_uploads
54
51
 
55
52
  resources :resources_uploads, controller: 'resources/upload', path: 'upload_resources' do
56
53
  collection do
@@ -58,12 +55,6 @@ Spotlight::Engine.routes.draw do
58
55
  end
59
56
  end
60
57
 
61
- resources :resources_csvs, controller: 'resources/csv', path: 'csv_resources' do
62
- collection do
63
- get :template
64
- end
65
- end
66
-
67
58
  resources :searches do
68
59
  collection do
69
60
  patch :update_all
@@ -88,7 +79,7 @@ Spotlight::Engine.routes.draw do
88
79
  patch :update_all
89
80
  end
90
81
  end
91
- resource :home_page, path: 'home', controller: "home_pages"
82
+ resource :home_page, path: 'home', controller: 'home_pages'
92
83
  post '/pages/:id/preview' => 'pages#preview', as: :preview_block
93
84
 
94
85
  resources :lock, only: [:destroy]
@@ -0,0 +1,15 @@
1
+ # This migration comes from acts_as_taggable_on_engine (originally 3)
2
+ class AddTaggingsCounterCacheToTags < ActiveRecord::Migration
3
+ def self.up
4
+ add_column :tags, :taggings_count, :integer, default: 0
5
+
6
+ ActsAsTaggableOn::Tag.reset_column_information
7
+ ActsAsTaggableOn::Tag.find_each do |tag|
8
+ ActsAsTaggableOn::Tag.reset_counters(tag.id, :taggings)
9
+ end
10
+ end
11
+
12
+ def self.down
13
+ remove_column :tags, :taggings_count
14
+ end
15
+ end
@@ -0,0 +1,10 @@
1
+ # This migration comes from acts_as_taggable_on_engine (originally 4)
2
+ class AddMissingTaggableIndex < ActiveRecord::Migration
3
+ def self.up
4
+ add_index :taggings, [:taggable_id, :taggable_type, :context]
5
+ end
6
+
7
+ def self.down
8
+ remove_index :taggings, [:taggable_id, :taggable_type, :context]
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ # This migration comes from acts_as_taggable_on_engine (originally 5)
2
+ # This migration is added to circumvent issue #623 and have special characters
3
+ # work properly
4
+ class ChangeCollationForTagNames < ActiveRecord::Migration
5
+ def up
6
+ if ActsAsTaggableOn::Utils.using_mysql?
7
+ execute("ALTER TABLE tags MODIFY name varchar(255) CHARACTER SET utf8 COLLATE utf8_bin;")
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ class ChangeSpotlightSearchesToPublished < ActiveRecord::Migration
2
+ def up
3
+ rename_column :spotlight_searches, :on_landing_page, :published
4
+ end
5
+ end
@@ -0,0 +1,20 @@
1
+ class RemoveSearchableFromExhibit < ActiveRecord::Migration
2
+ def up
3
+ Spotlight::Exhibit.where(searchable: false).find_each do |e|
4
+ e.home_page.update(display_sidebar: false)
5
+ end
6
+
7
+ Spotlight::Exhibit.where(searchable: true).find_each do |e|
8
+ key = e.blacklight_configuration.default_blacklight_config.default_search_field.key
9
+
10
+ e.blacklight_configuration.search_fields[key] ||= {}
11
+ e.blacklight_configuration.search_fields[key][:enabled] = true
12
+ end
13
+
14
+ remove_column :spotlight_exhibits, :searchable
15
+ end
16
+
17
+ def down
18
+ add_column :spotlight_exhibits, :searchable, :boolean, default: true
19
+ end
20
+ end
@@ -1 +1 @@
1
- require 'spotlight'
1
+ require 'spotlight'