blacklight-spotlight 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (693) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/app/assets/javascripts/spotlight/application.js +1 -1
  4. data/app/assets/javascripts/spotlight/blacklight_configuration.js +28 -0
  5. data/app/assets/javascripts/spotlight/catalog_edit.js +45 -3
  6. data/app/assets/javascripts/spotlight/exhibits.js +3 -3
  7. data/app/assets/javascripts/spotlight/form_observer.js +64 -0
  8. data/app/assets/javascripts/spotlight/item_text_block.js +13 -5
  9. data/app/assets/javascripts/spotlight/multi_up_item_grid.js +96 -0
  10. data/app/assets/javascripts/spotlight/pages.js +18 -7
  11. data/app/assets/javascripts/spotlight/search_typeahead.js +1 -1
  12. data/app/assets/stylesheets/spotlight/{attachments.css → _attachments.css} +0 -0
  13. data/app/assets/stylesheets/spotlight/_blacklight_configuration.css.scss +21 -0
  14. data/app/assets/stylesheets/spotlight/_bootstrap_overrides.css.scss +29 -0
  15. data/app/assets/stylesheets/spotlight/{browse.css.scss → _browse.css.scss} +0 -0
  16. data/app/assets/stylesheets/spotlight/{catalog.css.scss → _catalog.css.scss} +11 -3
  17. data/app/assets/stylesheets/spotlight/{curation.css.scss → _curation.css.scss} +15 -4
  18. data/app/assets/stylesheets/spotlight/{exhibit_admin.css.scss → _exhibit_admin.css.scss} +0 -0
  19. data/app/assets/stylesheets/spotlight/_header.css.scss +41 -0
  20. data/app/assets/stylesheets/spotlight/{item_text_block.css.scss → _item_text_block.css.scss} +7 -1
  21. data/app/assets/stylesheets/spotlight/_multi_up_item_grid.css.scss +41 -0
  22. data/app/assets/stylesheets/spotlight/{nestable.css.scss → _nestable.css.scss} +0 -0
  23. data/app/assets/stylesheets/spotlight/_pages.css.scss +43 -0
  24. data/app/assets/stylesheets/spotlight/{sir-trevor.css.scss → _sir-trevor.css.scss} +0 -0
  25. data/app/assets/stylesheets/spotlight/_variables.css.scss +0 -0
  26. data/app/assets/stylesheets/spotlight/_variables_bootstrap.css.scss +7 -0
  27. data/app/assets/stylesheets/spotlight/{application.css → application.css.scss} +3 -2
  28. data/app/assets/stylesheets/spotlight/spotlight.css.scss +15 -0
  29. data/app/assets/stylesheets/spotlight/typeahead.css +0 -1
  30. data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +24 -0
  31. data/app/controllers/spotlight/about_pages_controller.rb +30 -8
  32. data/app/controllers/spotlight/blacklight_configurations_controller.rb +9 -3
  33. data/app/controllers/spotlight/browse_controller.rb +31 -2
  34. data/app/controllers/spotlight/catalog_controller.rb +92 -7
  35. data/app/controllers/spotlight/contact_forms_controller.rb +1 -0
  36. data/app/controllers/spotlight/contacts_controller.rb +54 -0
  37. data/app/controllers/spotlight/custom_fields_controller.rb +15 -4
  38. data/app/controllers/spotlight/dashboard_controller.rb +13 -0
  39. data/app/controllers/spotlight/dashboards_controller.rb +36 -0
  40. data/app/controllers/spotlight/exhibits_controller.rb +4 -6
  41. data/app/controllers/spotlight/feature_pages_controller.rb +13 -10
  42. data/app/controllers/spotlight/home_pages_controller.rb +13 -20
  43. data/app/controllers/spotlight/pages_controller.rb +21 -14
  44. data/app/controllers/spotlight/roles_controller.rb +3 -0
  45. data/app/controllers/spotlight/searches_controller.rb +10 -0
  46. data/app/controllers/spotlight/tags_controller.rb +14 -2
  47. data/app/helpers/spotlight/admin_title_helper.rb +27 -0
  48. data/app/helpers/spotlight/application_helper.rb +11 -0
  49. data/app/helpers/spotlight/crud_link_helpers.rb +68 -0
  50. data/app/helpers/spotlight/main_app_helpers.rb +1 -15
  51. data/app/helpers/spotlight/pages_helper.rb +14 -0
  52. data/app/helpers/spotlight/roles_helper.rb +7 -0
  53. data/app/models/concerns/spotlight/ar_light.rb +16 -0
  54. data/app/models/concerns/spotlight/solr_document.rb +52 -2
  55. data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +22 -0
  56. data/app/models/spotlight/ability.rb +12 -22
  57. data/app/models/spotlight/blacklight_configuration.rb +19 -13
  58. data/app/models/spotlight/contact.rb +5 -0
  59. data/app/models/spotlight/contact_form.rb +4 -2
  60. data/app/models/spotlight/custom_field.rb +7 -1
  61. data/app/models/spotlight/exhibit.rb +5 -3
  62. data/app/models/spotlight/home_page.rb +15 -6
  63. data/app/models/spotlight/page.rb +8 -0
  64. data/app/models/spotlight/role.rb +3 -1
  65. data/app/models/spotlight/search.rb +4 -0
  66. data/app/models/spotlight/solr_document_sidecar.rb +22 -0
  67. data/app/views/_user_util_links.html.erb +3 -6
  68. data/app/views/catalog/_image_default.html.erb +1 -1
  69. data/app/views/catalog/_save_search.html.erb +1 -1
  70. data/app/views/catalog/_sort_and_per_page.html.erb +1 -1
  71. data/app/views/shared/_exhibit_masthead.html.erb +2 -2
  72. data/app/views/shared/_exhibit_navbar.html.erb +11 -7
  73. data/app/views/shared/_header_navbar.html.erb +1 -1
  74. data/app/views/sir-trevor/blocks/_item_text_block.html.erb +1 -1
  75. data/app/views/sir-trevor/blocks/_multi_up_item_grid_block.html.erb +25 -0
  76. data/app/views/spotlight/about_pages/_contact.html.erb +19 -0
  77. data/app/views/spotlight/about_pages/_contact_properties.html.erb +5 -0
  78. data/app/views/spotlight/about_pages/_sidebar.html.erb +12 -1
  79. data/app/views/spotlight/about_pages/index.html.erb +20 -0
  80. data/app/views/spotlight/blacklight_configurations/edit_facet_fields.html.erb +11 -18
  81. data/app/views/spotlight/blacklight_configurations/edit_metadata_fields.html.erb +19 -19
  82. data/app/views/spotlight/browse/_search.html.erb +1 -1
  83. data/app/views/spotlight/browse/index.html.erb +1 -1
  84. data/app/views/spotlight/browse/show.html.erb +1 -1
  85. data/app/views/spotlight/catalog/_admin_thumbnail_default.html.erb +6 -0
  86. data/app/views/spotlight/catalog/_curation_mode_toggle_default.html.erb +3 -3
  87. data/app/views/spotlight/catalog/_document_admin_table.html.erb +6 -1
  88. data/app/views/spotlight/catalog/_document_visibility_control.html.erb +5 -0
  89. data/app/views/spotlight/catalog/_edit_default.html.erb +4 -2
  90. data/app/views/spotlight/catalog/_index_compact_default.html.erb +9 -1
  91. data/app/views/spotlight/catalog/_tags_default.html.erb +1 -1
  92. data/app/views/spotlight/catalog/admin.html.erb +1 -8
  93. data/app/views/spotlight/catalog/edit.html.erb +1 -5
  94. data/app/views/spotlight/contact_forms/new.html.erb +2 -4
  95. data/app/views/spotlight/contacts/_form.html.erb +11 -0
  96. data/app/views/spotlight/contacts/edit.html.erb +5 -0
  97. data/app/views/spotlight/contacts/new.html.erb +5 -0
  98. data/app/views/spotlight/custom_fields/_form.html.erb +3 -8
  99. data/app/views/spotlight/custom_fields/edit.html.erb +3 -1
  100. data/app/views/spotlight/custom_fields/new.html.erb +3 -0
  101. data/app/views/spotlight/dashboards/_analytics.html.erb +0 -0
  102. data/app/views/spotlight/dashboards/_page.html.erb +11 -0
  103. data/app/views/spotlight/dashboards/_page_activity.html.erb +28 -0
  104. data/app/views/spotlight/dashboards/_solr_document_activity.html.erb +3 -0
  105. data/app/views/spotlight/dashboards/show.html.erb +15 -0
  106. data/app/views/spotlight/exhibits/edit.html.erb +9 -14
  107. data/app/views/spotlight/feature_pages/_header.html.erb +5 -9
  108. data/app/views/spotlight/pages/_curation_mode_toggle.html.erb +12 -0
  109. data/app/views/spotlight/pages/_form.html.erb +2 -2
  110. data/app/views/spotlight/pages/_order_pages.html.erb +27 -0
  111. data/app/views/spotlight/pages/_page.html.erb +5 -5
  112. data/app/views/spotlight/pages/edit.html.erb +4 -2
  113. data/app/views/spotlight/pages/index.html.erb +1 -27
  114. data/app/views/spotlight/pages/new.html.erb +2 -2
  115. data/app/views/spotlight/pages/show.html.erb +8 -6
  116. data/app/views/spotlight/roles/_edit_fields.html.erb +1 -1
  117. data/app/views/spotlight/roles/index.html.erb +17 -13
  118. data/app/views/spotlight/searches/_search.html.erb +4 -4
  119. data/app/views/spotlight/searches/edit.html.erb +3 -4
  120. data/app/views/spotlight/searches/index.html.erb +12 -11
  121. data/app/views/spotlight/shared/_admin_sidebar.html.erb +0 -1
  122. data/app/views/spotlight/shared/_curation_sidebar.html.erb +3 -1
  123. data/app/views/spotlight/tags/index.html.erb +10 -12
  124. data/config/locales/spotlight.en.yml +196 -85
  125. data/config/routes.rb +14 -1
  126. data/db/migrate/20131119213142_create_spotlight_pages.rb +2 -0
  127. data/db/migrate/20140128155151_create_exhibits.rb +0 -1
  128. data/db/migrate/20140130215634_create_spotlight_blacklight_configurations.rb +1 -0
  129. data/db/migrate/20140211212626_create_spotlight_solr_document_sidecars.rb +1 -0
  130. data/db/migrate/20140218155151_create_contacts.rb +16 -0
  131. data/lib/generators/spotlight/install_generator.rb +1 -1
  132. data/lib/generators/spotlight/templates/spotlight.css.scss +3 -3
  133. data/lib/spotlight/catalog.rb +11 -1
  134. data/lib/spotlight/catalog/access_controls_enforcement.rb +15 -0
  135. data/lib/spotlight/engine.rb +10 -3
  136. data/lib/spotlight/rails/routes.rb +6 -2
  137. data/lib/spotlight/version.rb +1 -1
  138. data/spec/controllers/spotlight/about_pages_controller_spec.rb +79 -0
  139. data/spec/controllers/spotlight/blacklight_configurations_controller_spec.rb +9 -3
  140. data/spec/controllers/spotlight/browse_controller_spec.rb +14 -5
  141. data/spec/controllers/spotlight/catalog_controller_spec.rb +108 -4
  142. data/spec/controllers/spotlight/contacts_controller_spec.rb +76 -0
  143. data/spec/controllers/spotlight/custom_fields_controller_spec.rb +13 -3
  144. data/spec/controllers/spotlight/dashboards_controller_spec.rb +45 -0
  145. data/spec/controllers/spotlight/exhibits_controller_spec.rb +3 -0
  146. data/spec/controllers/spotlight/feature_pages_controller_spec.rb +39 -26
  147. data/spec/controllers/spotlight/home_pages_controller_spec.rb +25 -4
  148. data/spec/controllers/spotlight/roles_controller_spec.rb +8 -5
  149. data/spec/controllers/spotlight/searches_controller_spec.rb +6 -2
  150. data/spec/controllers/spotlight/tags_controller_spec.rb +12 -4
  151. data/spec/factories/contacts.rb +7 -0
  152. data/spec/factories/custom_fields.rb +1 -1
  153. data/spec/factories/exhibits.rb +1 -0
  154. data/spec/factories/pages.rb +3 -0
  155. data/spec/factories/roles.rb +1 -1
  156. data/spec/factories/searches.rb +1 -0
  157. data/spec/factories/tags.rb +6 -0
  158. data/spec/factories/users.rb +1 -1
  159. data/spec/features/add_contacts_spec.rb +38 -0
  160. data/spec/features/add_custom_field_metadata_spec.rb +2 -1
  161. data/spec/features/browse_category_admin_spec.rb +34 -0
  162. data/spec/features/create_page_spec.rb +3 -3
  163. data/spec/features/curation_mode_widget_spec.rb +54 -11
  164. data/spec/features/curator_items.rb +1 -1
  165. data/spec/features/dashboard_spec.rb +39 -0
  166. data/spec/features/exhibits/add_tags_spec.rb +3 -0
  167. data/spec/features/exhibits/custom_metadata_fields_spec.rb +2 -2
  168. data/spec/features/exhibits/edit_facet_fields_spec.rb +6 -6
  169. data/spec/features/exhibits/edit_metadata_fields_spec.rb +14 -0
  170. data/spec/features/feature_page_spec.rb +2 -0
  171. data/spec/features/home_page_spec.rb +18 -2
  172. data/spec/features/item_admin_spec.rb +49 -0
  173. data/spec/features/javascript/feature_page_admin_spec.rb +52 -2
  174. data/spec/features/javascript/item_text_block_spec.rb +41 -29
  175. data/spec/features/javascript/multi_up_item_grid_spec.rb +40 -0
  176. data/spec/features/metadata_admin_spec.rb +16 -0
  177. data/spec/features/report_a_problem_spec.rb +1 -1
  178. data/spec/features/search_facets_admin_spec.rb +18 -0
  179. data/spec/features/tags_admin_spec.rb +27 -0
  180. data/spec/features/user_admin_spec.rb +16 -0
  181. data/spec/fixtures/sample_solr_documents.yml +398 -398
  182. data/spec/helpers/spotlight/admin_title_helper_spec.rb +47 -0
  183. data/spec/helpers/spotlight/application_helper_spec.rb +20 -0
  184. data/spec/helpers/spotlight/crud_link_helpers_spec.rb +147 -0
  185. data/spec/helpers/spotlight/pages_helper_spec.rb +6 -1
  186. data/spec/helpers/spotlight/roles_helper_spec.rb +7 -0
  187. data/spec/internal/Gemfile +1 -1
  188. data/spec/internal/Gemfile.lock +34 -26
  189. data/spec/internal/app/assets/stylesheets/spotlight.css.scss +3 -3
  190. data/spec/internal/app/controllers/catalog_controller.rb +6 -5
  191. data/spec/internal/app/models/solr_document.rb +1 -0
  192. data/spec/internal/config/initializers/devise.rb +6 -6
  193. data/spec/internal/config/initializers/secret_token.rb +1 -1
  194. data/spec/internal/config/locales/devise.en.yml +1 -1
  195. data/spec/internal/db/development.sqlite3 +0 -0
  196. data/spec/internal/db/migrate/{20140213201424_devise_create_users.rb → 20140221181113_devise_create_users.rb} +0 -0
  197. data/spec/internal/db/migrate/{20140213201427_add_devise_guests_to_users.rb → 20140221181115_add_devise_guests_to_users.rb} +0 -0
  198. data/spec/internal/db/migrate/{20140213201428_create_searches.blacklight.rb → 20140221181117_create_searches.blacklight.rb} +0 -0
  199. data/spec/internal/db/migrate/{20140213201429_create_bookmarks.blacklight.rb → 20140221181118_create_bookmarks.blacklight.rb} +0 -0
  200. data/spec/internal/db/migrate/{20140213201430_create_spotlight_pages.spotlight.rb → 20140221181119_create_spotlight_pages.spotlight.rb} +2 -0
  201. data/spec/internal/db/migrate/{20140213201431_create_spotlight_attachments.spotlight.rb → 20140221181120_create_spotlight_attachments.spotlight.rb} +0 -0
  202. data/spec/internal/db/migrate/{20140213201432_create_exhibits.spotlight.rb → 20140221181121_create_exhibits.spotlight.rb} +0 -1
  203. data/spec/internal/db/migrate/{20140213201433_create_roles.spotlight.rb → 20140221181122_create_roles.spotlight.rb} +0 -0
  204. data/spec/internal/db/migrate/{20140213201434_create_spotlight_searches.spotlight.rb → 20140221181123_create_spotlight_searches.spotlight.rb} +0 -0
  205. data/spec/internal/db/migrate/{20140213201435_create_spotlight_blacklight_configurations.spotlight.rb → 20140221181124_create_spotlight_blacklight_configurations.spotlight.rb} +1 -0
  206. data/spec/internal/db/migrate/{20140213201436_acts_as_taggable_on_migration.spotlight.rb → 20140221181125_acts_as_taggable_on_migration.spotlight.rb} +0 -0
  207. data/spec/internal/db/migrate/{20140213201437_add_missing_unique_indices.spotlight.rb → 20140221181126_add_missing_unique_indices.spotlight.rb} +0 -0
  208. data/spec/internal/db/migrate/{20140213201438_create_spotlight_custom_fields.spotlight.rb → 20140221181127_create_spotlight_custom_fields.spotlight.rb} +0 -0
  209. data/spec/internal/db/migrate/{20140213201439_create_spotlight_solr_document_sidecars.spotlight.rb → 20140221181128_create_spotlight_solr_document_sidecars.spotlight.rb} +1 -0
  210. data/spec/internal/db/migrate/20140221181129_create_contacts.spotlight.rb +17 -0
  211. data/spec/internal/db/schema.rb +22 -5
  212. data/spec/internal/db/test.sqlite3 +0 -0
  213. data/spec/internal/log/development.log +122 -35398
  214. data/spec/internal/log/test.log +83150 -4800
  215. data/spec/internal/tmp/cache/assets/test/sass/7f56115890a28a29097cd3010106a2711cb6c5e4/spotlight.css.scssc +0 -0
  216. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_attachments.cssc +0 -0
  217. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_blacklight_configuration.css.scssc +0 -0
  218. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_bootstrap_overrides.css.scssc +0 -0
  219. data/spec/internal/tmp/cache/assets/{development/sass/86639965509c9318bb7a3137a93a669b1d159dac/browse.css.scssc → test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_browse.css.scssc} +0 -0
  220. data/spec/internal/tmp/cache/assets/{development/sass/86639965509c9318bb7a3137a93a669b1d159dac/catalog.css.scssc → test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_catalog.css.scssc} +0 -0
  221. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/{curation.css.scssc → _curation.css.scssc} +0 -0
  222. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_exhibit_admin.css.scssc +0 -0
  223. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_header.css.scssc +0 -0
  224. data/spec/internal/tmp/cache/assets/{development/sass/86639965509c9318bb7a3137a93a669b1d159dac/item_text_block.css.scssc → test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_item_text_block.css.scssc} +0 -0
  225. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_multi_up_item_grid.css.scssc +0 -0
  226. data/spec/internal/tmp/cache/assets/{development/sass/86639965509c9318bb7a3137a93a669b1d159dac/nestable.css.scssc → test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_nestable.css.scssc} +0 -0
  227. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_pages.css.scssc +0 -0
  228. data/spec/internal/tmp/cache/assets/{development/sass/86639965509c9318bb7a3137a93a669b1d159dac/sir-trevor.css.scssc → test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_sir-trevor.css.scssc} +0 -0
  229. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_variables.css.scssc +0 -0
  230. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/_variables_bootstrap.css.scssc +0 -0
  231. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/application.css.scssc +0 -0
  232. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/spotlight.css.scssc +0 -0
  233. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/typeahead.cssc +0 -0
  234. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_alerts.scssc +0 -0
  235. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_badges.scssc +0 -0
  236. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_breadcrumbs.scssc +0 -0
  237. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_button-groups.scssc +0 -0
  238. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_buttons.scssc +0 -0
  239. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_carousel.scssc +0 -0
  240. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_close.scssc +0 -0
  241. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_code.scssc +0 -0
  242. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_component-animations.scssc +0 -0
  243. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_dropdowns.scssc +0 -0
  244. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_forms.scssc +0 -0
  245. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_glyphicons.scssc +0 -0
  246. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_grid.scssc +0 -0
  247. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_input-groups.scssc +0 -0
  248. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_jumbotron.scssc +0 -0
  249. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_labels.scssc +0 -0
  250. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_list-group.scssc +0 -0
  251. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_media.scssc +0 -0
  252. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_mixins.scssc +0 -0
  253. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_modals.scssc +0 -0
  254. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_navbar.scssc +0 -0
  255. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_navs.scssc +0 -0
  256. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_normalize.scssc +0 -0
  257. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_pager.scssc +0 -0
  258. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_pagination.scssc +0 -0
  259. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_panels.scssc +0 -0
  260. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_popovers.scssc +0 -0
  261. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_print.scssc +0 -0
  262. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_progress-bars.scssc +0 -0
  263. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_responsive-utilities.scssc +0 -0
  264. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_scaffolding.scssc +0 -0
  265. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_tables.scssc +0 -0
  266. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_thumbnails.scssc +0 -0
  267. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_tooltip.scssc +0 -0
  268. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_type.scssc +0 -0
  269. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_utilities.scssc +0 -0
  270. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_variables.scssc +0 -0
  271. data/spec/internal/tmp/cache/assets/{development → test}/sass/9aa5ba0e61c914556d501a14beadbf084220afcb/_wells.scssc +0 -0
  272. data/spec/internal/tmp/cache/assets/{development → test}/sass/add70902996212745523bb1e74624dd2cf70530d/bootstrap.scssc +0 -0
  273. data/spec/internal/tmp/cache/assets/test/sprockets/054efbff0405a5e198004ac3654b2f8c +0 -0
  274. data/spec/internal/tmp/cache/assets/test/sprockets/057d1fa18bc0e1e5b993210f991d9fc8 +0 -0
  275. data/spec/internal/tmp/cache/assets/test/sprockets/087a79914d85e6b54d8988731ab53136 +0 -0
  276. data/spec/internal/tmp/cache/assets/test/sprockets/0a5222bec0ee683551455e74497afde4 +0 -0
  277. data/spec/internal/tmp/cache/assets/test/sprockets/0de3c377f7421a594ac39ed536b135b0 +0 -0
  278. data/spec/internal/tmp/cache/assets/test/sprockets/0deba0db9c30e052db9c6f78ae250989 +0 -0
  279. data/spec/internal/tmp/cache/assets/test/sprockets/11666b7929fdbd993ea80deada4c13b0 +0 -0
  280. data/spec/internal/tmp/cache/assets/test/sprockets/122bde84dd6cfb9aa6cbb3602c1aa0e9 +0 -0
  281. data/spec/internal/tmp/cache/assets/test/sprockets/13580606668b02852cd72a5ce6a46643 +0 -0
  282. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/13e2f6483c330b011c5ef96704ca89d8 +0 -0
  283. data/spec/internal/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  284. data/spec/internal/tmp/cache/assets/test/sprockets/18f05727080f01cd1f6107986e8ef8de +0 -0
  285. data/spec/internal/tmp/cache/assets/test/sprockets/20dce00b20c4d78820b1c3a4fe3e470f +0 -0
  286. data/spec/internal/tmp/cache/assets/test/sprockets/2144c89ce81d837cff269bddb07fb6e4 +0 -0
  287. data/spec/internal/tmp/cache/assets/test/sprockets/26edda560d842267070028189c2358e2 +0 -0
  288. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/2a70a592ba6d7d57ca175cc8ad18da46 +0 -0
  289. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/2b621825bca02aece2a68cd70e2548d8 +0 -0
  290. data/spec/internal/tmp/cache/assets/test/sprockets/2c77e85b70df92a428365a2e2ef71e2d +0 -0
  291. data/spec/internal/tmp/cache/assets/test/sprockets/2f1bbdc4330711863d62556043df25ce +0 -0
  292. data/spec/internal/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  293. data/spec/internal/tmp/cache/assets/test/sprockets/{57e88b9c9b3246e0554f88ee3f591d4d → 34a969e8d028e63ea897dd0448970032} +0 -0
  294. data/spec/internal/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  295. data/spec/internal/tmp/cache/assets/test/sprockets/3a47658debc1b4b58e2b0a9675dfae62 +0 -0
  296. data/spec/internal/tmp/cache/assets/test/sprockets/{d0a2147f9a3ad98a5d61e4fe80826414 → 3c88bbb1ab5d414e45a05492d34a7446} +0 -0
  297. data/spec/internal/tmp/cache/assets/test/sprockets/3e20d10c7725c27236abd61883a7b278 +0 -0
  298. data/spec/internal/tmp/cache/assets/test/sprockets/4173763ff20266fbf2b66c365cb2a6dd +0 -0
  299. data/spec/internal/tmp/cache/assets/test/sprockets/4386f0e27274e3cbdc32cee899d34b8f +0 -0
  300. data/spec/internal/tmp/cache/assets/test/sprockets/465dcb5120648b76bb827df45eebdd9d +0 -0
  301. data/spec/internal/tmp/cache/assets/test/sprockets/{5228747f20db13cd1842569a0b4d27a8 → 466aa53e9d282c855928b9250b3500a5} +0 -0
  302. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/49299b0178b94e64c5385b187f93f8ae +0 -0
  303. data/spec/internal/tmp/cache/assets/test/sprockets/492fec0ae7159743e989ed735aad6760 +0 -0
  304. data/spec/internal/tmp/cache/assets/test/sprockets/4b102e04198efe0f8b34684c1aaaeb20 +0 -0
  305. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/4b6c467c8a952dc209b93de3db64b70e +0 -0
  306. data/spec/internal/tmp/cache/assets/test/sprockets/4e055d70b47bbc80c9c9f847fc8f85d3 +0 -0
  307. data/spec/internal/tmp/cache/assets/test/sprockets/52582bfdd22ea0bbd52dd8d4b8c911c8 +0 -0
  308. data/spec/internal/tmp/cache/assets/test/sprockets/5ff35bebfd1fc0b7cbbbb6934664aa64 +0 -0
  309. data/spec/internal/tmp/cache/assets/test/sprockets/60cd9bb727eca8ae26fae3971cbdbb9c +0 -0
  310. data/spec/internal/tmp/cache/assets/test/sprockets/62083f335fc263942d5295bc5d6221c7 +0 -0
  311. data/spec/internal/tmp/cache/assets/test/sprockets/66f8fc3b5bbf1829a95239083e9abdb9 +0 -0
  312. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/6b0e9f093e56278364bd4d009fb1b616 +0 -0
  313. data/spec/internal/tmp/cache/assets/test/sprockets/6b1c6f740197f479421967fb560d6223 +0 -0
  314. data/spec/internal/tmp/cache/assets/test/sprockets/6b21caa94e0a49c6ea76f1e41d2ca0b6 +0 -0
  315. data/spec/internal/tmp/cache/assets/test/sprockets/6ce18a5894527091a2aad08be767698d +0 -0
  316. data/spec/internal/tmp/cache/assets/test/sprockets/{aa61c68149d34fa5b5400a154773c886 → 6eee23a91195076820a79a526476ee8c} +0 -0
  317. data/spec/internal/tmp/cache/assets/test/sprockets/73b5b050c5cf8578650b09cd0d7db81a +0 -0
  318. data/spec/internal/tmp/cache/assets/test/sprockets/7460c5bff9c90eb138ff07bf3afc71e3 +0 -0
  319. data/spec/internal/tmp/cache/assets/test/sprockets/753a88003982559e621f2a85daf6a9af +0 -0
  320. data/spec/internal/tmp/cache/assets/test/sprockets/75e4f388c794aa8cef95f173aea96959 +0 -0
  321. data/spec/internal/tmp/cache/assets/test/sprockets/76b56ee6205ef8ac8c5184e2fa6806de +0 -0
  322. data/spec/internal/tmp/cache/assets/test/sprockets/77276bb640746861bc705b385dc4380d +0 -0
  323. data/spec/internal/tmp/cache/assets/test/sprockets/8512b628be9256bf11745fdcf440920e +0 -0
  324. data/spec/internal/tmp/cache/assets/test/sprockets/8947a8a58b6f1f989ff707a4f0eb78e3 +0 -0
  325. data/spec/internal/tmp/cache/assets/test/sprockets/8b44de87380689cc74f57312141285b4 +0 -0
  326. data/spec/internal/tmp/cache/assets/test/sprockets/8c5e663a28a29017020ab8e026d92e73 +0 -0
  327. data/spec/internal/tmp/cache/assets/test/sprockets/8deb4f38d381b7e17e4b5fc69eedd3dd +0 -0
  328. data/spec/internal/tmp/cache/assets/test/sprockets/93aaa9231a32901266b05632f3d35ecd +0 -0
  329. data/spec/internal/tmp/cache/assets/test/sprockets/96bca25fbc9dec9609aa66d126ab3823 +0 -0
  330. data/spec/internal/tmp/cache/assets/test/sprockets/9a2cad4366ab55e70eba881fcf1552b1 +0 -0
  331. data/spec/internal/tmp/cache/assets/test/sprockets/{acff8fdf260f75b731a2752cabe039a3 → 9b4bac0a273ca49886f42d20ec185004} +0 -0
  332. data/spec/internal/tmp/cache/assets/test/sprockets/{c7ee24d1047e051feebc455244c1200f → 9ccf3cbdf557d62704ebbea513022927} +0 -0
  333. data/spec/internal/tmp/cache/assets/test/sprockets/9dd494f69ac32c6f56e47c6d19cbfeff +0 -0
  334. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/9e4b79ac07879c1c4ba14894b70a4e88 +0 -0
  335. data/spec/internal/tmp/cache/assets/test/sprockets/9f32a258062b214af361daf3d953b05b +0 -0
  336. data/spec/internal/tmp/cache/assets/test/sprockets/9f454e9700fb058adcc4ff2f4b942f7b +0 -0
  337. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/a1f52a71d785eb6b6999258586a24cdd +0 -0
  338. data/spec/internal/tmp/cache/assets/test/sprockets/aabf26facf07694f96d71d93cc26ce81 +0 -0
  339. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/aadedf451867800a145094f7b39c92d1 +0 -0
  340. data/spec/internal/tmp/cache/assets/test/sprockets/ab478df1b6f86008ae8b1a3aedc231fd +0 -0
  341. data/spec/internal/tmp/cache/assets/test/sprockets/ac0fb5e24553f0b285079b44557622db +0 -0
  342. data/spec/internal/tmp/cache/assets/test/sprockets/ad4a54c43c2a4c3874bfde1c9f08c248 +0 -0
  343. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/afe869dd9f56adc45dcde67e2a78f705 +0 -0
  344. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/b3ad62055ddee4eb90ce04579c559c59 +0 -0
  345. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/b73e7d2467cd904898f6be8de100ca7b +0 -0
  346. data/spec/internal/tmp/cache/assets/test/sprockets/b98e31bc04d1ed8616c282ac7abaeb08 +0 -0
  347. data/spec/internal/tmp/cache/assets/test/sprockets/{4b14e90d11a9a4a3ff0863b3cdf28687 → b9abbec7207865e8b1cb8b62e7ab50ee} +0 -0
  348. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/bd9906e18e8f4ad0f019470629897007 +0 -0
  349. data/spec/internal/tmp/cache/assets/test/sprockets/{c909d76cfa3928bd1fed493d8bdc6785 → be6413b063439eb32c09b99a2051b8ef} +0 -0
  350. data/spec/internal/tmp/cache/assets/test/sprockets/bfaa34a06d842515b62459fff8158d1d +0 -0
  351. data/spec/internal/tmp/cache/assets/test/sprockets/{c2cbda4579459322ef12578211800342 → c4218e6c2ba493931d6b0776e05f2604} +0 -0
  352. data/spec/internal/tmp/cache/assets/test/sprockets/c50513d002aba38b2b0904d790e37b50 +0 -0
  353. data/spec/internal/tmp/cache/assets/test/sprockets/c74b16d8c717571f624df25996e212de +0 -0
  354. data/spec/internal/tmp/cache/assets/{development/sprockets/acff8fdf260f75b731a2752cabe039a3 → test/sprockets/ccd3a7fbbd99aab2b96da283b11810d9} +0 -0
  355. data/spec/internal/tmp/cache/assets/test/sprockets/cd921cf7a5ad637013b1b5458806a5fc +0 -0
  356. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/ce2989beb48b4f72141074aaff9a5632 +0 -0
  357. data/spec/internal/tmp/cache/assets/test/sprockets/ce93aed99191d5c22aef1ff1dcdc7652 +0 -0
  358. data/spec/internal/tmp/cache/assets/test/sprockets/{b97ba03780eebad80c1e4c8239432f66 → cf03a6e7cdd2c578d921d67e60bd4019} +0 -0
  359. data/spec/internal/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  360. data/spec/internal/tmp/cache/assets/test/sprockets/d2bcd182195dcc17cf37e34f033e7a9d +0 -0
  361. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/d30f3620f5ac1a79e3978fa3c79aa9cf +0 -0
  362. data/spec/internal/tmp/cache/assets/test/sprockets/{1ba4256ac293f73c2f4ccb863947876c → d320144e6ac54c385a9dcea63d0a5306} +0 -0
  363. data/spec/internal/tmp/cache/assets/test/sprockets/d48fbfc19c1c19a6d2a0ec6802a78910 +0 -0
  364. data/spec/internal/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  365. data/spec/internal/tmp/cache/assets/test/sprockets/da36589d32d68cb4dbc034abeb4dfaa1 +0 -0
  366. data/spec/internal/tmp/cache/assets/test/sprockets/daa447e7ba16e65115c70aa8f4917a72 +0 -0
  367. data/spec/internal/tmp/cache/assets/test/sprockets/de429a9a63459ff938dc61cfa8132e1a +0 -0
  368. data/spec/internal/tmp/cache/assets/test/sprockets/de9ed6afb0e682b5a30ba6aff82ca36e +0 -0
  369. data/spec/internal/tmp/cache/assets/test/sprockets/{9a207c2dc4675908fb5e7b4b9d0c2a3a → decaf2254ed78da1bb29c88d028094a1} +0 -0
  370. data/spec/internal/tmp/cache/assets/test/sprockets/e0108fdb199a846893e751e8ade11008 +0 -0
  371. data/spec/internal/tmp/cache/assets/test/sprockets/e04c118e777dd56f543a6a8a54767793 +0 -0
  372. data/spec/internal/tmp/cache/assets/test/sprockets/e0fd0f648fe28c705714a8d8d471da34 +0 -0
  373. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/ef6f922d772779f0aedd2f4c65d4818b +0 -0
  374. data/spec/internal/tmp/cache/assets/test/sprockets/f222566014403a9473b9070c5794db25 +0 -0
  375. data/spec/internal/tmp/cache/assets/test/sprockets/f3a6e2dee823280a647ae560378d930b +0 -0
  376. data/spec/internal/tmp/cache/assets/test/sprockets/f4c25cd6cc321289d096b41e14e7132f +0 -0
  377. data/spec/internal/tmp/cache/assets/test/sprockets/f585ec5c9bfe8ec5f58953e069929445 +0 -0
  378. data/spec/internal/tmp/cache/assets/test/sprockets/f5bd18eb7abe09f2bc76596dfbeec57b +0 -0
  379. data/spec/internal/tmp/cache/assets/test/sprockets/f69e5f5b9d68c91875c559643318e645 +0 -0
  380. data/spec/internal/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  381. data/spec/internal/tmp/cache/assets/{development → test}/sprockets/f81e343228388c74f5609d8128515c7a +0 -0
  382. data/spec/internal/tmp/cache/assets/test/sprockets/{f13d5a17eadce75c7d236c2038c90450 → fae75d9f76d5384917bc0a1a5e4c94ae} +0 -0
  383. data/spec/internal/tmp/cache/assets/test/sprockets/{ac6e1c3ef7e45f031205e1aae63145d4 → fec01208bcd5a95a4dfc3a28c941dc3d} +0 -0
  384. data/spec/internal/tmp/cache/assets/test/sprockets/fed43bc1912cdb19dfa4ab32cf796814 +0 -0
  385. data/spec/lib/spotlight/catalog/access_controls_enforcement_spec.rb +35 -0
  386. data/spec/models/solr_document_spec.rb +70 -0
  387. data/spec/models/spotlight/ability_spec.rb +9 -6
  388. data/spec/models/spotlight/blacklight_configuration_spec.rb +9 -9
  389. data/spec/models/spotlight/custom_field_spec.rb +2 -2
  390. data/spec/models/spotlight/exhibit_spec.rb +10 -1
  391. data/spec/models/spotlight/home_page_spec.rb +14 -0
  392. data/spec/models/spotlight/page_spec.rb +8 -1
  393. data/spec/models/spotlight/role_spec.rb +4 -4
  394. data/spec/models/spotlight/solr_document_atomic_updates_spec.rb +29 -0
  395. data/spec/models/spotlight/solr_document_sidecar_spec.rb +19 -0
  396. data/spec/spec_helper.rb +2 -0
  397. data/spec/support/views/test_view_helpers.rb +12 -0
  398. data/spec/test_app_templates/catalog_controller.rb +6 -5
  399. data/spec/views/_user_util_links.html.erb_spec.rb +9 -10
  400. data/spec/views/shared/_exhibit_masthead.html.erb_spec.rb +4 -4
  401. data/spec/views/spotlight/about_pages/index.html.erb_spec.rb +57 -0
  402. data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +20 -0
  403. data/spec/views/spotlight/pages/index.html.erb_spec.rb +1 -2
  404. data/spec/views/spotlight/pages/show.html.erb_spec.rb +10 -18
  405. data/spec/views/spotlight/roles/index.html.erb_spec.rb +2 -2
  406. data/spec/views/spotlight/searches/index.html.erb_spec.rb +1 -1
  407. data/spec/views/spotlight/tags/index.html.erb_spec.rb +5 -4
  408. metadata +332 -761
  409. data/app/assets/stylesheets/scaffold.css +0 -56
  410. data/app/assets/stylesheets/spotlight/blacklight_configuration.css.scss +0 -6
  411. data/app/assets/stylesheets/spotlight/header.css.scss +0 -15
  412. data/app/assets/stylesheets/spotlight/pages.css +0 -4
  413. data/spec/internal/tmp/cache/assets/development/sass/57c0d7bcb994fdcd2936438bb30ba7a791220a90/default.css.scssc +0 -0
  414. data/spec/internal/tmp/cache/assets/development/sass/7f56115890a28a29097cd3010106a2711cb6c5e4/blacklight.css.scssc +0 -0
  415. data/spec/internal/tmp/cache/assets/development/sass/7f56115890a28a29097cd3010106a2711cb6c5e4/spotlight.css.scssc +0 -0
  416. data/spec/internal/tmp/cache/assets/development/sass/86639965509c9318bb7a3137a93a669b1d159dac/blacklight_configuration.css.scssc +0 -0
  417. data/spec/internal/tmp/cache/assets/development/sass/86639965509c9318bb7a3137a93a669b1d159dac/curation.css.scssc +0 -0
  418. data/spec/internal/tmp/cache/assets/development/sass/86639965509c9318bb7a3137a93a669b1d159dac/header.css.scssc +0 -0
  419. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_blacklight_base.css.scssc +0 -0
  420. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_bookmark.css.scssc +0 -0
  421. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_catalog.css.scssc +0 -0
  422. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_facets.css.scssc +0 -0
  423. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_group.css.scssc +0 -0
  424. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_header.css.scssc +0 -0
  425. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_layout.css.scssc +0 -0
  426. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_modal.css.scssc +0 -0
  427. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/_search_history.css.scssc +0 -0
  428. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/blacklight.css.scssc +0 -0
  429. data/spec/internal/tmp/cache/assets/development/sass/fe461ec1fef5f7b5460a18cf89af0d9e44b695ec/blacklight_defaults.css.scssc +0 -0
  430. data/spec/internal/tmp/cache/assets/development/sprockets/020433d97e0b9e19255798dc28f4db88 +0 -0
  431. data/spec/internal/tmp/cache/assets/development/sprockets/057d1fa18bc0e1e5b993210f991d9fc8 +0 -0
  432. data/spec/internal/tmp/cache/assets/development/sprockets/087a79914d85e6b54d8988731ab53136 +0 -0
  433. data/spec/internal/tmp/cache/assets/development/sprockets/0b12706b4ffe7ebe13430c6ee443b2dd +0 -0
  434. data/spec/internal/tmp/cache/assets/development/sprockets/0cad22d181614fbdca755e591be6fa1c +0 -0
  435. data/spec/internal/tmp/cache/assets/development/sprockets/0de3c377f7421a594ac39ed536b135b0 +0 -0
  436. data/spec/internal/tmp/cache/assets/development/sprockets/0deba0db9c30e052db9c6f78ae250989 +0 -0
  437. data/spec/internal/tmp/cache/assets/development/sprockets/0f29c03cb39fa538a2df9dbbbe655532 +0 -0
  438. data/spec/internal/tmp/cache/assets/development/sprockets/108ed3acf1cababc3ccda6af2a4fdca6 +0 -0
  439. data/spec/internal/tmp/cache/assets/development/sprockets/10ef327683798892b9938cabd394498c +0 -0
  440. data/spec/internal/tmp/cache/assets/development/sprockets/11666b7929fdbd993ea80deada4c13b0 +0 -0
  441. data/spec/internal/tmp/cache/assets/development/sprockets/122bde84dd6cfb9aa6cbb3602c1aa0e9 +0 -0
  442. data/spec/internal/tmp/cache/assets/development/sprockets/13580606668b02852cd72a5ce6a46643 +0 -0
  443. data/spec/internal/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  444. data/spec/internal/tmp/cache/assets/development/sprockets/1465aad16206b571e00aa82a16e36380 +0 -0
  445. data/spec/internal/tmp/cache/assets/development/sprockets/153e55a308813e3c473924a6ef251a76 +0 -0
  446. data/spec/internal/tmp/cache/assets/development/sprockets/18f05727080f01cd1f6107986e8ef8de +0 -0
  447. data/spec/internal/tmp/cache/assets/development/sprockets/20e76a31193186a7494d2e61c38cf2d3 +0 -0
  448. data/spec/internal/tmp/cache/assets/development/sprockets/2144c89ce81d837cff269bddb07fb6e4 +0 -0
  449. data/spec/internal/tmp/cache/assets/development/sprockets/256cc8416ea684247fa8bca805832755 +0 -0
  450. data/spec/internal/tmp/cache/assets/development/sprockets/26edda560d842267070028189c2358e2 +0 -0
  451. data/spec/internal/tmp/cache/assets/development/sprockets/2c77e85b70df92a428365a2e2ef71e2d +0 -0
  452. data/spec/internal/tmp/cache/assets/development/sprockets/2f1bbdc4330711863d62556043df25ce +0 -0
  453. data/spec/internal/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  454. data/spec/internal/tmp/cache/assets/development/sprockets/3202b90ab287ed956815ada8e064f767 +0 -0
  455. data/spec/internal/tmp/cache/assets/development/sprockets/324e7f183c594151b026cdc2948523bf +0 -0
  456. data/spec/internal/tmp/cache/assets/development/sprockets/332967fa31cdb1c3f0cabda88513c804 +0 -0
  457. data/spec/internal/tmp/cache/assets/development/sprockets/35179c918031f248f1f4cfb7d34351c4 +0 -0
  458. data/spec/internal/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  459. data/spec/internal/tmp/cache/assets/development/sprockets/35a01c09c4d54e3266a6a0f2851f1170 +0 -0
  460. data/spec/internal/tmp/cache/assets/development/sprockets/3a47658debc1b4b58e2b0a9675dfae62 +0 -0
  461. data/spec/internal/tmp/cache/assets/development/sprockets/3d78032df3433b99d2d5efc52b70e453 +0 -0
  462. data/spec/internal/tmp/cache/assets/development/sprockets/3dfa48bce28fb99bb32fefa7fffb0119 +0 -0
  463. data/spec/internal/tmp/cache/assets/development/sprockets/3e20d10c7725c27236abd61883a7b278 +0 -0
  464. data/spec/internal/tmp/cache/assets/development/sprockets/3f20b06a462f55b145c6d83634eae845 +0 -0
  465. data/spec/internal/tmp/cache/assets/development/sprockets/3fdb803db911d9debde5f28b188a5b16 +0 -0
  466. data/spec/internal/tmp/cache/assets/development/sprockets/40e815fac05844d0530af8a8c5339fe1 +0 -0
  467. data/spec/internal/tmp/cache/assets/development/sprockets/4173763ff20266fbf2b66c365cb2a6dd +0 -0
  468. data/spec/internal/tmp/cache/assets/development/sprockets/4386f0e27274e3cbdc32cee899d34b8f +0 -0
  469. data/spec/internal/tmp/cache/assets/development/sprockets/465dcb5120648b76bb827df45eebdd9d +0 -0
  470. data/spec/internal/tmp/cache/assets/development/sprockets/466aa53e9d282c855928b9250b3500a5 +0 -0
  471. data/spec/internal/tmp/cache/assets/development/sprockets/46dc001d1309090c6b365c364fdaa26a +0 -0
  472. data/spec/internal/tmp/cache/assets/development/sprockets/492fec0ae7159743e989ed735aad6760 +0 -0
  473. data/spec/internal/tmp/cache/assets/development/sprockets/4b102e04198efe0f8b34684c1aaaeb20 +0 -0
  474. data/spec/internal/tmp/cache/assets/development/sprockets/4b14e90d11a9a4a3ff0863b3cdf28687 +0 -0
  475. data/spec/internal/tmp/cache/assets/development/sprockets/4e055d70b47bbc80c9c9f847fc8f85d3 +0 -0
  476. data/spec/internal/tmp/cache/assets/development/sprockets/4ea47b50d05ede7e20ba33f8056f4a92 +0 -0
  477. data/spec/internal/tmp/cache/assets/development/sprockets/51d4b55d07202445539423ccb62e8058 +0 -0
  478. data/spec/internal/tmp/cache/assets/development/sprockets/52582bfdd22ea0bbd52dd8d4b8c911c8 +0 -0
  479. data/spec/internal/tmp/cache/assets/development/sprockets/53a4fa5b7759f81cdd42e23e9948afea +0 -0
  480. data/spec/internal/tmp/cache/assets/development/sprockets/550485ff32af8939032a9bd5267c51c6 +0 -0
  481. data/spec/internal/tmp/cache/assets/development/sprockets/56653f30daec26f700bcf6b7d993f663 +0 -0
  482. data/spec/internal/tmp/cache/assets/development/sprockets/57dd4ba72cf24cc3ddefc29a90d21e7c +0 -0
  483. data/spec/internal/tmp/cache/assets/development/sprockets/57e88b9c9b3246e0554f88ee3f591d4d +0 -0
  484. data/spec/internal/tmp/cache/assets/development/sprockets/5993cd28ea23f1006aa97d1fafe3bd1a +0 -0
  485. data/spec/internal/tmp/cache/assets/development/sprockets/5b41e13874b2142f1ec2ed104f78ff91 +0 -0
  486. data/spec/internal/tmp/cache/assets/development/sprockets/5d366dc18b9d993e45b25bbeebd193f8 +0 -0
  487. data/spec/internal/tmp/cache/assets/development/sprockets/60670f464c5599c5372232b4572eb0e7 +0 -0
  488. data/spec/internal/tmp/cache/assets/development/sprockets/61bd95bd5682421c2fe95a5214946dd6 +0 -0
  489. data/spec/internal/tmp/cache/assets/development/sprockets/62083f335fc263942d5295bc5d6221c7 +0 -0
  490. data/spec/internal/tmp/cache/assets/development/sprockets/63b98246f4f05488e1b5914b796db489 +0 -0
  491. data/spec/internal/tmp/cache/assets/development/sprockets/650cfc75104b1583a6fa2ea130eee6ea +0 -0
  492. data/spec/internal/tmp/cache/assets/development/sprockets/66f8fc3b5bbf1829a95239083e9abdb9 +0 -0
  493. data/spec/internal/tmp/cache/assets/development/sprockets/670abadd46e1a2d1f20041e240b70d14 +0 -0
  494. data/spec/internal/tmp/cache/assets/development/sprockets/6a42dcaaa4f99c5d69e6cd0d0b1fb4c9 +0 -0
  495. data/spec/internal/tmp/cache/assets/development/sprockets/6b1c6f740197f479421967fb560d6223 +0 -0
  496. data/spec/internal/tmp/cache/assets/development/sprockets/6b21caa94e0a49c6ea76f1e41d2ca0b6 +0 -0
  497. data/spec/internal/tmp/cache/assets/development/sprockets/6b9e4455a0b79827fa5395c06e938545 +0 -0
  498. data/spec/internal/tmp/cache/assets/development/sprockets/6ce18a5894527091a2aad08be767698d +0 -0
  499. data/spec/internal/tmp/cache/assets/development/sprockets/6d03c8cc881b762d46baa13fc04db6ff +0 -0
  500. data/spec/internal/tmp/cache/assets/development/sprockets/6eee23a91195076820a79a526476ee8c +0 -0
  501. data/spec/internal/tmp/cache/assets/development/sprockets/6f8b7495883fbcbe020c22a1df084241 +0 -0
  502. data/spec/internal/tmp/cache/assets/development/sprockets/717c3ff6985bb426be696c09647ea562 +0 -0
  503. data/spec/internal/tmp/cache/assets/development/sprockets/730de8c54ddfc7e25170a3e4040cd162 +0 -0
  504. data/spec/internal/tmp/cache/assets/development/sprockets/73b5b050c5cf8578650b09cd0d7db81a +0 -0
  505. data/spec/internal/tmp/cache/assets/development/sprockets/7460c5bff9c90eb138ff07bf3afc71e3 +0 -0
  506. data/spec/internal/tmp/cache/assets/development/sprockets/753a88003982559e621f2a85daf6a9af +0 -0
  507. data/spec/internal/tmp/cache/assets/development/sprockets/76b56ee6205ef8ac8c5184e2fa6806de +0 -0
  508. data/spec/internal/tmp/cache/assets/development/sprockets/77276bb640746861bc705b385dc4380d +0 -0
  509. data/spec/internal/tmp/cache/assets/development/sprockets/783d14d9eadc1bc65bfee63e01fe48bf +0 -0
  510. data/spec/internal/tmp/cache/assets/development/sprockets/7a27f5274b6ff4a9da4802de5e0ce100 +0 -0
  511. data/spec/internal/tmp/cache/assets/development/sprockets/7b9996a94cec146a5c7e9bf95c80737a +0 -0
  512. data/spec/internal/tmp/cache/assets/development/sprockets/7bf9acc825022f0424cd4ccfb51a57b8 +0 -0
  513. data/spec/internal/tmp/cache/assets/development/sprockets/8512b628be9256bf11745fdcf440920e +0 -0
  514. data/spec/internal/tmp/cache/assets/development/sprockets/86a76437386eeac88713cc514abf0f93 +0 -0
  515. data/spec/internal/tmp/cache/assets/development/sprockets/86cdeea552858d068703405a7ba2ee3a +0 -0
  516. data/spec/internal/tmp/cache/assets/development/sprockets/86f7ebf96f33e1cc035b7b2236bd2b90 +0 -0
  517. data/spec/internal/tmp/cache/assets/development/sprockets/886ce70326f2caec8fe4372351f1a442 +0 -0
  518. data/spec/internal/tmp/cache/assets/development/sprockets/8947a8a58b6f1f989ff707a4f0eb78e3 +0 -0
  519. data/spec/internal/tmp/cache/assets/development/sprockets/8b44de87380689cc74f57312141285b4 +0 -0
  520. data/spec/internal/tmp/cache/assets/development/sprockets/8c5e663a28a29017020ab8e026d92e73 +0 -0
  521. data/spec/internal/tmp/cache/assets/development/sprockets/8deb4f38d381b7e17e4b5fc69eedd3dd +0 -0
  522. data/spec/internal/tmp/cache/assets/development/sprockets/91b396b480293aaeec2ff599af929465 +0 -0
  523. data/spec/internal/tmp/cache/assets/development/sprockets/93aaa9231a32901266b05632f3d35ecd +0 -0
  524. data/spec/internal/tmp/cache/assets/development/sprockets/9511867a1b82cbfed0061f63b2e617a7 +0 -0
  525. data/spec/internal/tmp/cache/assets/development/sprockets/9568e100715de196f3ccf3adb695e3ba +0 -0
  526. data/spec/internal/tmp/cache/assets/development/sprockets/96bca25fbc9dec9609aa66d126ab3823 +0 -0
  527. data/spec/internal/tmp/cache/assets/development/sprockets/96e7e7eb64a9f03bbdbe401f2995b52c +0 -0
  528. data/spec/internal/tmp/cache/assets/development/sprockets/976c2035643c83ca56d4945c1302cc5e +0 -0
  529. data/spec/internal/tmp/cache/assets/development/sprockets/9a207c2dc4675908fb5e7b4b9d0c2a3a +0 -0
  530. data/spec/internal/tmp/cache/assets/development/sprockets/9a2cad4366ab55e70eba881fcf1552b1 +0 -0
  531. data/spec/internal/tmp/cache/assets/development/sprockets/9cad4327e714920ec27afae484c96b22 +0 -0
  532. data/spec/internal/tmp/cache/assets/development/sprockets/9dd494f69ac32c6f56e47c6d19cbfeff +0 -0
  533. data/spec/internal/tmp/cache/assets/development/sprockets/9e6c76356f7694394b10604dff4d4075 +0 -0
  534. data/spec/internal/tmp/cache/assets/development/sprockets/9f32a258062b214af361daf3d953b05b +0 -0
  535. data/spec/internal/tmp/cache/assets/development/sprockets/9f454e9700fb058adcc4ff2f4b942f7b +0 -0
  536. data/spec/internal/tmp/cache/assets/development/sprockets/a0c35895c526b4a7bec46d5e2f5e90f9 +0 -0
  537. data/spec/internal/tmp/cache/assets/development/sprockets/a3307b2a172bd713b45e8e117c3a5939 +0 -0
  538. data/spec/internal/tmp/cache/assets/development/sprockets/a3446e3a0bd1231348be22f347f96630 +0 -0
  539. data/spec/internal/tmp/cache/assets/development/sprockets/aabf26facf07694f96d71d93cc26ce81 +0 -0
  540. data/spec/internal/tmp/cache/assets/development/sprockets/ac0fb5e24553f0b285079b44557622db +0 -0
  541. data/spec/internal/tmp/cache/assets/development/sprockets/ac6714823758e543a1efc28facf9abeb +0 -0
  542. data/spec/internal/tmp/cache/assets/development/sprockets/ad4a54c43c2a4c3874bfde1c9f08c248 +0 -0
  543. data/spec/internal/tmp/cache/assets/development/sprockets/af8b3a00207d464e6c690a8293592ef7 +0 -0
  544. data/spec/internal/tmp/cache/assets/development/sprockets/b6692f203a568a6b0cb01b4d09139c2f +0 -0
  545. data/spec/internal/tmp/cache/assets/development/sprockets/b8e7ee01850e17fbb705e088d18c8a00 +0 -0
  546. data/spec/internal/tmp/cache/assets/development/sprockets/b98e31bc04d1ed8616c282ac7abaeb08 +0 -0
  547. data/spec/internal/tmp/cache/assets/development/sprockets/be6413b063439eb32c09b99a2051b8ef +0 -0
  548. data/spec/internal/tmp/cache/assets/development/sprockets/bfaa34a06d842515b62459fff8158d1d +0 -0
  549. data/spec/internal/tmp/cache/assets/development/sprockets/c2cbda4579459322ef12578211800342 +0 -0
  550. data/spec/internal/tmp/cache/assets/development/sprockets/c6690cb202676be0a09efaa3d85662d2 +0 -0
  551. data/spec/internal/tmp/cache/assets/development/sprockets/c6f0a6faa37bb5c912531e7cbe0bea5f +0 -0
  552. data/spec/internal/tmp/cache/assets/development/sprockets/c74b16d8c717571f624df25996e212de +0 -0
  553. data/spec/internal/tmp/cache/assets/development/sprockets/c7ee24d1047e051feebc455244c1200f +0 -0
  554. data/spec/internal/tmp/cache/assets/development/sprockets/c899cd58f2fc8f305350a26623340c88 +0 -0
  555. data/spec/internal/tmp/cache/assets/development/sprockets/c9ec3d06afb2cfe440a080eb40c05b2e +0 -0
  556. data/spec/internal/tmp/cache/assets/development/sprockets/cd921cf7a5ad637013b1b5458806a5fc +0 -0
  557. data/spec/internal/tmp/cache/assets/development/sprockets/ce93aed99191d5c22aef1ff1dcdc7652 +0 -0
  558. data/spec/internal/tmp/cache/assets/development/sprockets/cf03a6e7cdd2c578d921d67e60bd4019 +0 -0
  559. data/spec/internal/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  560. data/spec/internal/tmp/cache/assets/development/sprockets/d0a2147f9a3ad98a5d61e4fe80826414 +0 -0
  561. data/spec/internal/tmp/cache/assets/development/sprockets/d1513885df939f849f36ba2c2b40b3ee +0 -0
  562. data/spec/internal/tmp/cache/assets/development/sprockets/d159c53e21e1a9039d3106b36b84ac92 +0 -0
  563. data/spec/internal/tmp/cache/assets/development/sprockets/d2bcd182195dcc17cf37e34f033e7a9d +0 -0
  564. data/spec/internal/tmp/cache/assets/development/sprockets/d2f961e197eaad76ce92a0ddb9ade818 +0 -0
  565. data/spec/internal/tmp/cache/assets/development/sprockets/d320144e6ac54c385a9dcea63d0a5306 +0 -0
  566. data/spec/internal/tmp/cache/assets/development/sprockets/d48fbfc19c1c19a6d2a0ec6802a78910 +0 -0
  567. data/spec/internal/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  568. data/spec/internal/tmp/cache/assets/development/sprockets/d84569cdd916cc8a606b235e12dc4793 +0 -0
  569. data/spec/internal/tmp/cache/assets/development/sprockets/da36589d32d68cb4dbc034abeb4dfaa1 +0 -0
  570. data/spec/internal/tmp/cache/assets/development/sprockets/daa447e7ba16e65115c70aa8f4917a72 +0 -0
  571. data/spec/internal/tmp/cache/assets/development/sprockets/dd7def17774f007f6c49539c79e9dc7e +0 -0
  572. data/spec/internal/tmp/cache/assets/development/sprockets/de429a9a63459ff938dc61cfa8132e1a +0 -0
  573. data/spec/internal/tmp/cache/assets/development/sprockets/de9ed6afb0e682b5a30ba6aff82ca36e +0 -0
  574. data/spec/internal/tmp/cache/assets/development/sprockets/e0108fdb199a846893e751e8ade11008 +0 -0
  575. data/spec/internal/tmp/cache/assets/development/sprockets/e0343b5d999cf24f7fb6871b145d3368 +0 -0
  576. data/spec/internal/tmp/cache/assets/development/sprockets/e04c118e777dd56f543a6a8a54767793 +0 -0
  577. data/spec/internal/tmp/cache/assets/development/sprockets/e0fd0f648fe28c705714a8d8d471da34 +0 -0
  578. data/spec/internal/tmp/cache/assets/development/sprockets/e1b7ccff7b73993818ad0cab86fff97d +0 -0
  579. data/spec/internal/tmp/cache/assets/development/sprockets/e2e09ef3ca7aa04271903297c8b46709 +0 -0
  580. data/spec/internal/tmp/cache/assets/development/sprockets/e4251d23cee721c0a7eb4cc0fe07cadc +0 -0
  581. data/spec/internal/tmp/cache/assets/development/sprockets/e739e484ef94690df17455376937d2c1 +0 -0
  582. data/spec/internal/tmp/cache/assets/development/sprockets/e8b1266944f0354589afb643cdd3bdc6 +0 -0
  583. data/spec/internal/tmp/cache/assets/development/sprockets/e9e44b6079373b069019c281695a79f5 +0 -0
  584. data/spec/internal/tmp/cache/assets/development/sprockets/eb716711c01f005bf1ad7c050e48398a +0 -0
  585. data/spec/internal/tmp/cache/assets/development/sprockets/ebeec19a4495d8c78cc4ac91c7c9eca8 +0 -0
  586. data/spec/internal/tmp/cache/assets/development/sprockets/ed390939daa39d7aae30ce3795b34a1f +0 -0
  587. data/spec/internal/tmp/cache/assets/development/sprockets/ef4afa2365308566e3c0e19dc2c61fcb +0 -0
  588. data/spec/internal/tmp/cache/assets/development/sprockets/f11ec04ecc208d593196164abd49d6f3 +0 -0
  589. data/spec/internal/tmp/cache/assets/development/sprockets/f222566014403a9473b9070c5794db25 +0 -0
  590. data/spec/internal/tmp/cache/assets/development/sprockets/f29a5a07e82cde486d7f9f9296a036e7 +0 -0
  591. data/spec/internal/tmp/cache/assets/development/sprockets/f3a6e2dee823280a647ae560378d930b +0 -0
  592. data/spec/internal/tmp/cache/assets/development/sprockets/f4c25cd6cc321289d096b41e14e7132f +0 -0
  593. data/spec/internal/tmp/cache/assets/development/sprockets/f585ec5c9bfe8ec5f58953e069929445 +0 -0
  594. data/spec/internal/tmp/cache/assets/development/sprockets/f5a0a8a0c2c09f173355e6627a1d8c30 +0 -0
  595. data/spec/internal/tmp/cache/assets/development/sprockets/f5bd18eb7abe09f2bc76596dfbeec57b +0 -0
  596. data/spec/internal/tmp/cache/assets/development/sprockets/f69e5f5b9d68c91875c559643318e645 +0 -0
  597. data/spec/internal/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  598. data/spec/internal/tmp/cache/assets/development/sprockets/fae75d9f76d5384917bc0a1a5e4c94ae +0 -0
  599. data/spec/internal/tmp/cache/assets/development/sprockets/fec01208bcd5a95a4dfc3a28c941dc3d +0 -0
  600. data/spec/internal/tmp/cache/assets/development/sprockets/fed43bc1912cdb19dfa4ab32cf796814 +0 -0
  601. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_alerts.scssc +0 -0
  602. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_badges.scssc +0 -0
  603. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_breadcrumbs.scssc +0 -0
  604. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_button-groups.scssc +0 -0
  605. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_buttons.scssc +0 -0
  606. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_carousel.scssc +0 -0
  607. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_close.scssc +0 -0
  608. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_code.scssc +0 -0
  609. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_component-animations.scssc +0 -0
  610. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_dropdowns.scssc +0 -0
  611. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_forms.scssc +0 -0
  612. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_glyphicons.scssc +0 -0
  613. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_grid.scssc +0 -0
  614. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_input-groups.scssc +0 -0
  615. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_jumbotron.scssc +0 -0
  616. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_labels.scssc +0 -0
  617. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_list-group.scssc +0 -0
  618. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_media.scssc +0 -0
  619. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_mixins.scssc +0 -0
  620. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_modals.scssc +0 -0
  621. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_navbar.scssc +0 -0
  622. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_navs.scssc +0 -0
  623. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_normalize.scssc +0 -0
  624. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_pager.scssc +0 -0
  625. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_pagination.scssc +0 -0
  626. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_panels.scssc +0 -0
  627. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_popovers.scssc +0 -0
  628. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_print.scssc +0 -0
  629. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_progress-bars.scssc +0 -0
  630. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_responsive-utilities.scssc +0 -0
  631. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_scaffolding.scssc +0 -0
  632. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_tables.scssc +0 -0
  633. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_thumbnails.scssc +0 -0
  634. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_tooltip.scssc +0 -0
  635. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_type.scssc +0 -0
  636. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_utilities.scssc +0 -0
  637. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_variables.scssc +0 -0
  638. data/spec/internal/tmp/cache/assets/test/sass/27e2a5f741cb5b305187fb9f60bd54cbad191cee/_wells.scssc +0 -0
  639. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/blacklight_configuration.css.scssc +0 -0
  640. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/browse.css.scssc +0 -0
  641. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/catalog.css.scssc +0 -0
  642. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/header.css.scssc +0 -0
  643. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/item_text_block.css.scssc +0 -0
  644. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/nestable.css.scssc +0 -0
  645. data/spec/internal/tmp/cache/assets/test/sass/86639965509c9318bb7a3137a93a669b1d159dac/sir-trevor.css.scssc +0 -0
  646. data/spec/internal/tmp/cache/assets/test/sass/ea576b86ea8d24c041d74febb5a2299daa5eebfa/bootstrap.scssc +0 -0
  647. data/spec/internal/tmp/cache/assets/test/sprockets/10ef327683798892b9938cabd394498c +0 -0
  648. data/spec/internal/tmp/cache/assets/test/sprockets/153e55a308813e3c473924a6ef251a76 +0 -0
  649. data/spec/internal/tmp/cache/assets/test/sprockets/1f7f2566a4c6697102847e0b791ea7e2 +0 -0
  650. data/spec/internal/tmp/cache/assets/test/sprockets/256cc8416ea684247fa8bca805832755 +0 -0
  651. data/spec/internal/tmp/cache/assets/test/sprockets/2cf9505aa610540803440d6b85d1df4c +0 -0
  652. data/spec/internal/tmp/cache/assets/test/sprockets/3202b90ab287ed956815ada8e064f767 +0 -0
  653. data/spec/internal/tmp/cache/assets/test/sprockets/33956f5ff4216b0f576e7981f128d2cd +0 -0
  654. data/spec/internal/tmp/cache/assets/test/sprockets/4cf0d8cc5428d7570587b142bcde94d6 +0 -0
  655. data/spec/internal/tmp/cache/assets/test/sprockets/4ea47b50d05ede7e20ba33f8056f4a92 +0 -0
  656. data/spec/internal/tmp/cache/assets/test/sprockets/53a4fa5b7759f81cdd42e23e9948afea +0 -0
  657. data/spec/internal/tmp/cache/assets/test/sprockets/56653f30daec26f700bcf6b7d993f663 +0 -0
  658. data/spec/internal/tmp/cache/assets/test/sprockets/5a7a1e01b0babb2c7ccaa77e11566f48 +0 -0
  659. data/spec/internal/tmp/cache/assets/test/sprockets/5b41e13874b2142f1ec2ed104f78ff91 +0 -0
  660. data/spec/internal/tmp/cache/assets/test/sprockets/5d366dc18b9d993e45b25bbeebd193f8 +0 -0
  661. data/spec/internal/tmp/cache/assets/test/sprockets/61bd95bd5682421c2fe95a5214946dd6 +0 -0
  662. data/spec/internal/tmp/cache/assets/test/sprockets/6b9e4455a0b79827fa5395c06e938545 +0 -0
  663. data/spec/internal/tmp/cache/assets/test/sprockets/6d5dfd8ac2dccc266426bb5ebb16da5d +0 -0
  664. data/spec/internal/tmp/cache/assets/test/sprockets/717c3ff6985bb426be696c09647ea562 +0 -0
  665. data/spec/internal/tmp/cache/assets/test/sprockets/76e68eadc18148bbc7404e36afe94d1b +0 -0
  666. data/spec/internal/tmp/cache/assets/test/sprockets/7a27f5274b6ff4a9da4802de5e0ce100 +0 -0
  667. data/spec/internal/tmp/cache/assets/test/sprockets/7b9996a94cec146a5c7e9bf95c80737a +0 -0
  668. data/spec/internal/tmp/cache/assets/test/sprockets/7e0b25e99e03df931c2f96f1823fe85a +0 -0
  669. data/spec/internal/tmp/cache/assets/test/sprockets/81cd00ea178ccdbc398f57bc2559dd84 +0 -0
  670. data/spec/internal/tmp/cache/assets/test/sprockets/86cdeea552858d068703405a7ba2ee3a +0 -0
  671. data/spec/internal/tmp/cache/assets/test/sprockets/886ce70326f2caec8fe4372351f1a442 +0 -0
  672. data/spec/internal/tmp/cache/assets/test/sprockets/8dc5fbd0f77eea2d1b3af6024a707b3f +0 -0
  673. data/spec/internal/tmp/cache/assets/test/sprockets/9511867a1b82cbfed0061f63b2e617a7 +0 -0
  674. data/spec/internal/tmp/cache/assets/test/sprockets/96e7e7eb64a9f03bbdbe401f2995b52c +0 -0
  675. data/spec/internal/tmp/cache/assets/test/sprockets/ad403febe269392f688fa500dee79cc1 +0 -0
  676. data/spec/internal/tmp/cache/assets/test/sprockets/af41b8abd81fca7235ff2f5eea101ec7 +0 -0
  677. data/spec/internal/tmp/cache/assets/test/sprockets/ba43150632c4d28c3f29f0e8ec38388b +0 -0
  678. data/spec/internal/tmp/cache/assets/test/sprockets/c48e1de96b94e0a601109e1f864b1408 +0 -0
  679. data/spec/internal/tmp/cache/assets/test/sprockets/c6690cb202676be0a09efaa3d85662d2 +0 -0
  680. data/spec/internal/tmp/cache/assets/test/sprockets/c82663bc8a8378e410d7c672b13737c6 +0 -0
  681. data/spec/internal/tmp/cache/assets/test/sprockets/c899cd58f2fc8f305350a26623340c88 +0 -0
  682. data/spec/internal/tmp/cache/assets/test/sprockets/c9ec3d06afb2cfe440a080eb40c05b2e +0 -0
  683. data/spec/internal/tmp/cache/assets/test/sprockets/d08c1375edaded78b3606c7b4af63b4c +0 -0
  684. data/spec/internal/tmp/cache/assets/test/sprockets/d1513885df939f849f36ba2c2b40b3ee +0 -0
  685. data/spec/internal/tmp/cache/assets/test/sprockets/d2f961e197eaad76ce92a0ddb9ade818 +0 -0
  686. data/spec/internal/tmp/cache/assets/test/sprockets/e0343b5d999cf24f7fb6871b145d3368 +0 -0
  687. data/spec/internal/tmp/cache/assets/test/sprockets/e1b7ccff7b73993818ad0cab86fff97d +0 -0
  688. data/spec/internal/tmp/cache/assets/test/sprockets/e2e09ef3ca7aa04271903297c8b46709 +0 -0
  689. data/spec/internal/tmp/cache/assets/test/sprockets/e739e484ef94690df17455376937d2c1 +0 -0
  690. data/spec/internal/tmp/cache/assets/test/sprockets/ed22c5fbe5ee32755035c97ce6f688ff +0 -0
  691. data/spec/internal/tmp/cache/assets/test/sprockets/ef4afa2365308566e3c0e19dc2c61fcb +0 -0
  692. data/spec/internal/tmp/cache/assets/test/sprockets/f29a5a07e82cde486d7f9f9296a036e7 +0 -0
  693. data/spec/internal/tmp/pids/server.pid +0 -1
@@ -0,0 +1,49 @@
1
+ require "spec_helper"
2
+
3
+ describe "Item Administration" do
4
+ let(:exhibit) { Spotlight::Exhibit.default }
5
+ let(:curator) { FactoryGirl.create(:exhibit_curator) }
6
+ before { login_as curator }
7
+ describe "admin" do
8
+ it "should have catalog items" do
9
+ visit spotlight.admin_exhibit_catalog_index_path(Spotlight::Exhibit.default)
10
+ expect(page).to have_css("h1 small", text: "Items")
11
+ expect(page).to have_css("table#documents")
12
+ expect(page).to have_css(".pagination")
13
+ within "tr[itemscope]:first-child" do
14
+ expect(page).to have_link "View"
15
+ expect(page).to have_link "Edit"
16
+ end
17
+ end
18
+
19
+ it "should have a public/private toggle" do
20
+ visit spotlight.admin_exhibit_catalog_index_path(Spotlight::Exhibit.default)
21
+ within "tr[itemscope]:first-child" do
22
+ expect(page).to have_button "Make Private"
23
+ click_button "Make Private"
24
+ end
25
+
26
+ within "tr[itemscope]:first-child" do
27
+ expect(page).to have_button "Make Public"
28
+ click_button "Make Public"
29
+ end
30
+ end
31
+ it "should toggle the 'Private' label", js: true do
32
+ visit spotlight.admin_exhibit_catalog_index_path(exhibit)
33
+ # The label should be toggled when the checkbox is clicked
34
+ within "tr[itemscope]:first-child" do
35
+ expect(page).not_to have_css(".label-warning", text: "Private", visible: true)
36
+ find("input.toggle_visibility[type='checkbox']").click
37
+ expect(page).to have_css(".label-warning", text: "Private", visible: true)
38
+ end
39
+
40
+ # The label should show up on page load
41
+ visit spotlight.admin_exhibit_catalog_index_path(exhibit)
42
+ within "tr[itemscope]:first-child" do
43
+ expect(page).to have_css(".label-warning", text: "Private", visible: true)
44
+ find("input.toggle_visibility[type='checkbox']").click
45
+ expect(page).not_to have_css(".label-warning", text: "Private", visible: true)
46
+ end
47
+ end
48
+ end
49
+ end
@@ -24,7 +24,7 @@ feature "Feature Pages Adminstration", js: true do
24
24
  click_link exhibit_curator.email
25
25
 
26
26
  within '.dropdown-menu' do
27
- click_link 'Curation'
27
+ click_link 'Dashboard'
28
28
  end
29
29
 
30
30
  click_link "Feature pages"
@@ -47,7 +47,7 @@ feature "Feature Pages Adminstration", js: true do
47
47
  visit '/'
48
48
  click_link exhibit_curator.email
49
49
  within '.dropdown-menu' do
50
- click_link 'Curation'
50
+ click_link 'Dashboard'
51
51
  end
52
52
  click_link "Feature pages"
53
53
  within("[data-id='#{page1.id}']") do
@@ -61,4 +61,54 @@ feature "Feature Pages Adminstration", js: true do
61
61
  expect(field_labeled("Show sidebar")).to be_checked
62
62
  end
63
63
  end
64
+ it "should stay in curation mode if a user has unsaved data" do
65
+ visit '/'
66
+ click_link exhibit_curator.email
67
+ within '.dropdown-menu' do
68
+ click_link 'Dashboard'
69
+ end
70
+ click_link "Feature pages"
71
+ within("[data-id='#{page1.id}']") do
72
+ click_link "Edit"
73
+ end
74
+ fill_in("Title", with: "Some Fancy Title")
75
+ click_link "Turn off."
76
+ expect(page).to have_content "You are in curation mode."
77
+ end
78
+ it "should stay in curation mode if a user has unsaved contenteditable data" do
79
+ visit '/'
80
+ click_link exhibit_curator.email
81
+ within '.dropdown-menu' do
82
+ click_link 'Dashboard'
83
+ end
84
+
85
+ click_link "Feature pages"
86
+ within("[data-id='#{page1.id}']") do
87
+ click_link "Edit"
88
+ end
89
+
90
+ find("[data-icon='add']").click
91
+ find("a[data-type='text']").click
92
+ content_editable = find(".st-text-block")
93
+ content_editable.set("Some Facnty Text.")
94
+
95
+ click_link "Turn off."
96
+ expect(page).to have_content "You are in curation mode."
97
+ end
98
+ it "should not update the pages list when the user has unsaved changes" do
99
+ visit '/'
100
+ click_link exhibit_curator.email
101
+ within '.dropdown-menu' do
102
+ click_link 'Dashboard'
103
+ end
104
+
105
+ click_link "Feature pages"
106
+ within("[data-id='#{page1.id}']") do
107
+ click_link "Options"
108
+ fill_in("Page title", with: "NewFancyTitle")
109
+ end
110
+ click_link "Home"
111
+ expect(page).not_to have_content("Feature pages were successfully updated.")
112
+ expect(page).to have_css("h1 small", text: "Feature Pages")
113
+ end
64
114
  end
@@ -1,19 +1,19 @@
1
1
  require "spec_helper"
2
2
 
3
- feature "Record Thumbnail Block" do
3
+ feature "Item + Image Block" do
4
4
  let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator) }
5
5
  before { login_as exhibit_curator }
6
6
 
7
7
  scenario "should allow you to add a thumbnail to a page within an exhibit", :js => true do
8
- pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.")
8
+ pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.") if ENV["CI"]
9
9
  # create page
10
10
  visit '/'
11
11
  click_link exhibit_curator.email
12
12
  within '.dropdown-menu' do
13
- click_link 'Curation'
13
+ click_link 'Dashboard'
14
14
  end
15
15
  click_link "Feature pages"
16
- click_button "Add new Page"
16
+ click_button "Add new page"
17
17
 
18
18
  expect(page).to have_content("Page was successfully created.", visible: true)
19
19
  within("li.dd-item") do
@@ -23,7 +23,7 @@ feature "Record Thumbnail Block" do
23
23
  fill_in "feature_page_title", :with => "Exhibit Title"
24
24
  # click to add widget
25
25
  find("[data-icon='add']").click
26
- # click the Record Thumbnail widget
26
+ # click the item + image widget
27
27
  expect(page).to have_css("a[data-type='item-text']")
28
28
  find("a[data-type='item-text']").click
29
29
  # fill in the record ID field
@@ -34,8 +34,10 @@ feature "Record Thumbnail Block" do
34
34
  # veryify that the page was created
35
35
  expect(page).to have_content("Page was successfully updated.", visible: true)
36
36
  # visit the show page for the document we just saved
37
- visit spotlight.feature_page_path(id: Spotlight::FeaturePage.last)
38
- # veryify that the record thumbnail widget is displaying an image from the document.
37
+ within("li.dd-item") do
38
+ click_link "View"
39
+ end
40
+ # veryify that the item + image widget is displaying an image from the document.
39
41
  within(:css, ".item-text") do
40
42
  expect(page).to have_css(".thumbnail")
41
43
  expect(page).to have_css(".thumbnail a img")
@@ -43,15 +45,15 @@ feature "Record Thumbnail Block" do
43
45
  end
44
46
  end
45
47
  scenario "should allow you to optionally display the title with the image", :js => true do
46
- pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.")
48
+ pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.") if ENV["CI"]
47
49
  # create page
48
50
  visit '/'
49
51
  click_link exhibit_curator.email
50
52
  within '.dropdown-menu' do
51
- click_link 'Curation'
53
+ click_link 'Dashboard'
52
54
  end
53
55
  click_link "Feature pages"
54
- click_button "Add new Page"
56
+ click_button "Add new page"
55
57
 
56
58
  expect(page).to have_content("Page was successfully created.", visible: true)
57
59
  within("li.dd-item") do
@@ -61,7 +63,7 @@ feature "Record Thumbnail Block" do
61
63
  fill_in "feature_page_title", :with => "Exhibit Title"
62
64
  # click to add widget
63
65
  find("[data-icon='add']").click
64
- # click the Record Thumbnail widget
66
+ # click the item + image widget
65
67
  expect(page).to have_css("a[data-type='item-text']")
66
68
  find("a[data-type='item-text']").click
67
69
  # fill in the record ID field
@@ -73,9 +75,13 @@ feature "Record Thumbnail Block" do
73
75
  click_button("Save changes")
74
76
  # veryify that the page was created
75
77
  expect(page).to have_content("Page was successfully updated.", visible: true)
78
+
76
79
  # visit the show page for the document we just saved
77
- visit spotlight.feature_page_path(id: Spotlight::FeaturePage.last)
78
- # veryify that the record thumbnail widget is displaying image and title from the requested document.
80
+ within("li.dd-item") do
81
+ click_link "View"
82
+ end
83
+
84
+ # veryify that the item + image widget is displaying image and title from the requested document.
79
85
  within(:css, ".item-text") do
80
86
  expect(page).to have_css(".thumbnail")
81
87
  expect(page).to have_css(".thumbnail a img")
@@ -84,15 +90,15 @@ feature "Record Thumbnail Block" do
84
90
  end
85
91
  end
86
92
  scenario "should allow you to add text to the image", :js => true do
87
- pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.")
93
+ pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.") if ENV["CI"]
88
94
  # create page
89
95
  visit '/'
90
96
  click_link exhibit_curator.email
91
97
  within '.dropdown-menu' do
92
- click_link 'Curation'
98
+ click_link 'Dashboard'
93
99
  end
94
100
  click_link "Feature pages"
95
- click_button "Add new Page"
101
+ click_button "Add new page"
96
102
 
97
103
  expect(page).to have_content("Page was successfully created.", visible: true)
98
104
  within("li.dd-item") do
@@ -102,35 +108,38 @@ feature "Record Thumbnail Block" do
102
108
  fill_in "feature_page_title", :with => "Exhibit Title"
103
109
  # click to add widget
104
110
  find("[data-icon='add']").click
105
- # click the Record Thumbnail widget
111
+ # click the item + image widget
106
112
  expect(page).to have_css("a[data-type='item-text']")
107
113
  find("a[data-type='item-text']").click
108
114
  # fill in the record ID field
109
115
  expect(page).to have_css("input#item-id")
110
116
  fill_in "item-id", :with => "dq287tq6352"
111
- # fill in the text area
112
- fill_in "item-text", with: "Some text to annotate this image."
117
+ # fill in the content-editable div
118
+ content_editable = find("#item-text")
119
+ content_editable.set("Some text to annotate this image.")
113
120
  # create the page
114
121
  click_button("Save changes")
115
122
  # veryify that the page was created
116
123
  expect(page).to have_content("Page was successfully updated.", visible: true)
117
124
  # visit the show page for the document we just saved
118
- visit spotlight.feature_page_path(id: Spotlight::FeaturePage.last)
119
- # veryify that the record thumbnail widget is displaying image and title from the requested document.
125
+ within("li.dd-item") do
126
+ click_link "View"
127
+ end
128
+ # veryify that the item + image widget is displaying image and title from the requested document.
120
129
  within(:css, ".item-text") do
121
130
  expect(page).to have_content "Some text to annotate this image."
122
131
  end
123
132
  end
124
133
  scenario "should allow you to choose which side the text will be on", :js => true do
125
- pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.")
134
+ pending("Passing locally but Travis is thowing intermittent error because it doesn't seem to wait for form to be submitted.") if ENV["CI"]
126
135
  # create page
127
136
  visit '/'
128
137
  click_link exhibit_curator.email
129
138
  within '.dropdown-menu' do
130
- click_link 'Curation'
139
+ click_link 'Dashboard'
131
140
  end
132
141
  click_link "Feature pages"
133
- click_button "Add new Page"
142
+ click_button "Add new page"
134
143
 
135
144
  expect(page).to have_content("Page was successfully created.", visible: true)
136
145
  within("li.dd-item") do
@@ -140,14 +149,15 @@ feature "Record Thumbnail Block" do
140
149
  fill_in "feature_page_title", :with => "Exhibit Title"
141
150
  # click to add widget
142
151
  find("[data-icon='add']").click
143
- # click the Record Thumbnail widget
152
+ # click the item + image widget
144
153
  expect(page).to have_css("a[data-type='item-text']")
145
154
  find("a[data-type='item-text']").click
146
155
  # fill in the record ID field
147
156
  expect(page).to have_css("input#item-id")
148
157
  fill_in "item-id", :with => "dq287tq6352"
149
- # fill in the text area
150
- fill_in "item-text", with: "Some text to annotate this image."
158
+ # fill in the content editable div
159
+ content_editable = find("#item-text")
160
+ content_editable.set("Some text to annotate this image.")
151
161
  # Select to align the text right
152
162
  choose "Right"
153
163
  # create the page
@@ -155,8 +165,10 @@ feature "Record Thumbnail Block" do
155
165
  # veryify that the page was created
156
166
  expect(page).to have_content("Page was successfully updated.", visible: true)
157
167
  # visit the show page for the document we just saved
158
- visit spotlight.feature_page_path(id: Spotlight::FeaturePage.last)
159
- # veryify that the record thumbnail widget is displaying image and title from the requested document.
168
+ within("li.dd-item") do
169
+ click_link "View"
170
+ end
171
+ # veryify that the item + image widget is displaying image and title from the requested document.
160
172
  within(:css, ".item-text") do
161
173
  expect(page).to have_content "Some text to annotate this image."
162
174
  # should pull the image block the opposite direction of the configured text.
@@ -0,0 +1,40 @@
1
+ require "spec_helper"
2
+
3
+ describe "Mutli-Up Item Grid", js: true do
4
+ let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator) }
5
+ let!(:exhibit) { Spotlight::Exhibit.default }
6
+ let!(:feature_page) { FactoryGirl.create(:feature_page, exhibit: exhibit) }
7
+ before { login_as exhibit_curator }
8
+ it "should display items that are configured to display (and hide items that are not)" do
9
+ visit '/'
10
+ click_link exhibit_curator.email
11
+ within '.dropdown-menu' do
12
+ click_link 'Dashboard'
13
+ end
14
+ click_link "Feature pages"
15
+
16
+ within("[data-id='#{feature_page.id}']") do
17
+ click_link "Edit"
18
+ end
19
+
20
+ find("[data-icon='add']").click
21
+
22
+ find("a[data-type='multi-up-item-grid']").click
23
+
24
+ fill_in("item-grid-id_0", with: "dq287tq6352")
25
+ check("item-grid-display_0")
26
+ fill_in("item-grid-id_1", with: "jp266yb7109")
27
+ check("item-grid-display_1")
28
+ fill_in("item-grid-id_2", with: "zv316zr9542")
29
+
30
+ click_button "Save changes"
31
+ expect(page).to have_content("Page was successfully updated.")
32
+
33
+ within("[data-id='#{feature_page.id}']") do
34
+ click_link "View"
35
+ end
36
+ expect(page).to have_css("[data-id='dq287tq6352']")
37
+ expect(page).to have_css("[data-id='jp266yb7109']")
38
+ expect(page).not_to have_css("[data-id='zv316zr9542']")
39
+ end
40
+ end
@@ -0,0 +1,16 @@
1
+ require "spec_helper"
2
+
3
+ describe "Metadata Administration" do
4
+ let(:curator) { FactoryGirl.create(:exhibit_curator) }
5
+ let(:exhibit) { Spotlight::Exhibit.default }
6
+ before { login_as curator }
7
+ describe "edit" do
8
+ it "should display the metadata edit page" do
9
+ visit spotlight.exhibit_edit_metadata_path(exhibit)
10
+ expect(page).to have_css("h1 small", text: "Metadata")
11
+ within("[data-id='language_ssm']") do
12
+ expect(page).to have_css("td", text: "Language")
13
+ end
14
+ end
15
+ end
16
+ end
@@ -24,4 +24,4 @@ describe "Report a Problem" do
24
24
  expect(ActionMailer::Base.deliveries).to have(1).email
25
25
 
26
26
  end
27
- end
27
+ end
@@ -0,0 +1,18 @@
1
+ require "spec_helper"
2
+
3
+ describe "Search Facets Administration" do
4
+ let(:curator) { FactoryGirl.create(:exhibit_curator) }
5
+ let(:exhibit) { Spotlight::Exhibit.default }
6
+ before { login_as curator }
7
+ describe "edit" do
8
+ it "should display the facet edit screen" do
9
+ visit spotlight.exhibit_edit_facets_path(exhibit)
10
+ expect(page).to have_css("h1 small", text: "Search Facets")
11
+ within("[data-id='genre_ssim']") do
12
+ expect(page).to have_content("Genre")
13
+ expect(page).to have_content(/\d+ items/)
14
+ expect(page).to have_content("10 unique values")
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,27 @@
1
+ require "spec_helper"
2
+
3
+ describe "Tags Administration" do
4
+ let!(:tagging) { FactoryGirl.create(:tagging) }
5
+ let(:curator) { FactoryGirl.create(:exhibit_curator) }
6
+ before { login_as curator }
7
+ describe "index" do
8
+ it "should have tags" do
9
+ visit spotlight.exhibit_tags_path(Spotlight::Exhibit.default)
10
+ expect(page).to have_css("td", text: tagging.tag.name)
11
+ end
12
+
13
+ it "should link tags to a search" do
14
+ visit spotlight.exhibit_tags_path(Spotlight::Exhibit.default)
15
+ click_on tagging.tag.name
16
+ expect(page).to have_content "Remove constraint Exhibit Tags: #{tagging.tag.name}"
17
+ end
18
+ end
19
+
20
+ describe "destroy" do
21
+ it "should destroy a tag" do
22
+ visit spotlight.exhibit_tags_path(Spotlight::Exhibit.default)
23
+ click_link "Delete"
24
+ expect(page).not_to have_css("td", text: tagging.tag.name)
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,16 @@
1
+ require "spec_helper"
2
+
3
+ describe "User Administration" do
4
+ let!(:exhibit) { Spotlight::Exhibit.default }
5
+ let!(:user) { FactoryGirl.create(:exhibit_admin) }
6
+ before { login_as user }
7
+ describe "index" do
8
+ it "should show the users for the exhibit" do
9
+ visit spotlight.exhibit_roles_path(exhibit)
10
+ exhibit.roles.each do |role|
11
+ expect(page).to have_css("td", text: role.user.email)
12
+ expect(page).to have_css("td", text: role.role.humanize)
13
+ end
14
+ end
15
+ end
16
+ end
@@ -62,14 +62,14 @@
62
62
  - L'AMERIQUE
63
63
  sort_title_tesim:
64
64
  - L'AMERIQUE
65
- sort_title_si: L'AMERIQUE
66
- personal_name_sim:
65
+ sort_title_ssi: L'AMERIQUE
66
+ personal_name_ssim:
67
67
  - Duval, P. (Pierre), 1619-1682
68
- personal_name_teim:
68
+ personal_name_tesim:
69
69
  - Duval, P. (Pierre), 1619-1682
70
70
  personal_name_ssm:
71
71
  - Duval, P. (Pierre), 1619-1682
72
- genre_sim:
72
+ genre_ssim:
73
73
  - map
74
74
  - Digital Maps
75
75
  - Early Maps
@@ -107,17 +107,17 @@
107
107
  The Terms of Use on these external sites always govern the data available there.
108
108
  Please consult with library staff if you have questions about data access and
109
109
  availability.
110
- subject_topic_sim:
110
+ subject_topic_ssim:
111
111
  - America--Maps
112
112
  - California as an island--Maps
113
113
  subject_topic_tesim:
114
114
  - America--Maps
115
115
  - California as an island--Maps
116
- subject_cartographics_sim:
116
+ subject_cartographics_ssim:
117
117
  - "\n indeterminable.\n (W 160° --E 20°/N 90° --S 90°)\n "
118
118
  subject_cartographics_tesim:
119
119
  - "\n indeterminable.\n (W 160° --E 20°/N 90° --S 90°)\n "
120
- content_metadata_type_sim:
120
+ content_metadata_type_ssim:
121
121
  - map
122
122
  content_metadata_type_ssm:
123
123
  - map
@@ -190,14 +190,14 @@
190
190
  - AMERICA
191
191
  sort_title_tesim:
192
192
  - AMERICA
193
- sort_title_si: AMERICA
194
- personal_name_sim:
193
+ sort_title_ssi: AMERICA
194
+ personal_name_ssim:
195
195
  - Clüver, Philipp, 1580-1622
196
- personal_name_teim:
196
+ personal_name_tesim:
197
197
  - Clüver, Philipp, 1580-1622
198
198
  personal_name_ssm:
199
199
  - Clüver, Philipp, 1580-1622
200
- genre_sim:
200
+ genre_ssim:
201
201
  - map
202
202
  - Digital Maps
203
203
  - Early Maps
@@ -232,19 +232,19 @@
232
232
  The Terms of Use on these external sites always govern the data available there.
233
233
  Please consult with library staff if you have questions about data access and
234
234
  availability.
235
- subject_topic_sim:
235
+ subject_topic_ssim:
236
236
  - America--Maps
237
237
  - California as an island--Maps
238
238
  subject_topic_tesim:
239
239
  - America--Maps
240
240
  - California as an island--Maps
241
- subject_cartographics_sim:
241
+ subject_cartographics_ssim:
242
242
  - "\n [ca.1:150,000,000]. [S.l. : s.n.], [172\n (W 160° --E 20°/N 90°
243
243
  --S 90°)\n "
244
244
  subject_cartographics_tesim:
245
245
  - "\n [ca.1:150,000,000]. [S.l. : s.n.], [172\n (W 160° --E 20°/N 90°
246
246
  --S 90°)\n "
247
- content_metadata_type_sim:
247
+ content_metadata_type_ssim:
248
248
  - map
249
249
  content_metadata_type_ssm:
250
250
  - map
@@ -319,14 +319,14 @@
319
319
  - AMERIQUE SEPTENTRIONALE
320
320
  sort_title_tesim:
321
321
  - AMERIQUE SEPTENTRIONALE
322
- sort_title_si: AMERIQUE SEPTENTRIONALE
323
- personal_name_sim:
322
+ sort_title_ssi: AMERIQUE SEPTENTRIONALE
323
+ personal_name_ssim:
324
324
  - Manesson-Mallet, Allain, 1630?-1706?
325
- personal_name_teim:
325
+ personal_name_tesim:
326
326
  - Manesson-Mallet, Allain, 1630?-1706?
327
327
  personal_name_ssm:
328
328
  - Manesson-Mallet, Allain, 1630?-1706?
329
- genre_sim:
329
+ genre_ssim:
330
330
  - map
331
331
  - Digital Maps
332
332
  - Early Maps
@@ -359,19 +359,19 @@
359
359
  The Terms of Use on these external sites always govern the data available there.
360
360
  Please consult with library staff if you have questions about data access and
361
361
  availability.
362
- subject_topic_sim:
362
+ subject_topic_ssim:
363
363
  - California as an island--Maps
364
364
  - North America--Maps
365
365
  subject_topic_tesim:
366
366
  - California as an island--Maps
367
367
  - North America--Maps
368
- subject_cartographics_sim:
368
+ subject_cartographics_ssim:
369
369
  - "\n [ca.1:80,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
370
370
  \ "
371
371
  subject_cartographics_tesim:
372
372
  - "\n [ca.1:80,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
373
373
  \ "
374
- content_metadata_type_sim:
374
+ content_metadata_type_ssim:
375
375
  - map
376
376
  content_metadata_type_ssm:
377
377
  - map
@@ -452,15 +452,15 @@
452
452
  sort_title_tesim:
453
453
  - AMERICA with those known parts in that unknowne worlde both people and manner
454
454
  of buildings Discribed and inlarged by I.S.Ano.1626
455
- sort_title_si: AMERICA with those known parts in that unknowne worlde both people
455
+ sort_title_ssi: AMERICA with those known parts in that unknowne worlde both people
456
456
  and manner of buildings Discribed and inlarged by I.S.Ano.1626
457
- personal_name_sim:
457
+ personal_name_ssim:
458
458
  - Speed, John, 1552?-1629
459
- personal_name_teim:
459
+ personal_name_tesim:
460
460
  - Speed, John, 1552?-1629
461
461
  personal_name_ssm:
462
462
  - Speed, John, 1552?-1629
463
- genre_sim:
463
+ genre_ssim:
464
464
  - map
465
465
  - Digital Maps
466
466
  - Early Maps
@@ -513,17 +513,17 @@
513
513
  The Terms of Use on these external sites always govern the data available there.
514
514
  Please consult with library staff if you have questions about data access and
515
515
  availability.
516
- subject_topic_sim:
516
+ subject_topic_ssim:
517
517
  - America--Maps
518
518
  - California as an island--Maps
519
519
  subject_topic_tesim:
520
520
  - America--Maps
521
521
  - California as an island--Maps
522
- subject_cartographics_sim:
522
+ subject_cartographics_ssim:
523
523
  - "\n [ca. 1:46,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
524
524
  subject_cartographics_tesim:
525
525
  - "\n [ca. 1:46,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
526
- content_metadata_type_sim:
526
+ content_metadata_type_ssim:
527
527
  - map
528
528
  content_metadata_type_ssm:
529
529
  - map
@@ -601,15 +601,15 @@
601
601
  sort_title_tesim:
602
602
  - PLANISPHERE URANO-GEOGRAPHIQUE c'estadire LES SPHERES CELESTE et TERRESTRE mises
603
603
  en plan.
604
- sort_title_si: PLANISPHERE URANO-GEOGRAPHIQUE c'estadire LES SPHERES CELESTE et
604
+ sort_title_ssi: PLANISPHERE URANO-GEOGRAPHIQUE c'estadire LES SPHERES CELESTE et
605
605
  TERRESTRE mises en plan.
606
- personal_name_sim:
606
+ personal_name_ssim:
607
607
  - Moulart-Sanson, Pierre, d. 1730.
608
- personal_name_teim:
608
+ personal_name_tesim:
609
609
  - Moulart-Sanson, Pierre, d. 1730.
610
610
  personal_name_ssm:
611
611
  - Moulart-Sanson, Pierre, d. 1730.
612
- genre_sim:
612
+ genre_ssim:
613
613
  - map
614
614
  - Digital Maps
615
615
  - Early Maps
@@ -647,17 +647,17 @@
647
647
  The Terms of Use on these external sites always govern the data available there.
648
648
  Please consult with library staff if you have questions about data access and
649
649
  availability.
650
- subject_topic_sim:
650
+ subject_topic_ssim:
651
651
  - America--Maps
652
652
  - California as an island--Maps
653
653
  subject_topic_tesim:
654
654
  - America--Maps
655
655
  - California as an island--Maps
656
- subject_cartographics_sim:
656
+ subject_cartographics_ssim:
657
657
  - "\n [ca.1:70,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
658
658
  subject_cartographics_tesim:
659
659
  - "\n [ca.1:70,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
660
- content_metadata_type_sim:
660
+ content_metadata_type_ssim:
661
661
  - map
662
662
  content_metadata_type_ssm:
663
663
  - map
@@ -725,16 +725,16 @@
725
725
  - |-
726
726
  Introduction a la Geographie Avec une Description Historique Sur Touttes les parties de la Terre
727
727
  Title page
728
- sort_title_si: |-
728
+ sort_title_ssi: |-
729
729
  Introduction a la Geographie Avec une Description Historique Sur Touttes les parties de la Terre
730
730
  Title page
731
- personal_name_sim:
731
+ personal_name_ssim:
732
732
  - Fer, Nicolas de, 1646-1720.
733
- personal_name_teim:
733
+ personal_name_tesim:
734
734
  - Fer, Nicolas de, 1646-1720.
735
735
  personal_name_ssm:
736
736
  - Fer, Nicolas de, 1646-1720.
737
- genre_sim:
737
+ genre_ssim:
738
738
  - Early Maps
739
739
  - Digital Maps
740
740
  genre_tesim:
@@ -759,11 +759,11 @@
759
759
  are governed by their own Terms of Use, as well as contractual accessrestrictions.
760
760
  The Terms of Use on these external sites always govern thedata available there.
761
761
  Please consult with library staff if you havequestions about data access and availability.
762
- subject_cartographics_sim:
762
+ subject_cartographics_ssim:
763
763
  - "\n (W 180° --E 180°/N 85° --S 85°)\n "
764
764
  subject_cartographics_tesim:
765
765
  - "\n (W 180° --E 180°/N 85° --S 85°)\n "
766
- content_metadata_type_sim:
766
+ content_metadata_type_ssim:
767
767
  - image
768
768
  content_metadata_type_ssm:
769
769
  - image
@@ -835,14 +835,14 @@
835
835
  - L'AMERIQVE
836
836
  sort_title_tesim:
837
837
  - L'AMERIQVE
838
- sort_title_si: L'AMERIQVE
839
- personal_name_sim:
838
+ sort_title_ssi: L'AMERIQVE
839
+ personal_name_ssim:
840
840
  - Duval, P. (Pierre), 1619-1682
841
- personal_name_teim:
841
+ personal_name_tesim:
842
842
  - Duval, P. (Pierre), 1619-1682
843
843
  personal_name_ssm:
844
844
  - Duval, P. (Pierre), 1619-1682
845
- genre_sim:
845
+ genre_ssim:
846
846
  - map
847
847
  - Digital Maps
848
848
  - Early Maps
@@ -876,17 +876,17 @@
876
876
  The Terms of Use on these external sites always govern the data available there.
877
877
  Please consult with library staff if you have questions about data access and
878
878
  availability.
879
- subject_topic_sim:
879
+ subject_topic_ssim:
880
880
  - America--Maps
881
881
  - California as an island--Maps
882
882
  subject_topic_tesim:
883
883
  - America--Maps
884
884
  - California as an island--Maps
885
- subject_cartographics_sim:
885
+ subject_cartographics_ssim:
886
886
  - "\n [ca. 1: 150,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
887
887
  subject_cartographics_tesim:
888
888
  - "\n [ca. 1: 150,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
889
- content_metadata_type_sim:
889
+ content_metadata_type_ssim:
890
890
  - map
891
891
  content_metadata_type_ssm:
892
892
  - map
@@ -979,20 +979,20 @@
979
979
  - "[World map]"
980
980
  sort_title_tesim:
981
981
  - "[World map]"
982
- sort_title_si: "[World map]"
983
- personal_name_sim:
982
+ sort_title_ssi: "[World map]"
983
+ personal_name_ssim:
984
984
  - Weigel, Johann Christoph
985
- personal_name_teim:
985
+ personal_name_tesim:
986
986
  - Weigel, Johann Christoph
987
987
  personal_name_ssm:
988
988
  - Weigel, Johann Christoph
989
- language_sim:
989
+ language_ssim:
990
990
  - Latin
991
- language_teim:
991
+ language_tesim:
992
992
  - Latin
993
993
  language_ssm:
994
994
  - Latin
995
- genre_sim:
995
+ genre_ssim:
996
996
  - map
997
997
  - cartographic image
998
998
  - Early maps.
@@ -1019,21 +1019,21 @@
1019
1019
  note_Local note_tesim:
1020
1020
  - McLaughlin map number 1245, 1246, 1247.
1021
1021
  - Map of America is McLaughlin map number 217.
1022
- subject_topic_sim:
1022
+ subject_topic_ssim:
1023
1023
  - World maps
1024
1024
  subject_topic_tesim:
1025
1025
  - World maps
1026
- subject_genre_sim:
1026
+ subject_genre_ssim:
1027
1027
  - Early works to 1800
1028
1028
  subject_genre_tesim:
1029
1029
  - Early works to 1800
1030
- subject_cartographics_sim:
1030
+ subject_cartographics_ssim:
1031
1031
  - "\n Scale approximately 1:170,000,000.\n (W 180°--E 180°/N 90°--S 90°).\n
1032
1032
  \ "
1033
1033
  subject_cartographics_tesim:
1034
1034
  - "\n Scale approximately 1:170,000,000.\n (W 180°--E 180°/N 90°--S 90°).\n
1035
1035
  \ "
1036
- content_metadata_type_sim:
1036
+ content_metadata_type_ssim:
1037
1037
  - image
1038
1038
  content_metadata_type_ssm:
1039
1039
  - image
@@ -1117,17 +1117,17 @@
1117
1117
  les vns des autres LES ESTATS suivant qu'ils appartiennent presentemet aux FRANÇOIS,
1118
1118
  CASTILLANS, ANGLOIS, SUEDOIS, DANOIS, HOLLANDOIS. Tirée des Relations de toutes
1119
1119
  ces Nations Par le Sr. Sanson, Geographe Ordinaire du Roy
1120
- sort_title_si: AMERIQUE SEPTENTRIONALE divisée en ses principales parties, ou sont
1120
+ sort_title_ssi: AMERIQUE SEPTENTRIONALE divisée en ses principales parties, ou sont
1121
1121
  distingués les vns des autres LES ESTATS suivant qu'ils appartiennent presentemet
1122
1122
  aux FRANÇOIS, CASTILLANS, ANGLOIS, SUEDOIS, DANOIS, HOLLANDOIS. Tirée des Relations
1123
1123
  de toutes ces Nations Par le Sr. Sanson, Geographe Ordinaire du Roy
1124
- personal_name_sim:
1124
+ personal_name_ssim:
1125
1125
  - Jaillot, Alexis Hubert, 1632?-1712
1126
- personal_name_teim:
1126
+ personal_name_tesim:
1127
1127
  - Jaillot, Alexis Hubert, 1632?-1712
1128
1128
  personal_name_ssm:
1129
1129
  - Jaillot, Alexis Hubert, 1632?-1712
1130
- genre_sim:
1130
+ genre_ssim:
1131
1131
  - map
1132
1132
  - Digital Maps
1133
1133
  - Early Maps
@@ -1175,19 +1175,19 @@
1175
1175
  The Terms of Use on these external sites always govern the data available there.
1176
1176
  Please consult with library staff if you have questions about data access and
1177
1177
  availability.
1178
- subject_topic_sim:
1178
+ subject_topic_ssim:
1179
1179
  - California as an island--Maps
1180
1180
  - North America--Maps
1181
1181
  subject_topic_tesim:
1182
1182
  - California as an island--Maps
1183
1183
  - North America--Maps
1184
- subject_cartographics_sim:
1184
+ subject_cartographics_ssim:
1185
1185
  - "\n [ca. 1:16,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
1186
1186
  \ "
1187
1187
  subject_cartographics_tesim:
1188
1188
  - "\n [ca. 1:16,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
1189
1189
  \ "
1190
- content_metadata_type_sim:
1190
+ content_metadata_type_ssim:
1191
1191
  - map
1192
1192
  content_metadata_type_ssm:
1193
1193
  - map
@@ -1263,14 +1263,14 @@
1263
1263
  - AMERICÆ nova discriptio.
1264
1264
  sort_title_tesim:
1265
1265
  - AMERICÆ nova discriptio.
1266
- sort_title_si: AMERICÆ nova discriptio.
1267
- personal_name_sim:
1266
+ sort_title_ssi: AMERICÆ nova discriptio.
1267
+ personal_name_ssim:
1268
1268
  - Allard, Carel, 1648-ca. 1709
1269
- personal_name_teim:
1269
+ personal_name_tesim:
1270
1270
  - Allard, Carel, 1648-ca. 1709
1271
1271
  personal_name_ssm:
1272
1272
  - Allard, Carel, 1648-ca. 1709
1273
- genre_sim:
1273
+ genre_ssim:
1274
1274
  - map
1275
1275
  - Digital Maps
1276
1276
  - Early Maps
@@ -1307,17 +1307,17 @@
1307
1307
  The Terms of Use on these external sites always govern the data available there.
1308
1308
  Please consult with library staff if you have questions about data access and
1309
1309
  availability.
1310
- subject_topic_sim:
1310
+ subject_topic_ssim:
1311
1311
  - America--Maps
1312
1312
  - California as an island--Maps
1313
1313
  subject_topic_tesim:
1314
1314
  - America--Maps
1315
1315
  - California as an island--Maps
1316
- subject_cartographics_sim:
1316
+ subject_cartographics_ssim:
1317
1317
  - "\n [ca.1:45,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
1318
1318
  subject_cartographics_tesim:
1319
1319
  - "\n [ca.1:45,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
1320
- content_metadata_type_sim:
1320
+ content_metadata_type_ssim:
1321
1321
  - map
1322
1322
  content_metadata_type_ssm:
1323
1323
  - map
@@ -1387,9 +1387,9 @@
1387
1387
  - KAART der REYZE van drie Schepen naar het ZUYDLAND in de Jaaren 1721 en 1722
1388
1388
  sort_title_tesim:
1389
1389
  - KAART der REYZE van drie Schepen naar het ZUYDLAND in de Jaaren 1721 en 1722
1390
- sort_title_si: KAART der REYZE van drie Schepen naar het ZUYDLAND in de Jaaren 1721
1390
+ sort_title_ssi: KAART der REYZE van drie Schepen naar het ZUYDLAND in de Jaaren 1721
1391
1391
  en 1722
1392
- genre_sim:
1392
+ genre_ssim:
1393
1393
  - map
1394
1394
  - Digital Maps
1395
1395
  - Early Maps
@@ -1426,19 +1426,19 @@
1426
1426
  The Terms of Use on these external sites always govern the data available there.
1427
1427
  Please consult with library staff if you have questions about data access and
1428
1428
  availability.
1429
- subject_topic_sim:
1429
+ subject_topic_ssim:
1430
1430
  - America--Maps
1431
1431
  - California as an island--Maps
1432
1432
  subject_topic_tesim:
1433
1433
  - America--Maps
1434
1434
  - California as an island--Maps
1435
- subject_cartographics_sim:
1435
+ subject_cartographics_ssim:
1436
1436
  - "\n [ca.1:90,000,000]. [S.l.: s.n., 172\n (W 160° --E 20°/N 90° --S
1437
1437
  90°)\n "
1438
1438
  subject_cartographics_tesim:
1439
1439
  - "\n [ca.1:90,000,000]. [S.l.: s.n., 172\n (W 160° --E 20°/N 90° --S
1440
1440
  90°)\n "
1441
- content_metadata_type_sim:
1441
+ content_metadata_type_ssim:
1442
1442
  - map
1443
1443
  content_metadata_type_ssm:
1444
1444
  - map
@@ -1510,14 +1510,14 @@
1510
1510
  - A MAP of AMERICA from the latest and best Observations
1511
1511
  sort_title_tesim:
1512
1512
  - A MAP of AMERICA from the latest and best Observations
1513
- sort_title_si: A MAP of AMERICA from the latest and best Observations
1514
- personal_name_sim:
1513
+ sort_title_ssi: A MAP of AMERICA from the latest and best Observations
1514
+ personal_name_ssim:
1515
1515
  - Seale, Richard William
1516
- personal_name_teim:
1516
+ personal_name_tesim:
1517
1517
  - Seale, Richard William
1518
1518
  personal_name_ssm:
1519
1519
  - Seale, Richard William
1520
- genre_sim:
1520
+ genre_ssim:
1521
1521
  - map
1522
1522
  - Digital Maps
1523
1523
  - Early Maps
@@ -1549,17 +1549,17 @@
1549
1549
  The Terms of Use on these external sites always govern the data available there.
1550
1550
  Please consult with library staff if you have questions about data access and
1551
1551
  availability.
1552
- subject_topic_sim:
1552
+ subject_topic_ssim:
1553
1553
  - America--Maps
1554
1554
  - California as an island--Maps.
1555
1555
  subject_topic_tesim:
1556
1556
  - America--Maps
1557
1557
  - California as an island--Maps.
1558
- subject_cartographics_sim:
1558
+ subject_cartographics_ssim:
1559
1559
  - "\n [ca. 1:45,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
1560
1560
  subject_cartographics_tesim:
1561
1561
  - "\n [ca. 1:45,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
1562
- content_metadata_type_sim:
1562
+ content_metadata_type_ssim:
1563
1563
  - map
1564
1564
  content_metadata_type_ssm:
1565
1565
  - map
@@ -1634,15 +1634,15 @@
1634
1634
  sort_title_tesim:
1635
1635
  - 'PLANISPHÆRIVM BRAHEVM, Sive Structura MVNDI TOTIVS, EX HYPOTHESI TYCHONIS BRAHEI
1636
1636
  IN PLANO DELINEATA. [Amstelodami : Apud Joannem Janssonium, 1660].'
1637
- sort_title_si: 'PLANISPHÆRIVM BRAHEVM, Sive Structura MVNDI TOTIVS, EX HYPOTHESI
1637
+ sort_title_ssi: 'PLANISPHÆRIVM BRAHEVM, Sive Structura MVNDI TOTIVS, EX HYPOTHESI
1638
1638
  TYCHONIS BRAHEI IN PLANO DELINEATA. [Amstelodami : Apud Joannem Janssonium, 1660].'
1639
- personal_name_sim:
1639
+ personal_name_ssim:
1640
1640
  - Cellarius, Andreas
1641
- personal_name_teim:
1641
+ personal_name_tesim:
1642
1642
  - Cellarius, Andreas
1643
1643
  personal_name_ssm:
1644
1644
  - Cellarius, Andreas
1645
- genre_sim:
1645
+ genre_ssim:
1646
1646
  - map
1647
1647
  - Digital Maps
1648
1648
  - Early Maps
@@ -1678,15 +1678,15 @@
1678
1678
  The Terms of Use on these external sites always govern the data available there.
1679
1679
  Please consult with library staff if you have questions about data access and
1680
1680
  availability.
1681
- subject_topic_sim:
1681
+ subject_topic_ssim:
1682
1682
  - Astronomy--Charts, diagrams, etc.
1683
1683
  subject_topic_tesim:
1684
1684
  - Astronomy--Charts, diagrams, etc.
1685
- subject_cartographics_sim:
1685
+ subject_cartographics_ssim:
1686
1686
  - "\n (W 0° --E 0°/N 90° --N 90°)\n "
1687
1687
  subject_cartographics_tesim:
1688
1688
  - "\n (W 0° --E 0°/N 90° --N 90°)\n "
1689
- content_metadata_type_sim:
1689
+ content_metadata_type_ssim:
1690
1690
  - map
1691
1691
  content_metadata_type_ssm:
1692
1692
  - map
@@ -1792,20 +1792,20 @@
1792
1792
  - La Atlas del mundo o el mundo aguado
1793
1793
  sort_title_tesim:
1794
1794
  - Pas-caart van Zuyd-Zee, tusschen California en ilhas de Ladrones
1795
- sort_title_si: Pas-caart van Zuyd-Zee, tusschen California en ilhas de Ladrones
1796
- personal_name_sim:
1795
+ sort_title_ssi: Pas-caart van Zuyd-Zee, tusschen California en ilhas de Ladrones
1796
+ personal_name_ssim:
1797
1797
  - Doncker, Hendrik I.
1798
- personal_name_teim:
1798
+ personal_name_tesim:
1799
1799
  - Doncker, Hendrik I.
1800
1800
  personal_name_ssm:
1801
1801
  - Doncker, Hendrik I.
1802
- language_sim:
1802
+ language_ssim:
1803
1803
  - Dutch; Flemish
1804
- language_teim:
1804
+ language_tesim:
1805
1805
  - Dutch; Flemish
1806
1806
  language_ssm:
1807
1807
  - Dutch; Flemish
1808
- genre_sim:
1808
+ genre_ssim:
1809
1809
  - map
1810
1810
  - Nautical Charts.
1811
1811
  - Early maps.
@@ -1831,23 +1831,23 @@
1831
1831
  - Issued in his La Atlas del mundo o el mundo aguado. -- Amsterdam, [1669].
1832
1832
  note_Local note_tesim:
1833
1833
  - McLaughlin map number 508.
1834
- subject_geographic_sim:
1834
+ subject_geographic_ssim:
1835
1835
  - Pacific Ocean
1836
1836
  subject_geographic_tesim:
1837
1837
  - Pacific Ocean
1838
- subject_temporal_sim:
1838
+ subject_temporal_ssim:
1839
1839
  - '1669'
1840
1840
  subject_temporal_tesim:
1841
1841
  - '1669'
1842
- subject_genre_sim:
1842
+ subject_genre_ssim:
1843
1843
  - Maps
1844
1844
  subject_genre_tesim:
1845
1845
  - Maps
1846
- subject_cartographics_sim:
1846
+ subject_cartographics_ssim:
1847
1847
  - "\n Scale [ca. 1:225,000]\n (E 110°--W 70°/N 63°--S 53°).\n "
1848
1848
  subject_cartographics_tesim:
1849
1849
  - "\n Scale [ca. 1:225,000]\n (E 110°--W 70°/N 63°--S 53°).\n "
1850
- content_metadata_type_sim:
1850
+ content_metadata_type_ssim:
1851
1851
  - map
1852
1852
  content_metadata_type_ssm:
1853
1853
  - map
@@ -1945,12 +1945,12 @@
1945
1945
  - Orbis terrarum tabula recens emendata et in lucem edita
1946
1946
  sort_title_tesim:
1947
1947
  - Orbis terrarum tabula recens emendata et in lucem edita
1948
- sort_title_si: Orbis terrarum tabula recens emendata et in lucem edita
1949
- personal_name_sim:
1948
+ sort_title_ssi: Orbis terrarum tabula recens emendata et in lucem edita
1949
+ personal_name_ssim:
1950
1950
  - Stopendael, Daniel.
1951
1951
  - Keur, Pieter.
1952
1952
  - Keur, Jacob.
1953
- personal_name_teim:
1953
+ personal_name_tesim:
1954
1954
  - Stopendael, Daniel.
1955
1955
  - Keur, Pieter.
1956
1956
  - Keur, Jacob.
@@ -1958,13 +1958,13 @@
1958
1958
  - Stopendael, Daniel.
1959
1959
  - Keur, Pieter.
1960
1960
  - Keur, Jacob.
1961
- language_sim:
1961
+ language_ssim:
1962
1962
  - Latin
1963
- language_teim:
1963
+ language_tesim:
1964
1964
  - Latin
1965
1965
  language_ssm:
1966
1966
  - Latin
1967
- genre_sim:
1967
+ genre_ssim:
1968
1968
  - map
1969
1969
  - Early maps.
1970
1970
  - Digital maps.
@@ -1990,19 +1990,19 @@
1990
1990
  - Includes text on verso in Dutch.
1991
1991
  note_Local note_tesim:
1992
1992
  - McLaughlin map number 1234.
1993
- subject_topic_sim:
1993
+ subject_topic_ssim:
1994
1994
  - World maps
1995
1995
  subject_topic_tesim:
1996
1996
  - World maps
1997
- subject_genre_sim:
1997
+ subject_genre_ssim:
1998
1998
  - Early works to 1800
1999
1999
  subject_genre_tesim:
2000
2000
  - Early works to 1800
2001
- subject_cartographics_sim:
2001
+ subject_cartographics_ssim:
2002
2002
  - "\n Scale [ca. 1:100,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
2003
2003
  subject_cartographics_tesim:
2004
2004
  - "\n Scale [ca. 1:100,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
2005
- content_metadata_type_sim:
2005
+ content_metadata_type_ssim:
2006
2006
  - image
2007
2007
  content_metadata_type_ssm:
2008
2008
  - image
@@ -2076,14 +2076,14 @@
2076
2076
  - SITVS TERRÆ CIRCVLIS COELESTIBVS CIRCVNDATÆ.
2077
2077
  sort_title_tesim:
2078
2078
  - SITVS TERRÆ CIRCVLIS COELESTIBVS CIRCVNDATÆ.
2079
- sort_title_si: SITVS TERRÆ CIRCVLIS COELESTIBVS CIRCVNDATÆ.
2080
- personal_name_sim:
2079
+ sort_title_ssi: SITVS TERRÆ CIRCVLIS COELESTIBVS CIRCVNDATÆ.
2080
+ personal_name_ssim:
2081
2081
  - Cellarius, Andreas
2082
- personal_name_teim:
2082
+ personal_name_tesim:
2083
2083
  - Cellarius, Andreas
2084
2084
  personal_name_ssm:
2085
2085
  - Cellarius, Andreas
2086
- genre_sim:
2086
+ genre_ssim:
2087
2087
  - map
2088
2088
  - Digital Maps
2089
2089
  - Early Maps
@@ -2123,17 +2123,17 @@
2123
2123
  The Terms of Use on these external sites always govern the data available there.
2124
2124
  Please consult with library staff if you have questions about data access and
2125
2125
  availability.
2126
- subject_topic_sim:
2126
+ subject_topic_ssim:
2127
2127
  - Astronomy--Charts, Diagrams, etc.
2128
2128
  - California as an island--Maps
2129
2129
  subject_topic_tesim:
2130
2130
  - Astronomy--Charts, Diagrams, etc.
2131
2131
  - California as an island--Maps
2132
- subject_cartographics_sim:
2132
+ subject_cartographics_ssim:
2133
2133
  - "\n (W 21° --E 159°/N 90° --S 90°)\n "
2134
2134
  subject_cartographics_tesim:
2135
2135
  - "\n (W 21° --E 159°/N 90° --S 90°)\n "
2136
- content_metadata_type_sim:
2136
+ content_metadata_type_ssim:
2137
2137
  - map
2138
2138
  content_metadata_type_ssm:
2139
2139
  - map
@@ -2212,14 +2212,14 @@
2212
2212
  - TYPUS SELENOGRAPHICUS LUNÆ PHASES ET ASPECTUS VARIOS ADUMBRANS.
2213
2213
  sort_title_tesim:
2214
2214
  - TYPUS SELENOGRAPHICUS LUNÆ PHASES ET ASPECTUS VARIOS ADUMBRANS.
2215
- sort_title_si: TYPUS SELENOGRAPHICUS LUNÆ PHASES ET ASPECTUS VARIOS ADUMBRANS.
2216
- personal_name_sim:
2215
+ sort_title_ssi: TYPUS SELENOGRAPHICUS LUNÆ PHASES ET ASPECTUS VARIOS ADUMBRANS.
2216
+ personal_name_ssim:
2217
2217
  - Cellarius, Andreas
2218
- personal_name_teim:
2218
+ personal_name_tesim:
2219
2219
  - Cellarius, Andreas
2220
2220
  personal_name_ssm:
2221
2221
  - Cellarius, Andreas
2222
- genre_sim:
2222
+ genre_ssim:
2223
2223
  - map
2224
2224
  - Digital Maps
2225
2225
  - Early Maps
@@ -2259,17 +2259,17 @@
2259
2259
  The Terms of Use on these external sites always govern the data available there.
2260
2260
  Please consult with library staff if you have questions about data access and
2261
2261
  availability.
2262
- subject_topic_sim:
2262
+ subject_topic_ssim:
2263
2263
  - Astronomy--Charts, diagrams, etc.
2264
2264
  - California as an island--Maps
2265
2265
  subject_topic_tesim:
2266
2266
  - Astronomy--Charts, diagrams, etc.
2267
2267
  - California as an island--Maps
2268
- subject_cartographics_sim:
2268
+ subject_cartographics_ssim:
2269
2269
  - "\n (W 0° --E 0°/N 90° --N 90°)\n "
2270
2270
  subject_cartographics_tesim:
2271
2271
  - "\n (W 0° --E 0°/N 90° --N 90°)\n "
2272
- content_metadata_type_sim:
2272
+ content_metadata_type_ssim:
2273
2273
  - map
2274
2274
  content_metadata_type_ssm:
2275
2275
  - map
@@ -2365,21 +2365,21 @@
2365
2365
  sort_title_tesim:
2366
2366
  - Planisphaerium terrestre cum utroque coelesti hemisphaerio ... = Vlakke ared-kloot
2367
2367
  met het beide hemelsch half-rond
2368
- sort_title_si: Planisphaerium terrestre cum utroque coelesti hemisphaerio ... =
2368
+ sort_title_ssi: Planisphaerium terrestre cum utroque coelesti hemisphaerio ... =
2369
2369
  Vlakke ared-kloot met het beide hemelsch half-rond
2370
- personal_name_sim:
2370
+ personal_name_ssim:
2371
2371
  - Zuerner, Adam Friedrich
2372
- personal_name_teim:
2372
+ personal_name_tesim:
2373
2373
  - Zuerner, Adam Friedrich
2374
2374
  personal_name_ssm:
2375
2375
  - Zuerner, Adam Friedrich
2376
- language_sim:
2376
+ language_ssim:
2377
2377
  - Latin
2378
- language_teim:
2378
+ language_tesim:
2379
2379
  - Latin
2380
2380
  language_ssm:
2381
2381
  - Latin
2382
- genre_sim:
2382
+ genre_ssim:
2383
2383
  - map
2384
2384
  - Early maps.
2385
2385
  - Maps.
@@ -2400,21 +2400,21 @@
2400
2400
  - Issued in Pieter Schenk's Atlas Contractus.
2401
2401
  note_Local note_tesim:
2402
2402
  - McLaughlin map number 1077.
2403
- subject_topic_sim:
2403
+ subject_topic_ssim:
2404
2404
  - World maps
2405
2405
  subject_topic_tesim:
2406
2406
  - World maps
2407
- subject_genre_sim:
2407
+ subject_genre_ssim:
2408
2408
  - Early works to 1800
2409
2409
  subject_genre_tesim:
2410
2410
  - Early works to 1800
2411
- subject_cartographics_sim:
2411
+ subject_cartographics_ssim:
2412
2412
  - "\n Scale [ca. 1:95,000,000 at the equator]\n (W 180°--E 180°/N 90°--S
2413
2413
  90°).\n "
2414
2414
  subject_cartographics_tesim:
2415
2415
  - "\n Scale [ca. 1:95,000,000 at the equator]\n (W 180°--E 180°/N 90°--S
2416
2416
  90°).\n "
2417
- content_metadata_type_sim:
2417
+ content_metadata_type_ssim:
2418
2418
  - map
2419
2419
  content_metadata_type_ssm:
2420
2420
  - map
@@ -2485,14 +2485,14 @@
2485
2485
  - AMERICA
2486
2486
  sort_title_tesim:
2487
2487
  - AMERICA
2488
- sort_title_si: AMERICA
2489
- personal_name_sim:
2488
+ sort_title_ssi: AMERICA
2489
+ personal_name_ssim:
2490
2490
  - Probst, Johann Michael, d. 1809
2491
- personal_name_teim:
2491
+ personal_name_tesim:
2492
2492
  - Probst, Johann Michael, d. 1809
2493
2493
  personal_name_ssm:
2494
2494
  - Probst, Johann Michael, d. 1809
2495
- genre_sim:
2495
+ genre_ssim:
2496
2496
  - map
2497
2497
  - Digital Maps
2498
2498
  - Early Maps
@@ -2527,11 +2527,11 @@
2527
2527
  The Terms of Use on these external sites always govern the data available there.
2528
2528
  Please consult with library staff if you have questions about data access and
2529
2529
  availability.
2530
- subject_cartographics_sim:
2530
+ subject_cartographics_ssim:
2531
2531
  - "\n [ca. 1: 11,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
2532
2532
  subject_cartographics_tesim:
2533
2533
  - "\n [ca. 1: 11,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
2534
- content_metadata_type_sim:
2534
+ content_metadata_type_ssim:
2535
2535
  - map
2536
2536
  content_metadata_type_ssm:
2537
2537
  - map
@@ -2599,15 +2599,15 @@
2599
2599
  - L'AMERIQUE Suivant les dernieres observations de l'Acad. Royale des Sciences.
2600
2600
  sort_title_tesim:
2601
2601
  - L'AMERIQUE Suivant les dernieres observations de l'Acad. Royale des Sciences.
2602
- sort_title_si: L'AMERIQUE Suivant les dernieres observations de l'Acad. Royale des
2602
+ sort_title_ssi: L'AMERIQUE Suivant les dernieres observations de l'Acad. Royale des
2603
2603
  Sciences.
2604
- personal_name_sim:
2604
+ personal_name_ssim:
2605
2605
  - Buffier, Claude, 1661-1737
2606
- personal_name_teim:
2606
+ personal_name_tesim:
2607
2607
  - Buffier, Claude, 1661-1737
2608
2608
  personal_name_ssm:
2609
2609
  - Buffier, Claude, 1661-1737
2610
- genre_sim:
2610
+ genre_ssim:
2611
2611
  - map
2612
2612
  - Digital Maps
2613
2613
  - Early Maps
@@ -2643,11 +2643,11 @@
2643
2643
  The Terms of Use on these external sites always govern the data available there.
2644
2644
  Please consult with library staff if you have questions about data access and
2645
2645
  availability.
2646
- subject_cartographics_sim:
2646
+ subject_cartographics_ssim:
2647
2647
  - "\n [ca.1:90,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
2648
2648
  subject_cartographics_tesim:
2649
2649
  - "\n [ca.1:90,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
2650
- content_metadata_type_sim:
2650
+ content_metadata_type_ssim:
2651
2651
  - map
2652
2652
  content_metadata_type_ssm:
2653
2653
  - map
@@ -2728,16 +2728,16 @@
2728
2728
  - AMERIQUE SEPTENTRIONALE Par N. Sanson Geographe Ord.re du Roy. Reveue et changée
2729
2729
  en plusieurs endroits suivant les Memoires les plus recents augmentée et corrigée
2730
2730
  en cette seconde edition
2731
- sort_title_si: AMERIQUE SEPTENTRIONALE Par N. Sanson Geographe Ord.re du Roy. Reveue
2731
+ sort_title_ssi: AMERIQUE SEPTENTRIONALE Par N. Sanson Geographe Ord.re du Roy. Reveue
2732
2732
  et changée en plusieurs endroits suivant les Memoires les plus recents augmentée
2733
2733
  et corrigée en cette seconde edition
2734
- personal_name_sim:
2734
+ personal_name_ssim:
2735
2735
  - Sanson, Guillaume
2736
- personal_name_teim:
2736
+ personal_name_tesim:
2737
2737
  - Sanson, Guillaume
2738
2738
  personal_name_ssm:
2739
2739
  - Sanson, Guillaume
2740
- genre_sim:
2740
+ genre_ssim:
2741
2741
  - map
2742
2742
  - Digital Maps
2743
2743
  - Early Maps
@@ -2778,19 +2778,19 @@
2778
2778
  The Terms of Use on these external sites always govern the data available there.
2779
2779
  Please consult with library staff if you have questions about data access and
2780
2780
  availability.
2781
- subject_topic_sim:
2781
+ subject_topic_ssim:
2782
2782
  - California as an island--Maps
2783
2783
  - North America--Maps
2784
2784
  subject_topic_tesim:
2785
2785
  - California as an island--Maps
2786
2786
  - North America--Maps
2787
- subject_cartographics_sim:
2787
+ subject_cartographics_ssim:
2788
2788
  - "\n [ca.1:21,500,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
2789
2789
  \ "
2790
2790
  subject_cartographics_tesim:
2791
2791
  - "\n [ca.1:21,500,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
2792
2792
  \ "
2793
- content_metadata_type_sim:
2793
+ content_metadata_type_ssim:
2794
2794
  - map
2795
2795
  content_metadata_type_ssm:
2796
2796
  - map
@@ -2867,14 +2867,14 @@
2867
2867
  - CONTINENT ARCTIQVE
2868
2868
  sort_title_tesim:
2869
2869
  - CONTINENT ARCTIQVE
2870
- sort_title_si: CONTINENT ARCTIQVE
2871
- personal_name_sim:
2870
+ sort_title_ssi: CONTINENT ARCTIQVE
2871
+ personal_name_ssim:
2872
2872
  - Manesson-Mallet, Allain, 1630?-1706?
2873
- personal_name_teim:
2873
+ personal_name_tesim:
2874
2874
  - Manesson-Mallet, Allain, 1630?-1706?
2875
2875
  personal_name_ssm:
2876
2876
  - Manesson-Mallet, Allain, 1630?-1706?
2877
- genre_sim:
2877
+ genre_ssim:
2878
2878
  - map
2879
2879
  - Digital Maps
2880
2880
  - Early Maps
@@ -2916,19 +2916,19 @@
2916
2916
  The Terms of Use on these external sites always govern the data available there.
2917
2917
  Please consult with library staff if you have questions about data access and
2918
2918
  availability.
2919
- subject_topic_sim:
2919
+ subject_topic_ssim:
2920
2920
  - California as an island--Maps
2921
2921
  - Northern hemisphere--Maps
2922
2922
  subject_topic_tesim:
2923
2923
  - California as an island--Maps
2924
2924
  - Northern hemisphere--Maps
2925
- subject_cartographics_sim:
2925
+ subject_cartographics_ssim:
2926
2926
  - "\n [ca.1:130,000,000]\n Azimuthal Equidistant Polar Projection\n (W
2927
2927
  0° --E 0°/N 90° --N 90°)\n "
2928
2928
  subject_cartographics_tesim:
2929
2929
  - "\n [ca.1:130,000,000]\n Azimuthal Equidistant Polar Projection\n (W
2930
2930
  0° --E 0°/N 90° --N 90°)\n "
2931
- content_metadata_type_sim:
2931
+ content_metadata_type_ssim:
2932
2932
  - map
2933
2933
  content_metadata_type_ssm:
2934
2934
  - map
@@ -3003,14 +3003,14 @@
3003
3003
  - Novissima et Accuratissima TOTIUS AMERICÆ DESCRIPTIO.
3004
3004
  sort_title_tesim:
3005
3005
  - Novissima et Accuratissima TOTIUS AMERICÆ DESCRIPTIO.
3006
- sort_title_si: Novissima et Accuratissima TOTIUS AMERICÆ DESCRIPTIO.
3007
- personal_name_sim:
3006
+ sort_title_ssi: Novissima et Accuratissima TOTIUS AMERICÆ DESCRIPTIO.
3007
+ personal_name_ssim:
3008
3008
  - Danckerts, Justus, 1635-1701
3009
- personal_name_teim:
3009
+ personal_name_tesim:
3010
3010
  - Danckerts, Justus, 1635-1701
3011
3011
  personal_name_ssm:
3012
3012
  - Danckerts, Justus, 1635-1701
3013
- genre_sim:
3013
+ genre_ssim:
3014
3014
  - map
3015
3015
  - Digital Maps
3016
3016
  - Early Maps
@@ -3048,17 +3048,17 @@
3048
3048
  The Terms of Use on these external sites always govern the data available there.
3049
3049
  Please consult with library staff if you have questions about data access and
3050
3050
  availability.
3051
- subject_topic_sim:
3051
+ subject_topic_ssim:
3052
3052
  - America--Maps
3053
3053
  - California as an island--Maps
3054
3054
  subject_topic_tesim:
3055
3055
  - America--Maps
3056
3056
  - California as an island--Maps
3057
- subject_cartographics_sim:
3057
+ subject_cartographics_ssim:
3058
3058
  - "\n [ca.1:38,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
3059
3059
  subject_cartographics_tesim:
3060
3060
  - "\n [ca.1:38,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
3061
- content_metadata_type_sim:
3061
+ content_metadata_type_ssim:
3062
3062
  - map
3063
3063
  content_metadata_type_ssm:
3064
3064
  - map
@@ -3126,14 +3126,14 @@
3126
3126
  - "[America]"
3127
3127
  sort_title_tesim:
3128
3128
  - "[America]"
3129
- sort_title_si: "[America]"
3130
- personal_name_sim:
3129
+ sort_title_ssi: "[America]"
3130
+ personal_name_ssim:
3131
3131
  - Burnet, Thomas, 1635?-1715
3132
- personal_name_teim:
3132
+ personal_name_tesim:
3133
3133
  - Burnet, Thomas, 1635?-1715
3134
3134
  personal_name_ssm:
3135
3135
  - Burnet, Thomas, 1635?-1715
3136
- genre_sim:
3136
+ genre_ssim:
3137
3137
  - map
3138
3138
  - Digital Maps
3139
3139
  - Early Maps
@@ -3169,11 +3169,11 @@
3169
3169
  The Terms of Use on these external sites always govern the data available there.
3170
3170
  Please consult with library staff if you have questions about data access and
3171
3171
  availability.
3172
- subject_cartographics_sim:
3172
+ subject_cartographics_ssim:
3173
3173
  - "\n (W 180° --E 180°/N 85° --S 85°)\n "
3174
3174
  subject_cartographics_tesim:
3175
3175
  - "\n (W 180° --E 180°/N 85° --S 85°)\n "
3176
- content_metadata_type_sim:
3176
+ content_metadata_type_ssim:
3177
3177
  - map
3178
3178
  content_metadata_type_ssm:
3179
3179
  - map
@@ -3249,15 +3249,15 @@
3249
3249
  - Recentissima NOVI ORBIS, Sive AMERICÆ SEPTENTRIONALIS et MERIDIONALIS TABULA
3250
3250
  sort_title_tesim:
3251
3251
  - Recentissima NOVI ORBIS, Sive AMERICÆ SEPTENTRIONALIS et MERIDIONALIS TABULA
3252
- sort_title_si: Recentissima NOVI ORBIS, Sive AMERICÆ SEPTENTRIONALIS et MERIDIONALIS
3252
+ sort_title_ssi: Recentissima NOVI ORBIS, Sive AMERICÆ SEPTENTRIONALIS et MERIDIONALIS
3253
3253
  TABULA
3254
- personal_name_sim:
3254
+ personal_name_ssim:
3255
3255
  - Allard, Carel, 1648-ca. 1709
3256
- personal_name_teim:
3256
+ personal_name_tesim:
3257
3257
  - Allard, Carel, 1648-ca. 1709
3258
3258
  personal_name_ssm:
3259
3259
  - Allard, Carel, 1648-ca. 1709
3260
- genre_sim:
3260
+ genre_ssim:
3261
3261
  - map
3262
3262
  - Digital Maps
3263
3263
  - Early Maps
@@ -3299,17 +3299,17 @@
3299
3299
  The Terms of Use on these external sites always govern the data available there.
3300
3300
  Please consult with library staff if you have questions about data access and
3301
3301
  availability.
3302
- subject_topic_sim:
3302
+ subject_topic_ssim:
3303
3303
  - America--Maps
3304
3304
  - California as an island--Maps
3305
3305
  subject_topic_tesim:
3306
3306
  - America--Maps
3307
3307
  - California as an island--Maps
3308
- subject_cartographics_sim:
3308
+ subject_cartographics_ssim:
3309
3309
  - "\n [ca. 1:38,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
3310
3310
  subject_cartographics_tesim:
3311
3311
  - "\n [ca. 1:38,000,000].\n (W 160° --E 20°/N 90° --S 90°)\n "
3312
- content_metadata_type_sim:
3312
+ content_metadata_type_ssim:
3313
3313
  - map
3314
3314
  content_metadata_type_ssm:
3315
3315
  - map
@@ -3380,14 +3380,14 @@
3380
3380
  - "[Pacific Ocean]"
3381
3381
  sort_title_tesim:
3382
3382
  - "[Pacific Ocean]"
3383
- sort_title_si: "[Pacific Ocean]"
3384
- personal_name_sim:
3383
+ sort_title_ssi: "[Pacific Ocean]"
3384
+ personal_name_ssim:
3385
3385
  - Scherer, Heinrich, 1628-1704.
3386
- personal_name_teim:
3386
+ personal_name_tesim:
3387
3387
  - Scherer, Heinrich, 1628-1704.
3388
3388
  personal_name_ssm:
3389
3389
  - Scherer, Heinrich, 1628-1704.
3390
- genre_sim:
3390
+ genre_ssim:
3391
3391
  - map
3392
3392
  - Digital Maps
3393
3393
  - Early Maps
@@ -3433,15 +3433,15 @@
3433
3433
  The Terms of Use on these external sites always govern the data available there.
3434
3434
  Please consult with library staff if you have questions about data access and
3435
3435
  availability.
3436
- subject_topic_sim:
3436
+ subject_topic_ssim:
3437
3437
  - California as an island--Maps
3438
3438
  subject_topic_tesim:
3439
3439
  - California as an island--Maps
3440
- subject_cartographics_sim:
3440
+ subject_cartographics_ssim:
3441
3441
  - "\n [ca.1:36,000,000]\n (E 110° --W 70°/N 63° --S 53°)\n "
3442
3442
  subject_cartographics_tesim:
3443
3443
  - "\n [ca.1:36,000,000]\n (E 110° --W 70°/N 63° --S 53°)\n "
3444
- content_metadata_type_sim:
3444
+ content_metadata_type_ssim:
3445
3445
  - map
3446
3446
  content_metadata_type_ssm:
3447
3447
  - map
@@ -3520,14 +3520,14 @@
3520
3520
  - AMERICQVE SEPTENTRIONALE
3521
3521
  sort_title_tesim:
3522
3522
  - AMERICQVE SEPTENTRIONALE
3523
- sort_title_si: AMERICQVE SEPTENTRIONALE
3524
- personal_name_sim:
3523
+ sort_title_ssi: AMERICQVE SEPTENTRIONALE
3524
+ personal_name_ssim:
3525
3525
  - Sanson, Nicolas, 1600-1667
3526
- personal_name_teim:
3526
+ personal_name_tesim:
3527
3527
  - Sanson, Nicolas, 1600-1667
3528
3528
  personal_name_ssm:
3529
3529
  - Sanson, Nicolas, 1600-1667
3530
- genre_sim:
3530
+ genre_ssim:
3531
3531
  - map
3532
3532
  - Digital Maps
3533
3533
  - Early Maps
@@ -3579,19 +3579,19 @@
3579
3579
  The Terms of Use on these external sites always govern the data available there.
3580
3580
  Please consult with library staff if you have questions about data access and
3581
3581
  availability.
3582
- subject_topic_sim:
3582
+ subject_topic_ssim:
3583
3583
  - California as an island--Maps
3584
3584
  - North America--Maps
3585
3585
  subject_topic_tesim:
3586
3586
  - California as an island--Maps
3587
3587
  - North America--Maps
3588
- subject_cartographics_sim:
3588
+ subject_cartographics_ssim:
3589
3589
  - "\n [ca.1:40,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
3590
3590
  \ "
3591
3591
  subject_cartographics_tesim:
3592
3592
  - "\n [ca.1:40,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
3593
3593
  \ "
3594
- content_metadata_type_sim:
3594
+ content_metadata_type_ssim:
3595
3595
  - map
3596
3596
  content_metadata_type_ssm:
3597
3597
  - map
@@ -3695,12 +3695,12 @@
3695
3695
  the best hands'
3696
3696
  sort_title_tesim:
3697
3697
  - "[Maps of the world]"
3698
- sort_title_si: "[Maps of the world]"
3699
- personal_name_sim:
3698
+ sort_title_ssi: "[Maps of the world]"
3699
+ personal_name_ssim:
3700
3700
  - Seale, Richard William.
3701
3701
  - Hinton, John
3702
3702
  - Barrow, John teacher of mathematics
3703
- personal_name_teim:
3703
+ personal_name_tesim:
3704
3704
  - Seale, Richard William.
3705
3705
  - Hinton, John
3706
3706
  - Barrow, John teacher of mathematics
@@ -3708,13 +3708,13 @@
3708
3708
  - Seale, Richard William.
3709
3709
  - Hinton, John
3710
3710
  - Barrow, John teacher of mathematics
3711
- language_sim:
3711
+ language_ssim:
3712
3712
  - English
3713
- language_teim:
3713
+ language_tesim:
3714
3714
  - English
3715
3715
  language_ssm:
3716
3716
  - English
3717
- genre_sim:
3717
+ genre_ssim:
3718
3718
  - map
3719
3719
  - Maps.
3720
3720
  - Digital maps.
@@ -3740,19 +3740,19 @@
3740
3740
  the best hands.'
3741
3741
  note_Local note_tesim:
3742
3742
  - McLaughlin map number 1135.
3743
- subject_topic_sim:
3743
+ subject_topic_ssim:
3744
3744
  - World maps
3745
3745
  subject_topic_tesim:
3746
3746
  - World maps
3747
- subject_genre_sim:
3747
+ subject_genre_ssim:
3748
3748
  - Early works to 1800
3749
3749
  subject_genre_tesim:
3750
3750
  - Early works to 1800
3751
- subject_cartographics_sim:
3751
+ subject_cartographics_ssim:
3752
3752
  - "\n Scales differ\n (W 180°--E 180°/N 90°--S 90°).\n "
3753
3753
  subject_cartographics_tesim:
3754
3754
  - "\n Scales differ\n (W 180°--E 180°/N 90°--S 90°).\n "
3755
- content_metadata_type_sim:
3755
+ content_metadata_type_ssim:
3756
3756
  - image
3757
3757
  content_metadata_type_ssm:
3758
3758
  - image
@@ -3828,14 +3828,14 @@
3828
3828
  - MAR DEL ZUR HISPANIS MARE PACIFICUM.
3829
3829
  sort_title_tesim:
3830
3830
  - MAR DEL ZUR HISPANIS MARE PACIFICUM.
3831
- sort_title_si: MAR DEL ZUR HISPANIS MARE PACIFICUM.
3832
- personal_name_sim:
3831
+ sort_title_ssi: MAR DEL ZUR HISPANIS MARE PACIFICUM.
3832
+ personal_name_ssim:
3833
3833
  - Doncker, Hendrick, 1626-1699
3834
- personal_name_teim:
3834
+ personal_name_tesim:
3835
3835
  - Doncker, Hendrick, 1626-1699
3836
3836
  personal_name_ssm:
3837
3837
  - Doncker, Hendrick, 1626-1699
3838
- genre_sim:
3838
+ genre_ssim:
3839
3839
  - map
3840
3840
  - Digital Maps
3841
3841
  - Early Maps
@@ -3872,17 +3872,17 @@
3872
3872
  The Terms of Use on these external sites always govern the data available there.
3873
3873
  Please consult with library staff if you have questions about data access and
3874
3874
  availability.
3875
- subject_topic_sim:
3875
+ subject_topic_ssim:
3876
3876
  - America--Maps
3877
3877
  - California as an island--Maps
3878
3878
  subject_topic_tesim:
3879
3879
  - America--Maps
3880
3880
  - California as an island--Maps
3881
- subject_cartographics_sim:
3881
+ subject_cartographics_ssim:
3882
3882
  - "\n [ca. 1:30,000,000]\n (E 110° --W 70°/N 63° --S 53°)\n "
3883
3883
  subject_cartographics_tesim:
3884
3884
  - "\n [ca. 1:30,000,000]\n (E 110° --W 70°/N 63° --S 53°)\n "
3885
- content_metadata_type_sim:
3885
+ content_metadata_type_ssim:
3886
3886
  - map
3887
3887
  content_metadata_type_ssm:
3888
3888
  - map
@@ -3956,14 +3956,14 @@
3956
3956
  - L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
3957
3957
  sort_title_tesim:
3958
3958
  - L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
3959
- sort_title_si: L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
3960
- personal_name_sim:
3959
+ sort_title_ssi: L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
3960
+ personal_name_ssim:
3961
3961
  - Duval, P. (Pierre), 1619-1682
3962
- personal_name_teim:
3962
+ personal_name_tesim:
3963
3963
  - Duval, P. (Pierre), 1619-1682
3964
3964
  personal_name_ssm:
3965
3965
  - Duval, P. (Pierre), 1619-1682
3966
- genre_sim:
3966
+ genre_ssim:
3967
3967
  - map
3968
3968
  - Digital Maps
3969
3969
  - Early Maps
@@ -4001,17 +4001,17 @@
4001
4001
  The Terms of Use on these external sites always govern the data available there.
4002
4002
  Please consult with library staff if you have questions about data access and
4003
4003
  availability.
4004
- subject_topic_sim:
4004
+ subject_topic_ssim:
4005
4005
  - America--Maps
4006
4006
  - California as an island--Maps
4007
4007
  subject_topic_tesim:
4008
4008
  - America--Maps
4009
4009
  - California as an island--Maps
4010
- subject_cartographics_sim:
4010
+ subject_cartographics_ssim:
4011
4011
  - "\n [ca. 1:36,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
4012
4012
  subject_cartographics_tesim:
4013
4013
  - "\n [ca. 1:36,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
4014
- content_metadata_type_sim:
4014
+ content_metadata_type_ssim:
4015
4015
  - map
4016
4016
  content_metadata_type_ssm:
4017
4017
  - map
@@ -4092,14 +4092,14 @@
4092
4092
  - L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
4093
4093
  sort_title_tesim:
4094
4094
  - L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
4095
- sort_title_si: L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
4096
- personal_name_sim:
4095
+ sort_title_ssi: L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES
4096
+ personal_name_ssim:
4097
4097
  - Duval, P. (Pierre), 1619-1682
4098
- personal_name_teim:
4098
+ personal_name_tesim:
4099
4099
  - Duval, P. (Pierre), 1619-1682
4100
4100
  personal_name_ssm:
4101
4101
  - Duval, P. (Pierre), 1619-1682
4102
- genre_sim:
4102
+ genre_ssim:
4103
4103
  - map
4104
4104
  - Digital Maps
4105
4105
  - Early Maps
@@ -4123,17 +4123,17 @@
4123
4123
  text in North America, and many added place names throughout.
4124
4124
  note_Statement of responsibility_tesim:
4125
4125
  - Par P. Du Val d'Abbeuille Geographe Ordinaire du Roy.
4126
- subject_topic_sim:
4126
+ subject_topic_ssim:
4127
4127
  - California as an island--Maps
4128
4128
  - America--Maps
4129
4129
  subject_topic_tesim:
4130
4130
  - California as an island--Maps
4131
4131
  - America--Maps
4132
- subject_cartographics_sim:
4132
+ subject_cartographics_ssim:
4133
4133
  - "\n [ca. 1:36,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
4134
4134
  subject_cartographics_tesim:
4135
4135
  - "\n [ca. 1:36,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
4136
- content_metadata_type_sim:
4136
+ content_metadata_type_ssim:
4137
4137
  - map
4138
4138
  content_metadata_type_ssm:
4139
4139
  - map
@@ -4226,20 +4226,20 @@
4226
4226
  - "[Americas]"
4227
4227
  sort_title_tesim:
4228
4228
  - "[Americas]"
4229
- sort_title_si: "[Americas]"
4230
- personal_name_sim:
4229
+ sort_title_ssi: "[Americas]"
4230
+ personal_name_ssim:
4231
4231
  - Homann, Johann Baptist
4232
- personal_name_teim:
4232
+ personal_name_tesim:
4233
4233
  - Homann, Johann Baptist
4234
4234
  personal_name_ssm:
4235
4235
  - Homann, Johann Baptist
4236
- language_sim:
4236
+ language_ssim:
4237
4237
  - Undetermined
4238
- language_teim:
4238
+ language_tesim:
4239
4239
  - Undetermined
4240
4240
  language_ssm:
4241
4241
  - Undetermined
4242
- genre_sim:
4242
+ genre_ssim:
4243
4243
  - map
4244
4244
  - Early maps.
4245
4245
  - Digital maps.
@@ -4261,19 +4261,19 @@
4261
4261
  - Folded. 6th map in book.
4262
4262
  note_Local note_tesim:
4263
4263
  - McLaughlin map number 1285.
4264
- subject_topic_sim:
4264
+ subject_topic_ssim:
4265
4265
  - World maps
4266
4266
  subject_topic_tesim:
4267
4267
  - World maps
4268
- subject_genre_sim:
4268
+ subject_genre_ssim:
4269
4269
  - Early works to 1800
4270
4270
  subject_genre_tesim:
4271
4271
  - Early works to 1800
4272
- subject_cartographics_sim:
4272
+ subject_cartographics_ssim:
4273
4273
  - "\n Scale not given\n (W 160°--E 10°/N 80°--S 60°).\n "
4274
4274
  subject_cartographics_tesim:
4275
4275
  - "\n Scale not given\n (W 160°--E 10°/N 80°--S 60°).\n "
4276
- content_metadata_type_sim:
4276
+ content_metadata_type_ssim:
4277
4277
  - image
4278
4278
  content_metadata_type_ssm:
4279
4279
  - image
@@ -4350,14 +4350,14 @@
4350
4350
  - NOVA TOTIVS AMERICÆ DESCRIPTIO.
4351
4351
  sort_title_tesim:
4352
4352
  - NOVA TOTIVS AMERICÆ DESCRIPTIO.
4353
- sort_title_si: NOVA TOTIVS AMERICÆ DESCRIPTIO.
4354
- personal_name_sim:
4353
+ sort_title_ssi: NOVA TOTIVS AMERICÆ DESCRIPTIO.
4354
+ personal_name_ssim:
4355
4355
  - Wit, Frederik de
4356
- personal_name_teim:
4356
+ personal_name_tesim:
4357
4357
  - Wit, Frederik de
4358
4358
  personal_name_ssm:
4359
4359
  - Wit, Frederik de
4360
- genre_sim:
4360
+ genre_ssim:
4361
4361
  - map
4362
4362
  - Digital Maps
4363
4363
  - Early Maps
@@ -4402,17 +4402,17 @@
4402
4402
  The Terms of Use on these external sites always govern the data available there.
4403
4403
  Please consult with library staff if you have questions about data access and
4404
4404
  availability.
4405
- subject_topic_sim:
4405
+ subject_topic_ssim:
4406
4406
  - America--Maps
4407
4407
  - California as an island--Maps
4408
4408
  subject_topic_tesim:
4409
4409
  - America--Maps
4410
4410
  - California as an island--Maps
4411
- subject_cartographics_sim:
4411
+ subject_cartographics_ssim:
4412
4412
  - "\n [ca.1:45,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
4413
4413
  subject_cartographics_tesim:
4414
4414
  - "\n [ca.1:45,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
4415
- content_metadata_type_sim:
4415
+ content_metadata_type_ssim:
4416
4416
  - map
4417
4417
  content_metadata_type_ssm:
4418
4418
  - map
@@ -4490,10 +4490,10 @@
4490
4490
  - A New Map of North AMERICA According to the Newest Observations.
4491
4491
  sort_title_tesim:
4492
4492
  - A New Map of North AMERICA According to the Newest Observations.
4493
- sort_title_si: A New Map of North AMERICA According to the Newest Observations.
4494
- personal_name_sim:
4493
+ sort_title_ssi: A New Map of North AMERICA According to the Newest Observations.
4494
+ personal_name_ssim:
4495
4495
  - Moll, Herman, d. 1732
4496
- personal_name_teim:
4496
+ personal_name_tesim:
4497
4497
  - Moll, Herman, d. 1732
4498
4498
  personal_name_ssm:
4499
4499
  - Moll, Herman, d. 1732
@@ -4533,13 +4533,13 @@
4533
4533
  Heinrich Meyer, 1744.'
4534
4534
  note_Statement of responsibility_tesim:
4535
4535
  - By H. Moll Geographer.
4536
- subject_cartographics_sim:
4536
+ subject_cartographics_ssim:
4537
4537
  - "\n [ca. 1:55,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
4538
4538
  \ "
4539
4539
  subject_cartographics_tesim:
4540
4540
  - "\n [ca. 1:55,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
4541
4541
  \ "
4542
- content_metadata_type_sim:
4542
+ content_metadata_type_ssim:
4543
4543
  - map
4544
4544
  content_metadata_type_ssm:
4545
4545
  - map
@@ -4619,16 +4619,16 @@
4619
4619
  sort_title_tesim:
4620
4620
  - PLANISPHERE REPRESENTANT TOUTE L'ETENDUE DU MONDE. DANS L'ORDRE QU'ON A SUIVI
4621
4621
  DANS CE LIVRE. NB. LES CHIFFRES SE RAPORTENT AUX CARTES ET AUX PAGES DES DESCRIPTIONS.
4622
- sort_title_si: PLANISPHERE REPRESENTANT TOUTE L'ETENDUE DU MONDE. DANS L'ORDRE QU'ON
4622
+ sort_title_ssi: PLANISPHERE REPRESENTANT TOUTE L'ETENDUE DU MONDE. DANS L'ORDRE QU'ON
4623
4623
  A SUIVI DANS CE LIVRE. NB. LES CHIFFRES SE RAPORTENT AUX CARTES ET AUX PAGES DES
4624
4624
  DESCRIPTIONS.
4625
- personal_name_sim:
4625
+ personal_name_ssim:
4626
4626
  - Renard, Louis, b. ca. 1678.
4627
- personal_name_teim:
4627
+ personal_name_tesim:
4628
4628
  - Renard, Louis, b. ca. 1678.
4629
4629
  personal_name_ssm:
4630
4630
  - Renard, Louis, b. ca. 1678.
4631
- genre_sim:
4631
+ genre_ssim:
4632
4632
  - map
4633
4633
  - Digital Maps
4634
4634
  - Early Maps
@@ -4668,17 +4668,17 @@
4668
4668
  The Terms of Use on these external sites always govern the data available there.
4669
4669
  Please consult with library staff if you have questions about data access and
4670
4670
  availability.
4671
- subject_topic_sim:
4671
+ subject_topic_ssim:
4672
4672
  - California as an island--Maps
4673
4673
  - World--Maps
4674
4674
  subject_topic_tesim:
4675
4675
  - California as an island--Maps
4676
4676
  - World--Maps
4677
- subject_cartographics_sim:
4677
+ subject_cartographics_ssim:
4678
4678
  - "\n [ca.1:140,000,000].\n (W 0° --E 0°/N 90° --N 90°)\n "
4679
4679
  subject_cartographics_tesim:
4680
4680
  - "\n [ca.1:140,000,000].\n (W 0° --E 0°/N 90° --N 90°)\n "
4681
- content_metadata_type_sim:
4681
+ content_metadata_type_ssim:
4682
4682
  - map
4683
4683
  content_metadata_type_ssm:
4684
4684
  - map
@@ -4754,14 +4754,14 @@
4754
4754
  - "'t Noorder deel van WEST-INDIEN"
4755
4755
  sort_title_tesim:
4756
4756
  - "'t Noorder deel van WEST-INDIEN"
4757
- sort_title_si: "'t Noorder deel van WEST-INDIEN"
4758
- personal_name_sim:
4757
+ sort_title_ssi: "'t Noorder deel van WEST-INDIEN"
4758
+ personal_name_ssim:
4759
4759
  - Goos, Abraham
4760
- personal_name_teim:
4760
+ personal_name_tesim:
4761
4761
  - Goos, Abraham
4762
4762
  personal_name_ssm:
4763
4763
  - Goos, Abraham
4764
- genre_sim:
4764
+ genre_ssim:
4765
4765
  - map
4766
4766
  - Digital Maps
4767
4767
  - Early Maps
@@ -4803,19 +4803,19 @@
4803
4803
  The Terms of Use on these external sites always govern the data available there.
4804
4804
  Please consult with library staff if you have questions about data access and
4805
4805
  availability.
4806
- subject_topic_sim:
4806
+ subject_topic_ssim:
4807
4807
  - California as an island--Maps
4808
4808
  - North America--Maps
4809
4809
  subject_topic_tesim:
4810
4810
  - California as an island--Maps
4811
4811
  - North America--Maps
4812
- subject_cartographics_sim:
4812
+ subject_cartographics_ssim:
4813
4813
  - "\n [ca.1:60,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
4814
4814
  \ "
4815
4815
  subject_cartographics_tesim:
4816
4816
  - "\n [ca.1:60,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
4817
4817
  \ "
4818
- content_metadata_type_sim:
4818
+ content_metadata_type_ssim:
4819
4819
  - map
4820
4820
  content_metadata_type_ssm:
4821
4821
  - map
@@ -4892,14 +4892,14 @@
4892
4892
  - AMERIQUE SEPTENTRIONALE
4893
4893
  sort_title_tesim:
4894
4894
  - AMERIQUE SEPTENTRIONALE
4895
- sort_title_si: AMERIQUE SEPTENTRIONALE
4896
- personal_name_sim:
4895
+ sort_title_ssi: AMERIQUE SEPTENTRIONALE
4896
+ personal_name_ssim:
4897
4897
  - Ganière, Pierre, 1663-1721
4898
- personal_name_teim:
4898
+ personal_name_tesim:
4899
4899
  - Ganière, Pierre, 1663-1721
4900
4900
  personal_name_ssm:
4901
4901
  - Ganière, Pierre, 1663-1721
4902
- genre_sim:
4902
+ genre_ssim:
4903
4903
  - map
4904
4904
  - Digital Maps
4905
4905
  - Early Maps
@@ -4948,19 +4948,19 @@
4948
4948
  The Terms of Use on these external sites always govern the data available there.
4949
4949
  Please consult with library staff if you have questions about data access and
4950
4950
  availability.
4951
- subject_topic_sim:
4951
+ subject_topic_ssim:
4952
4952
  - California as an island--Maps--1695
4953
4953
  - North America--Maps
4954
4954
  subject_topic_tesim:
4955
4955
  - California as an island--Maps--1695
4956
4956
  - North America--Maps
4957
- subject_cartographics_sim:
4957
+ subject_cartographics_ssim:
4958
4958
  - "\n [ca. 1: 44,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
4959
4959
  \ "
4960
4960
  subject_cartographics_tesim:
4961
4961
  - "\n [ca. 1: 44,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
4962
4962
  \ "
4963
- content_metadata_type_sim:
4963
+ content_metadata_type_ssim:
4964
4964
  - map
4965
4965
  content_metadata_type_ssm:
4966
4966
  - map
@@ -5039,14 +5039,14 @@
5039
5039
  - "[World]"
5040
5040
  sort_title_tesim:
5041
5041
  - "[World]"
5042
- sort_title_si: "[World]"
5043
- personal_name_sim:
5042
+ sort_title_ssi: "[World]"
5043
+ personal_name_ssim:
5044
5044
  - İbrahim Müteferrika, 1674?-1745
5045
- personal_name_teim:
5045
+ personal_name_tesim:
5046
5046
  - İbrahim Müteferrika, 1674?-1745
5047
5047
  personal_name_ssm:
5048
5048
  - İbrahim Müteferrika, 1674?-1745
5049
- genre_sim:
5049
+ genre_ssim:
5050
5050
  - map
5051
5051
  - Digital Maps
5052
5052
  - Early Maps
@@ -5083,17 +5083,17 @@
5083
5083
  The Terms of Use on these external sites always govern the data available there.
5084
5084
  Please consult with library staff if you have questions about data access and
5085
5085
  availability.
5086
- subject_topic_sim:
5086
+ subject_topic_ssim:
5087
5087
  - California as an island--Maps
5088
5088
  - World Maps
5089
5089
  subject_topic_tesim:
5090
5090
  - California as an island--Maps
5091
5091
  - World Maps
5092
- subject_cartographics_sim:
5092
+ subject_cartographics_ssim:
5093
5093
  - "\n [ca. 1:140,000,000].\n (W 180° --E 180°/N 85° --S 85°)\n "
5094
5094
  subject_cartographics_tesim:
5095
5095
  - "\n [ca. 1:140,000,000].\n (W 180° --E 180°/N 85° --S 85°)\n "
5096
- content_metadata_type_sim:
5096
+ content_metadata_type_ssim:
5097
5097
  - map
5098
5098
  content_metadata_type_ssm:
5099
5099
  - map
@@ -5167,14 +5167,14 @@
5167
5167
  - NEW MEXICO
5168
5168
  sort_title_tesim:
5169
5169
  - NEW MEXICO
5170
- sort_title_si: NEW MEXICO
5171
- personal_name_sim:
5170
+ sort_title_ssi: NEW MEXICO
5171
+ personal_name_ssim:
5172
5172
  - Seller, John, fl. 1658-1698
5173
- personal_name_teim:
5173
+ personal_name_tesim:
5174
5174
  - Seller, John, fl. 1658-1698
5175
5175
  personal_name_ssm:
5176
5176
  - Seller, John, fl. 1658-1698
5177
- genre_sim:
5177
+ genre_ssim:
5178
5178
  - map
5179
5179
  - Digital Maps
5180
5180
  - Early Maps
@@ -5216,17 +5216,17 @@
5216
5216
  The Terms of Use on these external sites always govern the data available there.
5217
5217
  Please consult with library staff if you have questions about data access and
5218
5218
  availability.
5219
- subject_topic_sim:
5219
+ subject_topic_ssim:
5220
5220
  - Atlases--Early works to 1800
5221
5221
  - California as an island--Maps
5222
5222
  subject_topic_tesim:
5223
5223
  - Atlases--Early works to 1800
5224
5224
  - California as an island--Maps
5225
- subject_cartographics_sim:
5225
+ subject_cartographics_ssim:
5226
5226
  - "\n indeterminable.\n (W 125° --W 110°/N 47° --N 31°)\n "
5227
5227
  subject_cartographics_tesim:
5228
5228
  - "\n indeterminable.\n (W 125° --W 110°/N 47° --N 31°)\n "
5229
- content_metadata_type_sim:
5229
+ content_metadata_type_ssim:
5230
5230
  - map
5231
5231
  content_metadata_type_ssm:
5232
5232
  - map
@@ -5289,9 +5289,9 @@
5289
5289
  sort_title_tesim:
5290
5290
  - A Generall Chart of the | SOUTH SEA | from the River of Plate to | Dampiers Streights
5291
5291
  on ye Coast | of NEW GUINEA
5292
- sort_title_si: A Generall Chart of the | SOUTH SEA | from the River of Plate to
5292
+ sort_title_ssi: A Generall Chart of the | SOUTH SEA | from the River of Plate to
5293
5293
  | Dampiers Streights on ye Coast | of NEW GUINEA
5294
- genre_sim:
5294
+ genre_ssim:
5295
5295
  - Early Maps
5296
5296
  - Digital Maps
5297
5297
  genre_tesim:
@@ -5316,11 +5316,11 @@
5316
5316
  are governed by their own Terms of Use, as well as contractual accessrestrictions.
5317
5317
  The Terms of Use on these external sites always govern thedata available there.
5318
5318
  Please consult with library staff if you havequestions about data access and availability.
5319
- subject_cartographics_sim:
5319
+ subject_cartographics_ssim:
5320
5320
  - "\n [ca. 31,000,000]\n (E 110° --W 70°/N 63° --S 53°)\n "
5321
5321
  subject_cartographics_tesim:
5322
5322
  - "\n [ca. 31,000,000]\n (E 110° --W 70°/N 63° --S 53°)\n "
5323
- content_metadata_type_sim:
5323
+ content_metadata_type_ssim:
5324
5324
  - image
5325
5325
  content_metadata_type_ssm:
5326
5326
  - image
@@ -5402,14 +5402,14 @@
5402
5402
  - "[Armenian map of the world]"
5403
5403
  sort_title_tesim:
5404
5404
  - "[Armenian map of the world]"
5405
- sort_title_si: "[Armenian map of the world]"
5406
- language_sim:
5405
+ sort_title_ssi: "[Armenian map of the world]"
5406
+ language_ssim:
5407
5407
  - Armenian
5408
- language_teim:
5408
+ language_tesim:
5409
5409
  - Armenian
5410
5410
  language_ssm:
5411
5411
  - Armenian
5412
- genre_sim:
5412
+ genre_ssim:
5413
5413
  - map
5414
5414
  - Early maps.
5415
5415
  - Digital maps.
@@ -5432,19 +5432,19 @@
5432
5432
  complete. The Great Wall of China is shown. Includes small ships and compass roses.
5433
5433
  note_Local note_tesim:
5434
5434
  - McLaughlin map number 1165.
5435
- subject_topic_sim:
5435
+ subject_topic_ssim:
5436
5436
  - World maps
5437
5437
  subject_topic_tesim:
5438
5438
  - World maps
5439
- subject_genre_sim:
5439
+ subject_genre_ssim:
5440
5440
  - Early works to 1800
5441
5441
  subject_genre_tesim:
5442
5442
  - Early works to 1800
5443
- subject_cartographics_sim:
5443
+ subject_cartographics_ssim:
5444
5444
  - "\n Scale not given\n (W 180°--E 180°/N 90°--S 90°).\n "
5445
5445
  subject_cartographics_tesim:
5446
5446
  - "\n Scale not given\n (W 180°--E 180°/N 90°--S 90°).\n "
5447
- content_metadata_type_sim:
5447
+ content_metadata_type_ssim:
5448
5448
  - image
5449
5449
  content_metadata_type_ssm:
5450
5450
  - image
@@ -5515,14 +5515,14 @@
5515
5515
  - A New and Exact Map of ASIA According to the Best Observations
5516
5516
  sort_title_tesim:
5517
5517
  - A New and Exact Map of ASIA According to the Best Observations
5518
- sort_title_si: A New and Exact Map of ASIA According to the Best Observations
5519
- personal_name_sim:
5518
+ sort_title_ssi: A New and Exact Map of ASIA According to the Best Observations
5519
+ personal_name_ssim:
5520
5520
  - Overton, Henry, fl. 1751-1764.
5521
- personal_name_teim:
5521
+ personal_name_tesim:
5522
5522
  - Overton, Henry, fl. 1751-1764.
5523
5523
  personal_name_ssm:
5524
5524
  - Overton, Henry, fl. 1751-1764.
5525
- genre_sim:
5525
+ genre_ssim:
5526
5526
  - map
5527
5527
  - Digital Maps
5528
5528
  - Early Maps
@@ -5558,15 +5558,15 @@
5558
5558
  The Terms of Use on these external sites always govern the data available there.
5559
5559
  Please consult with library staff if you have questions about data access and
5560
5560
  availability.
5561
- subject_topic_sim:
5561
+ subject_topic_ssim:
5562
5562
  - Asia--Maps
5563
5563
  subject_topic_tesim:
5564
5564
  - Asia--Maps
5565
- subject_cartographics_sim:
5565
+ subject_cartographics_ssim:
5566
5566
  - "\n [ca. 1:25,000,000].\n (W 21° --E 159°/N 90° --S 90°)\n "
5567
5567
  subject_cartographics_tesim:
5568
5568
  - "\n [ca. 1:25,000,000].\n (W 21° --E 159°/N 90° --S 90°)\n "
5569
- content_metadata_type_sim:
5569
+ content_metadata_type_ssim:
5570
5570
  - map
5571
5571
  content_metadata_type_ssm:
5572
5572
  - map
@@ -5639,14 +5639,14 @@
5639
5639
  - AMERICA SEPTENTRIONALIS
5640
5640
  sort_title_tesim:
5641
5641
  - AMERICA SEPTENTRIONALIS
5642
- sort_title_si: AMERICA SEPTENTRIONALIS
5643
- personal_name_sim:
5642
+ sort_title_ssi: AMERICA SEPTENTRIONALIS
5643
+ personal_name_ssim:
5644
5644
  - Müller, Johann Ulrich
5645
- personal_name_teim:
5645
+ personal_name_tesim:
5646
5646
  - Müller, Johann Ulrich
5647
5647
  personal_name_ssm:
5648
5648
  - Müller, Johann Ulrich
5649
- genre_sim:
5649
+ genre_ssim:
5650
5650
  - map
5651
5651
  - Digital Maps
5652
5652
  - Early Maps
@@ -5683,19 +5683,19 @@
5683
5683
  The Terms of Use on these external sites always govern the data available there.
5684
5684
  Please consult with library staff if you have questions about data access and
5685
5685
  availability.
5686
- subject_topic_sim:
5686
+ subject_topic_ssim:
5687
5687
  - California as an island--Maps
5688
5688
  - North America--Maps
5689
5689
  subject_topic_tesim:
5690
5690
  - California as an island--Maps
5691
5691
  - North America--Maps
5692
- subject_cartographics_sim:
5692
+ subject_cartographics_ssim:
5693
5693
  - "\n [ca.1:130,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
5694
5694
  \ "
5695
5695
  subject_cartographics_tesim:
5696
5696
  - "\n [ca.1:130,000,000]\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
5697
5697
  \ "
5698
- content_metadata_type_sim:
5698
+ content_metadata_type_ssim:
5699
5699
  - map
5700
5700
  content_metadata_type_ssm:
5701
5701
  - map
@@ -5773,18 +5773,18 @@
5773
5773
  sort_title_tesim:
5774
5774
  - L'AMERIQUE | Suivant les dernieres | Observations de l'Acade= | mie Royale des
5775
5775
  Sciences Seventh of 18 States
5776
- sort_title_si: L'AMERIQUE | Suivant les dernieres | Observations de l'Acade= | mie
5776
+ sort_title_ssi: L'AMERIQUE | Suivant les dernieres | Observations de l'Acade= | mie
5777
5777
  Royale des Sciences Seventh of 18 States
5778
- personal_name_sim:
5778
+ personal_name_ssim:
5779
5779
  - Gravé par Denise Macquart.
5780
5780
  - Buffier, Claude
5781
- personal_name_teim:
5781
+ personal_name_tesim:
5782
5782
  - Gravé par Denise Macquart.
5783
5783
  - Buffier, Claude
5784
5784
  personal_name_ssm:
5785
5785
  - Gravé par Denise Macquart.
5786
5786
  - Buffier, Claude
5787
- genre_sim:
5787
+ genre_ssim:
5788
5788
  - map
5789
5789
  genre_tesim:
5790
5790
  - map
@@ -5897,11 +5897,11 @@
5897
5897
  are governed by their own Terms of Use, as well as contractual accessrestrictions.
5898
5898
  The Terms of Use on these external sites always govern thedata available there.
5899
5899
  Please consult with library staff if you havequestions about data access and availability.
5900
- subject_cartographics_sim:
5900
+ subject_cartographics_ssim:
5901
5901
  - "\n [ca.1:90,000,000], [173\n "
5902
5902
  subject_cartographics_tesim:
5903
5903
  - "\n [ca.1:90,000,000], [173\n "
5904
- content_metadata_type_sim:
5904
+ content_metadata_type_ssim:
5905
5905
  - image
5906
5906
  content_metadata_type_ssm:
5907
5907
  - image
@@ -5981,16 +5981,16 @@
5981
5981
  sort_title_tesim:
5982
5982
  - HEMISPHERE OCCIDENTAL DU GLOBE TERRESTRE contenant L'AMERIQUE SEPTENT.LE et L'AMERIQUE
5983
5983
  M.LE et P.tie des TERRES ARCTIQUES et ANTARCTIQUES Subdivisées en leurs Regions.
5984
- sort_title_si: HEMISPHERE OCCIDENTAL DU GLOBE TERRESTRE contenant L'AMERIQUE SEPTENT.LE
5984
+ sort_title_ssi: HEMISPHERE OCCIDENTAL DU GLOBE TERRESTRE contenant L'AMERIQUE SEPTENT.LE
5985
5985
  et L'AMERIQUE M.LE et P.tie des TERRES ARCTIQUES et ANTARCTIQUES Subdivisées en
5986
5986
  leurs Regions.
5987
- personal_name_sim:
5987
+ personal_name_ssim:
5988
5988
  - Moulart-Sanson, Pierre, d. 1730
5989
- personal_name_teim:
5989
+ personal_name_tesim:
5990
5990
  - Moulart-Sanson, Pierre, d. 1730
5991
5991
  personal_name_ssm:
5992
5992
  - Moulart-Sanson, Pierre, d. 1730
5993
- genre_sim:
5993
+ genre_ssim:
5994
5994
  - map
5995
5995
  - Digital Maps
5996
5996
  - Early Maps
@@ -6030,17 +6030,17 @@
6030
6030
  The Terms of Use on these external sites always govern the data available there.
6031
6031
  Please consult with library staff if you have questions about data access and
6032
6032
  availability.
6033
- subject_topic_sim:
6033
+ subject_topic_ssim:
6034
6034
  - California as an island--Maps
6035
6035
  - Western Hemisphere--Maps
6036
6036
  subject_topic_tesim:
6037
6037
  - California as an island--Maps
6038
6038
  - Western Hemisphere--Maps
6039
- subject_cartographics_sim:
6039
+ subject_cartographics_ssim:
6040
6040
  - "\n [ca.1:140,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
6041
6041
  subject_cartographics_tesim:
6042
6042
  - "\n [ca.1:140,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
6043
- content_metadata_type_sim:
6043
+ content_metadata_type_ssim:
6044
6044
  - map
6045
6045
  content_metadata_type_ssm:
6046
6046
  - map
@@ -6110,15 +6110,15 @@
6110
6110
  sort_title_tesim:
6111
6111
  - 'GEOGRAPHISCHE UNIVERSAL - ZEIG UND SCHLAG-UHR : WEERELD-BEELDIGH WYS EN SLAG
6112
6112
  WERK'
6113
- sort_title_si: 'GEOGRAPHISCHE UNIVERSAL - ZEIG UND SCHLAG-UHR : WEERELD-BEELDIGH
6113
+ sort_title_ssi: 'GEOGRAPHISCHE UNIVERSAL - ZEIG UND SCHLAG-UHR : WEERELD-BEELDIGH
6114
6114
  WYS EN SLAG WERK'
6115
- personal_name_sim:
6115
+ personal_name_ssim:
6116
6116
  - Homann, Johann Baptist, 1663-1724
6117
- personal_name_teim:
6117
+ personal_name_tesim:
6118
6118
  - Homann, Johann Baptist, 1663-1724
6119
6119
  personal_name_ssm:
6120
6120
  - Homann, Johann Baptist, 1663-1724
6121
- genre_sim:
6121
+ genre_ssim:
6122
6122
  - map
6123
6123
  - Digital Maps
6124
6124
  - Early Maps
@@ -6157,11 +6157,11 @@
6157
6157
  The Terms of Use on these external sites always govern the data available there.
6158
6158
  Please consult with library staff if you have questions about data access and
6159
6159
  availability.
6160
- subject_cartographics_sim:
6160
+ subject_cartographics_ssim:
6161
6161
  - "\n (W 0° --E 0°/N 90° --N 90°)\n "
6162
6162
  subject_cartographics_tesim:
6163
6163
  - "\n (W 0° --E 0°/N 90° --N 90°)\n "
6164
- content_metadata_type_sim:
6164
+ content_metadata_type_ssim:
6165
6165
  - map
6166
6166
  content_metadata_type_ssm:
6167
6167
  - map
@@ -6242,15 +6242,15 @@
6242
6242
  sort_title_tesim:
6243
6243
  - Pascaart vertoonende de Zeecusten van Chili, Peru, Hispania, Nova, Nova Granada,
6244
6244
  en California.
6245
- sort_title_si: Pascaart vertoonende de Zeecusten van Chili, Peru, Hispania, Nova,
6245
+ sort_title_ssi: Pascaart vertoonende de Zeecusten van Chili, Peru, Hispania, Nova,
6246
6246
  Nova Granada, en California.
6247
- personal_name_sim:
6247
+ personal_name_ssim:
6248
6248
  - Doncker, Hendrick, 1626-1699
6249
- personal_name_teim:
6249
+ personal_name_tesim:
6250
6250
  - Doncker, Hendrick, 1626-1699
6251
6251
  personal_name_ssm:
6252
6252
  - Doncker, Hendrick, 1626-1699
6253
- genre_sim:
6253
+ genre_ssim:
6254
6254
  - map
6255
6255
  - Digital Maps
6256
6256
  - Early Maps
@@ -6296,19 +6296,19 @@
6296
6296
  The Terms of Use on these external sites always govern the data available there.
6297
6297
  Please consult with library staff if you have questions about data access and
6298
6298
  availability.
6299
- subject_topic_sim:
6299
+ subject_topic_ssim:
6300
6300
  - California as an island--Maps
6301
6301
  - Pacific Ocean--Maps
6302
6302
  subject_topic_tesim:
6303
6303
  - California as an island--Maps
6304
6304
  - Pacific Ocean--Maps
6305
- subject_cartographics_sim:
6305
+ subject_cartographics_ssim:
6306
6306
  - "\n [ca.1: 19,000,000]\n (W 92°15ʹ --W 77°10ʹ/N 18°30ʹ --N 7°10ʹ)\n
6307
6307
  \ "
6308
6308
  subject_cartographics_tesim:
6309
6309
  - "\n [ca.1: 19,000,000]\n (W 92°15ʹ --W 77°10ʹ/N 18°30ʹ --N 7°10ʹ)\n
6310
6310
  \ "
6311
- content_metadata_type_sim:
6311
+ content_metadata_type_ssim:
6312
6312
  - map
6313
6313
  content_metadata_type_ssm:
6314
6314
  - map
@@ -6426,22 +6426,22 @@
6426
6426
  - Mappe-monde pour connoitre les progŕes & les conquestes les plus remarquables
6427
6427
  des Provinces-Vnies, ainsy que celles des Compagnies d'Orient et d'Occident et
6428
6428
  les païs quelles possédent dans l'un et dans l'autre hemisphere
6429
- sort_title_si: Mappe-monde pour connoitre les progŕes & les conquestes les plus
6429
+ sort_title_ssi: Mappe-monde pour connoitre les progŕes & les conquestes les plus
6430
6430
  remarquables des Provinces-Vnies, ainsy que celles des Compagnies d'Orient et
6431
6431
  d'Occident et les païs quelles possédent dans l'un et dans l'autre hemisphere
6432
- personal_name_sim:
6432
+ personal_name_ssim:
6433
6433
  - Chatelain, Henri Abraham
6434
- personal_name_teim:
6434
+ personal_name_tesim:
6435
6435
  - Chatelain, Henri Abraham
6436
6436
  personal_name_ssm:
6437
6437
  - Chatelain, Henri Abraham
6438
- language_sim:
6438
+ language_ssim:
6439
6439
  - French
6440
- language_teim:
6440
+ language_tesim:
6441
6441
  - French
6442
6442
  language_ssm:
6443
6443
  - French
6444
- genre_sim:
6444
+ genre_ssim:
6445
6445
  - map
6446
6446
  - Early maps.
6447
6447
  - Digital maps.
@@ -6479,19 +6479,19 @@
6479
6479
  ou, nouvelle introduction à l''histoire, à la chronologie & à la géographie ancienne
6480
6480
  & moderne ..., Vol. 1 [Map 12]. -- Amsterdam, 1732-39. Final edition of Vol 1.
6481
6481
  dated 1739.'
6482
- subject_topic_sim:
6482
+ subject_topic_ssim:
6483
6483
  - World maps
6484
6484
  subject_topic_tesim:
6485
6485
  - World maps
6486
- subject_genre_sim:
6486
+ subject_genre_ssim:
6487
6487
  - Early works to 1800
6488
6488
  subject_genre_tesim:
6489
6489
  - Early works to 1800
6490
- subject_cartographics_sim:
6490
+ subject_cartographics_ssim:
6491
6491
  - "\n Scale [ca. 1:60,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
6492
6492
  subject_cartographics_tesim:
6493
6493
  - "\n Scale [ca. 1:60,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
6494
- content_metadata_type_sim:
6494
+ content_metadata_type_ssim:
6495
6495
  - map
6496
6496
  content_metadata_type_ssm:
6497
6497
  - map
@@ -6566,14 +6566,14 @@
6566
6566
  - AMERICÆ
6567
6567
  sort_title_tesim:
6568
6568
  - AMERICÆ
6569
- sort_title_si: AMERICÆ
6570
- personal_name_sim:
6569
+ sort_title_ssi: AMERICÆ
6570
+ personal_name_ssim:
6571
6571
  - Peeters, Jacques, 1637-1695
6572
- personal_name_teim:
6572
+ personal_name_tesim:
6573
6573
  - Peeters, Jacques, 1637-1695
6574
6574
  personal_name_ssm:
6575
6575
  - Peeters, Jacques, 1637-1695
6576
- genre_sim:
6576
+ genre_ssim:
6577
6577
  - map
6578
6578
  - Digital Maps
6579
6579
  - Early Maps
@@ -6617,17 +6617,17 @@
6617
6617
  The Terms of Use on these external sites always govern the data available there.
6618
6618
  Please consult with library staff if you have questions about data access and
6619
6619
  availability.
6620
- subject_topic_sim:
6620
+ subject_topic_ssim:
6621
6621
  - America--Maps
6622
6622
  - California as an island--Maps
6623
6623
  subject_topic_tesim:
6624
6624
  - America--Maps
6625
6625
  - California as an island--Maps
6626
- subject_cartographics_sim:
6626
+ subject_cartographics_ssim:
6627
6627
  - "\n [ca.1:150,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
6628
6628
  subject_cartographics_tesim:
6629
6629
  - "\n [ca.1:150,000,000]\n (W 160° --E 20°/N 90° --S 90°)\n "
6630
- content_metadata_type_sim:
6630
+ content_metadata_type_ssim:
6631
6631
  - map
6632
6632
  content_metadata_type_ssm:
6633
6633
  - map
@@ -6719,9 +6719,9 @@
6719
6719
  sort_title_tesim:
6720
6720
  - A Map of the WORLD with the Ships DUKE & DUTCHESS Tract Round it, from 1708 to
6721
6721
  1711. Second of 2 States
6722
- sort_title_si: A Map of the WORLD with the Ships DUKE & DUTCHESS Tract Round it,
6722
+ sort_title_ssi: A Map of the WORLD with the Ships DUKE & DUTCHESS Tract Round it,
6723
6723
  from 1708 to 1711. Second of 2 States
6724
- personal_name_sim:
6724
+ personal_name_ssim:
6725
6725
  - "[Woodes Rogers]."
6726
6726
  - Rogers, Woodes
6727
6727
  - Rogers, Woodes
@@ -6733,7 +6733,7 @@
6733
6733
  - Gaete, Hendrik van de
6734
6734
  - Sewel, W.
6735
6735
  - Hondt, Abraham de
6736
- personal_name_teim:
6736
+ personal_name_tesim:
6737
6737
  - "[Woodes Rogers]."
6738
6738
  - Rogers, Woodes
6739
6739
  - Rogers, Woodes
@@ -6757,7 +6757,7 @@
6757
6757
  - Gaete, Hendrik van de
6758
6758
  - Sewel, W.
6759
6759
  - Hondt, Abraham de
6760
- genre_sim:
6760
+ genre_ssim:
6761
6761
  - map
6762
6762
  - Book Map
6763
6763
  genre_tesim:
@@ -6798,7 +6798,7 @@
6798
6798
  are governed by their own Terms of Use, as well as contractual accessrestrictions.
6799
6799
  The Terms of Use on these external sites always govern thedata available there.
6800
6800
  Please consult with library staff if you havequestions about data access and availability.
6801
- subject_topic_sim:
6801
+ subject_topic_ssim:
6802
6802
  - World--Maps--1718
6803
6803
  - World--Maps--to 180
6804
6804
  - California as an island--Maps--1718
@@ -6806,11 +6806,11 @@
6806
6806
  - World--Maps--1718
6807
6807
  - World--Maps--to 180
6808
6808
  - California as an island--Maps--1718
6809
- subject_cartographics_sim:
6809
+ subject_cartographics_ssim:
6810
6810
  - "\n [ca. 1:140,000,000].\n (W 180° --E 180°/N 85° --S 85°)\n "
6811
6811
  subject_cartographics_tesim:
6812
6812
  - "\n [ca. 1:140,000,000].\n (W 180° --E 180°/N 85° --S 85°)\n "
6813
- content_metadata_type_sim:
6813
+ content_metadata_type_ssim:
6814
6814
  - image
6815
6815
  content_metadata_type_ssm:
6816
6816
  - image
@@ -6896,14 +6896,14 @@
6896
6896
  - Figura prima del capitolo IV., ossia della divisione della terra
6897
6897
  sort_title_tesim:
6898
6898
  - Mappa mondo
6899
- sort_title_si: Mappa mondo
6900
- language_sim:
6899
+ sort_title_ssi: Mappa mondo
6900
+ language_ssim:
6901
6901
  - Italian
6902
- language_teim:
6902
+ language_tesim:
6903
6903
  - Italian
6904
6904
  language_ssm:
6905
6905
  - Italian
6906
- genre_sim:
6906
+ genre_ssim:
6907
6907
  - map
6908
6908
  - Early maps.
6909
6909
  - Digital maps.
@@ -6924,15 +6924,15 @@
6924
6924
  - Text in Italian.
6925
6925
  note_Local note_tesim:
6926
6926
  - McLaughlin map number 1241.
6927
- subject_topic_sim:
6927
+ subject_topic_ssim:
6928
6928
  - World maps
6929
6929
  subject_topic_tesim:
6930
6930
  - World maps
6931
- subject_cartographics_sim:
6931
+ subject_cartographics_ssim:
6932
6932
  - "\n Scale [ca. 1:200,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
6933
6933
  subject_cartographics_tesim:
6934
6934
  - "\n Scale [ca. 1:200,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
6935
- content_metadata_type_sim:
6935
+ content_metadata_type_ssim:
6936
6936
  - image
6937
6937
  content_metadata_type_ssm:
6938
6938
  - image
@@ -7013,15 +7013,15 @@
7013
7013
  sort_title_tesim:
7014
7014
  - A New Map of the World Shewing the Course of Sr. Francis Drake, William Shouten
7015
7015
  and Capt. William Dampiers Voyages Round it.
7016
- sort_title_si: A New Map of the World Shewing the Course of Sr. Francis Drake, William
7016
+ sort_title_ssi: A New Map of the World Shewing the Course of Sr. Francis Drake, William
7017
7017
  Shouten and Capt. William Dampiers Voyages Round it.
7018
- personal_name_sim:
7018
+ personal_name_ssim:
7019
7019
  - Moll, Herman, -1732
7020
- personal_name_teim:
7020
+ personal_name_tesim:
7021
7021
  - Moll, Herman, -1732
7022
7022
  personal_name_ssm:
7023
7023
  - Moll, Herman, -1732
7024
- genre_sim:
7024
+ genre_ssim:
7025
7025
  - Digital Maps
7026
7026
  - Early Maps
7027
7027
  - map
@@ -7041,17 +7041,17 @@
7041
7041
  around world. Additional islands and place names added in Pacific Ocean on the
7042
7042
  western hemisphere as well as on the eastern hemisphere in Asia and around Australia.
7043
7043
  California now includes the label N. Albion.'
7044
- subject_topic_sim:
7044
+ subject_topic_ssim:
7045
7045
  - California as an island--Maps
7046
7046
  - World maps
7047
7047
  subject_topic_tesim:
7048
7048
  - California as an island--Maps
7049
7049
  - World maps
7050
- subject_cartographics_sim:
7050
+ subject_cartographics_ssim:
7051
7051
  - "\n (W 180° --E 180°/N 85° --S 85°)\n "
7052
7052
  subject_cartographics_tesim:
7053
7053
  - "\n (W 180° --E 180°/N 85° --S 85°)\n "
7054
- content_metadata_type_sim:
7054
+ content_metadata_type_ssim:
7055
7055
  - map
7056
7056
  content_metadata_type_ssm:
7057
7057
  - map
@@ -7142,17 +7142,17 @@
7142
7142
  les vns des autres LES ESTATS suivant qu'ils appartiennent presentemet aux FRANÇOIS,
7143
7143
  CASTILLANS, ANGLOIS, SUEDOIS, DANOIS, HOLLANDOIS. Tirée des Relations de toutes
7144
7144
  ces Nations Par le Sr. Sanson, Geographe Ordinaire du Roy
7145
- sort_title_si: AMERIQUE SEPTENTRIONALE divisée en ses principales parties, ou sont
7145
+ sort_title_ssi: AMERIQUE SEPTENTRIONALE divisée en ses principales parties, ou sont
7146
7146
  distingués les vns des autres LES ESTATS suivant qu'ils appartiennent presentemet
7147
7147
  aux FRANÇOIS, CASTILLANS, ANGLOIS, SUEDOIS, DANOIS, HOLLANDOIS. Tirée des Relations
7148
7148
  de toutes ces Nations Par le Sr. Sanson, Geographe Ordinaire du Roy
7149
- personal_name_sim:
7149
+ personal_name_ssim:
7150
7150
  - Jaillot, Alexis Hubert, 1632?-1712
7151
- personal_name_teim:
7151
+ personal_name_tesim:
7152
7152
  - Jaillot, Alexis Hubert, 1632?-1712
7153
7153
  personal_name_ssm:
7154
7154
  - Jaillot, Alexis Hubert, 1632?-1712
7155
- genre_sim:
7155
+ genre_ssim:
7156
7156
  - map
7157
7157
  - Digital Maps
7158
7158
  - Early Maps
@@ -7225,19 +7225,19 @@
7225
7225
  The Terms of Use on these external sites always govern the data available there.
7226
7226
  Please consult with library staff if you have questions about data access and
7227
7227
  availability.
7228
- subject_topic_sim:
7228
+ subject_topic_ssim:
7229
7229
  - California as an island--Maps
7230
7230
  - North America--Maps
7231
7231
  subject_topic_tesim:
7232
7232
  - California as an island--Maps
7233
7233
  - North America--Maps
7234
- subject_cartographics_sim:
7234
+ subject_cartographics_ssim:
7235
7235
  - "\n [ca. 1:16,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
7236
7236
  \ "
7237
7237
  subject_cartographics_tesim:
7238
7238
  - "\n [ca. 1:16,000,000].\n (W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)\n
7239
7239
  \ "
7240
- content_metadata_type_sim:
7240
+ content_metadata_type_ssim:
7241
7241
  - map
7242
7242
  content_metadata_type_ssm:
7243
7243
  - map
@@ -7326,21 +7326,21 @@
7326
7326
  sort_title_tesim:
7327
7327
  - Mapa mundi, con los meridianos, y paralelos, iguales como los del globo tere-
7328
7328
  y arreglado a las mejores, y ultimas relaciones
7329
- sort_title_si: Mapa mundi, con los meridianos, y paralelos, iguales como los del
7329
+ sort_title_ssi: Mapa mundi, con los meridianos, y paralelos, iguales como los del
7330
7330
  globo tere- y arreglado a las mejores, y ultimas relaciones
7331
- personal_name_sim:
7331
+ personal_name_ssim:
7332
7332
  - Minguet é Irol, Pablo
7333
- personal_name_teim:
7333
+ personal_name_tesim:
7334
7334
  - Minguet é Irol, Pablo
7335
7335
  personal_name_ssm:
7336
7336
  - Minguet é Irol, Pablo
7337
- language_sim:
7337
+ language_ssim:
7338
7338
  - Spanish; Castilian
7339
- language_teim:
7339
+ language_tesim:
7340
7340
  - Spanish; Castilian
7341
7341
  language_ssm:
7342
7342
  - Spanish; Castilian
7343
- genre_sim:
7343
+ genre_ssim:
7344
7344
  - map
7345
7345
  - Early maps.
7346
7346
  - Digital maps.
@@ -7365,19 +7365,19 @@
7365
7365
  - Text in Spanish.
7366
7366
  note_Local note_tesim:
7367
7367
  - McLaughlin map number 1176.
7368
- subject_topic_sim:
7368
+ subject_topic_ssim:
7369
7369
  - World maps
7370
7370
  subject_topic_tesim:
7371
7371
  - World maps
7372
- subject_genre_sim:
7372
+ subject_genre_ssim:
7373
7373
  - Early works to 1800
7374
7374
  subject_genre_tesim:
7375
7375
  - Early works to 1800
7376
- subject_cartographics_sim:
7376
+ subject_cartographics_ssim:
7377
7377
  - "\n Scale [ca. 1:300,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
7378
7378
  subject_cartographics_tesim:
7379
7379
  - "\n Scale [ca. 1:300,000,000]\n (W 180°--E 180°/N 90°--S 90°).\n "
7380
- content_metadata_type_sim:
7380
+ content_metadata_type_ssim:
7381
7381
  - image
7382
7382
  content_metadata_type_ssm:
7383
7383
  - image
@@ -7456,14 +7456,14 @@
7456
7456
  - a Map of the Middle Part of AMERICA
7457
7457
  sort_title_tesim:
7458
7458
  - a Map of the Middle Part of AMERICA
7459
- sort_title_si: a Map of the Middle Part of AMERICA
7460
- personal_name_sim:
7459
+ sort_title_ssi: a Map of the Middle Part of AMERICA
7460
+ personal_name_ssim:
7461
7461
  - Moll, Herman, d. 1732
7462
- personal_name_teim:
7462
+ personal_name_tesim:
7463
7463
  - Moll, Herman, d. 1732
7464
7464
  personal_name_ssm:
7465
7465
  - Moll, Herman, d. 1732
7466
- genre_sim:
7466
+ genre_ssim:
7467
7467
  - map
7468
7468
  - Digital Maps
7469
7469
  - Early Maps
@@ -7519,17 +7519,17 @@
7519
7519
  The Terms of Use on these external sites always govern the data available there.
7520
7520
  Please consult with library staff if you have questions about data access and
7521
7521
  availability.
7522
- subject_topic_sim:
7522
+ subject_topic_ssim:
7523
7523
  - California as an island--Maps
7524
7524
  subject_topic_tesim:
7525
7525
  - California as an island--Maps
7526
- subject_cartographics_sim:
7526
+ subject_cartographics_ssim:
7527
7527
  - "\n [ca. 1:33,500,000].\n (W 92°15ʹ --W 77°10ʹ/N 18°30ʹ --N 7°10ʹ)\n
7528
7528
  \ "
7529
7529
  subject_cartographics_tesim:
7530
7530
  - "\n [ca. 1:33,500,000].\n (W 92°15ʹ --W 77°10ʹ/N 18°30ʹ --N 7°10ʹ)\n
7531
7531
  \ "
7532
- content_metadata_type_sim:
7532
+ content_metadata_type_ssim:
7533
7533
  - map
7534
7534
  content_metadata_type_ssm:
7535
7535
  - map