blacklight-spotlight 0.17.1 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -7
  3. data/Rakefile +22 -36
  4. data/app/assets/javascripts/spotlight/blocks/solr_documents_block.js +1 -1
  5. data/app/assets/javascripts/spotlight/search_typeahead.js +1 -1
  6. data/app/assets/javascripts/spotlight/spotlight.js +3 -9
  7. data/app/assets/stylesheets/spotlight/_footer.scss +2 -19
  8. data/app/controllers/concerns/spotlight/base.rb +2 -2
  9. data/app/controllers/concerns/spotlight/catalog.rb +7 -5
  10. data/app/controllers/concerns/spotlight/controller.rb +4 -4
  11. data/app/controllers/spotlight/application_controller.rb +2 -0
  12. data/app/controllers/spotlight/browse_controller.rb +1 -2
  13. data/app/controllers/spotlight/catalog_controller.rb +8 -8
  14. data/app/controllers/spotlight/concerns/application_controller.rb +59 -0
  15. data/app/controllers/spotlight/dashboards_controller.rb +1 -2
  16. data/app/controllers/spotlight/home_pages_controller.rb +1 -1
  17. data/app/controllers/spotlight/pages_controller.rb +1 -2
  18. data/app/controllers/spotlight/resources/upload_controller.rb +3 -3
  19. data/app/controllers/spotlight/resources_controller.rb +3 -3
  20. data/app/controllers/spotlight/searches_controller.rb +1 -1
  21. data/app/helpers/spotlight/application_helper.rb +3 -7
  22. data/app/helpers/spotlight/main_app_helpers.rb +10 -29
  23. data/app/helpers/spotlight/pages_helper.rb +1 -1
  24. data/app/jobs/spotlight/reindex_job.rb +2 -3
  25. data/app/models/concerns/spotlight/access_controls_enforcement_search_builder.rb +34 -0
  26. data/app/models/concerns/spotlight/exhibit_documents.rb +2 -3
  27. data/app/models/concerns/spotlight/sitemap.rb +1 -1
  28. data/app/models/concerns/spotlight/solr_document/uploaded_resource.rb +1 -2
  29. data/app/models/sir_trevor_rails/blocks/browse_block.rb +7 -1
  30. data/app/models/sir_trevor_rails/blocks/textable.rb +2 -1
  31. data/app/models/spotlight/ability.rb +2 -1
  32. data/app/models/spotlight/contact_form.rb +1 -1
  33. data/app/models/spotlight/custom_field.rb +7 -15
  34. data/app/models/spotlight/field_metadata.rb +1 -1
  35. data/app/models/spotlight/resource.rb +2 -1
  36. data/app/models/spotlight/search.rb +1 -1
  37. data/app/values/custom_field_name.rb +36 -0
  38. data/app/views/blacklight/nav/_saved_searches.html.erb +1 -1
  39. data/app/views/blacklight/nav/_search_history.html.erb +1 -1
  40. data/app/views/catalog/_save_search.html.erb +1 -1
  41. data/app/views/catalog/_search_form.html.erb +1 -1
  42. data/app/views/layouts/spotlight/spotlight.html.erb +1 -1
  43. data/app/views/shared/_site_sidebar.html.erb +2 -2
  44. data/app/views/spotlight/about_pages/_empty.html.erb +1 -1
  45. data/app/views/spotlight/appearances/edit.html.erb +1 -1
  46. data/app/views/spotlight/catalog/_document_visibility_control.html.erb +1 -1
  47. data/app/views/spotlight/catalog/_edit_default.html.erb +4 -4
  48. data/app/views/spotlight/dashboards/analytics.html.erb +1 -1
  49. data/app/views/spotlight/exhibits/_missing_exhibits.html.erb +1 -1
  50. data/app/views/spotlight/feature_pages/_empty.html.erb +1 -1
  51. data/app/views/spotlight/home_pages/_empty.html.erb +2 -2
  52. data/app/views/spotlight/pages/_form.html.erb +1 -1
  53. data/app/views/spotlight/pages/_order_pages.html.erb +1 -1
  54. data/app/views/spotlight/resources/_missing_external_resources_partials.html.erb +1 -1
  55. data/app/views/spotlight/searches/_form.html.erb +1 -1
  56. data/app/views/spotlight/shared/_curation_sidebar.html.erb +2 -2
  57. data/config/locales/spotlight.en.yml +3 -3
  58. data/config/routes.rb +13 -9
  59. data/db/migrate/20160329215014_add_readonly_to_custom_fields.rb +5 -0
  60. data/lib/generators/spotlight/install_generator.rb +4 -4
  61. data/lib/spotlight/engine.rb +6 -1
  62. data/lib/spotlight/version.rb +1 -1
  63. data/spec/controllers/spotlight/about_pages_controller_spec.rb +4 -4
  64. data/spec/controllers/spotlight/application_controller_spec.rb +1 -1
  65. data/spec/controllers/spotlight/browse_controller_spec.rb +0 -2
  66. data/spec/controllers/spotlight/catalog_controller_spec.rb +103 -17
  67. data/spec/controllers/spotlight/dashboards_controller_spec.rb +1 -1
  68. data/spec/controllers/spotlight/feature_pages_controller_spec.rb +0 -2
  69. data/spec/controllers/spotlight/home_pages_controller_spec.rb +0 -2
  70. data/spec/controllers/spotlight/resources/upload_controller_spec.rb +1 -1
  71. data/spec/controllers/spotlight/resources_controller_spec.rb +1 -1
  72. data/spec/controllers/spotlight/search_configurations_controller_spec.rb +1 -1
  73. data/spec/features/add_custom_field_metadata_spec.rb +16 -3
  74. data/spec/features/catalog_spec.rb +2 -2
  75. data/spec/features/edit_search_fields_spec.rb +1 -1
  76. data/spec/features/exhibits/add_tags_spec.rb +2 -2
  77. data/spec/features/item_admin_spec.rb +5 -5
  78. data/spec/features/javascript/reindex_monitor_spec.rb +1 -1
  79. data/spec/features/javascript/search_context_spec.rb +4 -2
  80. data/spec/features/report_a_problem_spec.rb +2 -2
  81. data/spec/features/slideshow_spec.rb +1 -1
  82. data/spec/fixtures/sample_solr_documents.yml +44 -44
  83. data/spec/helpers/spotlight/application_helper_spec.rb +2 -23
  84. data/spec/helpers/spotlight/main_app_helpers_spec.rb +4 -62
  85. data/spec/helpers/spotlight/pages_helper_spec.rb +1 -2
  86. data/spec/models/sir_trevor_rails/blocks/browse_block_spec.rb +22 -0
  87. data/spec/{lib/spotlight/catalog/access_controls_enforcement_spec.rb → models/spotlight/access_controls_enforcement_search_builder_spec.rb} +5 -18
  88. data/spec/models/spotlight/contact_form_spec.rb +35 -0
  89. data/spec/models/spotlight/custom_field_spec.rb +6 -0
  90. data/spec/models/spotlight/exhibit_spec.rb +3 -2
  91. data/spec/models/spotlight/search_spec.rb +2 -2
  92. data/spec/spec_helper.rb +7 -0
  93. data/spec/support/helpers/controller_level_helpers.rb +13 -0
  94. data/spec/test_app_templates/catalog_controller.rb +1 -0
  95. data/spec/test_app_templates/lib/generators/test_app_generator.rb +9 -1
  96. data/spec/views/shared/_footer.html.erb_spec.rb +3 -3
  97. data/spec/views/spotlight/about_pages/index.html.erb_spec.rb +7 -11
  98. data/spec/views/spotlight/catalog/admin.html.erb_spec.rb +3 -1
  99. data/spec/views/spotlight/home_pages/_empty.html.erb_spec.rb +1 -1
  100. data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +2 -1
  101. data/spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb +2 -1
  102. data/spec/views/spotlight/pages/index.html.erb_spec.rb +2 -4
  103. data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -2
  104. data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +2 -1
  105. data/spec/views/spotlight/searches/_search.html.erb_spec.rb +1 -1
  106. data/spec/views/spotlight/searches/edit.html.erb_spec.rb +1 -1
  107. metadata +30 -25
  108. data/app/controllers/concerns/spotlight/catalog/access_controls_enforcement.rb +0 -47
  109. data/config/jetty.yml +0 -6
  110. data/spec/test_app_templates/Gemfile.extra +0 -0
@@ -16,7 +16,7 @@ describe Spotlight::DashboardsController, type: :controller do
16
16
  it 'loads the exhibit' do
17
17
  exhibit.blacklight_configuration.index = { timestamp_field: 'timestamp_field' }
18
18
  exhibit.save!
19
- expect(controller).to receive(:search_results).with({ sort: 'timestamp_field desc' }, kind_of(Array)).and_return([double(:response), [{ id: 1 }]])
19
+ expect(controller).to receive(:search_results).with(sort: 'timestamp_field desc').and_return([double(:response), [{ id: 1 }]])
20
20
  expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
21
21
  expect(controller).to receive(:add_breadcrumb).with('Dashboard', exhibit_dashboard_path(exhibit))
22
22
  get :show, exhibit_id: exhibit.id
@@ -2,8 +2,6 @@ require 'spec_helper'
2
2
  describe Spotlight::FeaturePagesController, type: :controller do
3
3
  routes { Spotlight::Engine.routes }
4
4
 
5
- it { is_expected.to be_a Spotlight::Catalog::AccessControlsEnforcement }
6
-
7
5
  # This should return the minimal set of attributes required to create a valid
8
6
  # Page. As you add validations to Page, be sure to
9
7
  # adjust the attributes here as well.
@@ -6,8 +6,6 @@ describe Spotlight::HomePagesController, type: :controller do
6
6
  let(:exhibit) { FactoryGirl.create(:exhibit) }
7
7
  let(:page) { exhibit.home_page }
8
8
 
9
- it { is_expected.to be_a Spotlight::Catalog::AccessControlsEnforcement }
10
-
11
9
  describe 'when signed in as a curator' do
12
10
  let(:user) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
13
11
  before do
@@ -33,7 +33,7 @@ describe Spotlight::Resources::UploadController, type: :controller do
33
33
  it 'redirects to the item admin page' do
34
34
  post :create, exhibit_id: exhibit, resources_upload: { url: 'url-data' }
35
35
  expect(flash[:notice]).to eq 'Object uploaded successfully.'
36
- expect(response).to redirect_to admin_exhibit_catalog_index_path(exhibit, sort: :timestamp)
36
+ expect(response).to redirect_to admin_exhibit_catalog_path(exhibit, sort: :timestamp)
37
37
  end
38
38
  it 'redirects to the upload form when the add-and-continue parameter is present' do
39
39
  post :create, exhibit_id: exhibit, 'add-and-continue' => 'true', resources_upload: { url: 'url-data' }
@@ -66,7 +66,7 @@ describe Spotlight::ResourcesController, type: :controller do
66
66
  it 'triggers a reindex' do
67
67
  expect_any_instance_of(Spotlight::Exhibit).to receive(:reindex_later)
68
68
  post :reindex_all, exhibit_id: exhibit
69
- expect(response).to redirect_to admin_exhibit_catalog_index_path(exhibit)
69
+ expect(response).to redirect_to admin_exhibit_catalog_path(exhibit)
70
70
  expect(flash[:notice]).to include 'Reindexing'
71
71
  end
72
72
  end
@@ -49,7 +49,7 @@ describe Spotlight::SearchConfigurationsController, type: :controller do
49
49
  it 'assigns the field metadata' do
50
50
  get :edit, exhibit_id: exhibit
51
51
  expect(assigns(:field_metadata)).to be_an_instance_of(Spotlight::FieldMetadata)
52
- expect(assigns(:field_metadata).repository).to eq controller.repository
52
+ expect(assigns(:field_metadata).repository).to be_an_instance_of(controller.repository.class)
53
53
  expect(assigns(:field_metadata).blacklight_config).to eq controller.blacklight_config
54
54
  end
55
55
  end
@@ -12,7 +12,7 @@ describe 'Adding custom metadata field data', type: :feature do
12
12
  end
13
13
 
14
14
  it 'works' do
15
- visit spotlight.exhibit_catalog_path(exhibit, 'dq287tq6352')
15
+ visit spotlight.exhibit_solr_document_path(exhibit, 'dq287tq6352')
16
16
 
17
17
  expect(page).to have_link 'Edit'
18
18
 
@@ -25,13 +25,26 @@ describe 'Adding custom metadata field data', type: :feature do
25
25
  expect(::SolrDocument.find('dq287tq6352').sidecar(exhibit).data).to include 'field_name_tesim' => 'My new custom field value'
26
26
  sleep(1) # The data isn't commited to solr immediately.
27
27
 
28
- visit spotlight.exhibit_catalog_path(exhibit, 'dq287tq6352')
28
+ visit spotlight.exhibit_solr_document_path(exhibit, 'dq287tq6352')
29
29
  expect(page).to have_content 'Some Field'
30
30
  expect(page).to have_content 'My new custom field value'
31
31
  end
32
32
 
33
+ context 'when given a read-only field' do
34
+ let(:custom_field) { FactoryGirl.create(:custom_field, exhibit: exhibit, readonly_field: true) }
35
+ it 'can not be edited' do
36
+ visit spotlight.exhibit_solr_document_path(exhibit, 'dq287tq6352')
37
+
38
+ expect(page).to have_link 'Edit'
39
+
40
+ click_on 'Edit'
41
+
42
+ expect(page).to have_selector 'input[type=text][readonly]'
43
+ end
44
+ end
45
+
33
46
  it 'has a public toggle' do
34
- visit spotlight.exhibit_catalog_path(exhibit, 'dq287tq6352')
47
+ visit spotlight.exhibit_solr_document_path(exhibit, 'dq287tq6352')
35
48
 
36
49
  expect(page).not_to have_selector '.blacklight-private'
37
50
 
@@ -21,13 +21,13 @@ describe 'Catalog', type: :feature do
21
21
  end
22
22
 
23
23
  it "has a 'Item Visiblity' facet" do
24
- visit spotlight.exhibit_catalog_index_path(exhibit)
24
+ visit spotlight.search_exhibit_catalog_path(exhibit)
25
25
  expect(page).to have_selector '.panel-title', text: 'Item Visibility'
26
26
  end
27
27
  end
28
28
  describe 'Non-spotlight #show' do
29
29
  it 'is able to render without exhibit context' do
30
- visit catalog_path('dq287tq6352')
30
+ visit solr_document_path('dq287tq6352')
31
31
  expect(page).to have_css 'h1', text: "L'AMERIQUE"
32
32
  end
33
33
  end
@@ -59,7 +59,7 @@ describe 'Search Administration', type: :feature do
59
59
  uncheck 'blacklight_configuration_sort_fields_title_enabled'
60
60
  uncheck 'blacklight_configuration_sort_fields_identifier_enabled'
61
61
 
62
- find('#blacklight_configuration_sort_fields_type_weight').set('100')
62
+ find('#blacklight_configuration_sort_fields_type_weight', visible: false).set('100')
63
63
 
64
64
  click_button 'Save changes'
65
65
 
@@ -10,7 +10,7 @@ describe 'Add tags to an item in an exhibit', type: :feature do
10
10
  end
11
11
 
12
12
  it 'changes and display the of tags' do
13
- visit spotlight.exhibit_catalog_path(exhibit, 'dq287tq6352')
13
+ visit spotlight.exhibit_solr_document_path(exhibit, 'dq287tq6352')
14
14
 
15
15
  expect(page).to have_link 'Edit'
16
16
 
@@ -20,7 +20,7 @@ describe 'Add tags to an item in an exhibit', type: :feature do
20
20
 
21
21
  click_on 'Save changes'
22
22
 
23
- visit spotlight.exhibit_catalog_path(exhibit, 'dq287tq6352')
23
+ visit spotlight.exhibit_solr_document_path(exhibit, 'dq287tq6352')
24
24
 
25
25
  within('dd.blacklight-exhibit_tags') do
26
26
  expect(page).to have_selector 'a', text: 'One'
@@ -11,11 +11,11 @@ describe 'Item Administration', type: :feature do
11
11
 
12
12
  describe 'admin' do
13
13
  it "does not have a 'Save this search' button" do
14
- visit spotlight.admin_exhibit_catalog_index_path(exhibit)
14
+ visit spotlight.admin_exhibit_catalog_path(exhibit)
15
15
  expect(page).not_to have_css('button', text: 'Save this search')
16
16
  end
17
17
  it 'has catalog items' do
18
- visit spotlight.admin_exhibit_catalog_index_path(exhibit)
18
+ visit spotlight.admin_exhibit_catalog_path(exhibit)
19
19
  expect(page).to have_css('h1 small', text: 'Items')
20
20
  expect(page).to have_css('table#documents')
21
21
  expect(page).to have_css('.pagination')
@@ -26,7 +26,7 @@ describe 'Item Administration', type: :feature do
26
26
  end
27
27
 
28
28
  it 'has a public/private toggle' do
29
- visit spotlight.admin_exhibit_catalog_index_path(exhibit)
29
+ visit spotlight.admin_exhibit_catalog_path(exhibit)
30
30
  item = first('tr[itemscope]')
31
31
  expect(item).to have_button 'Make Private'
32
32
  item.click_button 'Make Private'
@@ -37,7 +37,7 @@ describe 'Item Administration', type: :feature do
37
37
  end
38
38
 
39
39
  it "toggles the 'blacklight-private' label", js: true do
40
- visit spotlight.admin_exhibit_catalog_index_path(exhibit)
40
+ visit spotlight.admin_exhibit_catalog_path(exhibit)
41
41
  # The label should be toggled when the checkbox is clicked
42
42
  expect(page).to_not have_css('tr.blacklight-private')
43
43
  within 'tr[itemscope]:first-child' do
@@ -47,7 +47,7 @@ describe 'Item Administration', type: :feature do
47
47
 
48
48
  # The label should show up on page load
49
49
  expect(page).to have_css('tr.blacklight-private')
50
- visit spotlight.admin_exhibit_catalog_index_path(exhibit)
50
+ visit spotlight.admin_exhibit_catalog_path(exhibit)
51
51
  within 'tr[itemscope]:first-child' do
52
52
  find("input.toggle_visibility[type='checkbox']").click
53
53
  end
@@ -9,7 +9,7 @@ feature 'Reindex Monitor', js: true do
9
9
 
10
10
  before do
11
11
  login_as exhibit_curator
12
- visit spotlight.admin_exhibit_catalog_index_path(exhibit)
12
+ visit spotlight.admin_exhibit_catalog_path(exhibit)
13
13
  end
14
14
 
15
15
  it 'is rendered on the item admin page' do
@@ -24,7 +24,8 @@ feature 'Search contexts' do
24
24
  }
25
25
  }
26
26
  }
27
- }].to_json
27
+ }
28
+ ].to_json
28
29
  exhibit.home_page.save
29
30
 
30
31
  visit spotlight.exhibit_home_page_path(exhibit, exhibit.home_page)
@@ -53,7 +54,8 @@ feature 'Search contexts' do
53
54
  }
54
55
  }
55
56
  }
56
- }].to_json
57
+ }
58
+ ].to_json
57
59
  feature_page.save
58
60
 
59
61
  visit spotlight.exhibit_feature_page_path(exhibit, feature_page)
@@ -21,9 +21,9 @@ describe 'Report a Problem', type: :feature do
21
21
  end
22
22
 
23
23
  it 'accepts a problem report', js: true do
24
- visit spotlight.exhibit_catalog_path(exhibit, id: 'dq287tq6352')
24
+ visit spotlight.exhibit_solr_document_path(exhibit, id: 'dq287tq6352')
25
25
  click_on 'Feedback'
26
- expect(find('#contact_form_current_url', visible: false).value).to end_with spotlight.exhibit_catalog_path(exhibit, id: 'dq287tq6352')
26
+ expect(find('#contact_form_current_url', visible: false).value).to end_with spotlight.exhibit_solr_document_path(exhibit, id: 'dq287tq6352')
27
27
  fill_in 'Name', with: 'Some Body'
28
28
  fill_in 'Email', with: 'test@example.com'
29
29
  fill_in 'Message', with: 'This is my problem report'
@@ -9,7 +9,7 @@ describe 'Slideshow', type: :feature, js: true do
9
9
  exhibit.blacklight_configuration.update(document_index_view_types: %w(list gallery slideshow))
10
10
  end
11
11
  it 'has slideshow' do
12
- visit spotlight.exhibit_catalog_index_path(exhibit, f: { genre_ssim: ['map'] })
12
+ visit spotlight.search_exhibit_catalog_path(exhibit, f: { genre_ssim: ['map'] })
13
13
  expect(page).to have_content 'You searched for:'
14
14
  within '.view-type' do
15
15
  click_link 'Slideshow'
@@ -99,7 +99,7 @@
99
99
  coordinates_tesim:
100
100
  - "(W 160° --E 20°/N 90° --S 90°)"
101
101
  point_bbox:
102
- - "-160.0 -90.0 20.0 90.0"
102
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
103
103
  note_[]_tesim:
104
104
  - 'Dedication: A Monseigneur le Dauphin, parson tres-humble, tres-obeifsant, et
105
105
  tres-fidele serviteur, P. DvVal Geographe du Roy.'
@@ -251,7 +251,7 @@
251
251
  coordinates_tesim:
252
252
  - "(W 160° --E 20°/N 90° --S 90°)"
253
253
  point_bbox:
254
- - "-160.0 -90.0 20.0 90.0"
254
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
255
255
  note_[]_tesim:
256
256
  - From Eptiome Geographiae Cluverianae Nova...Phillippi Cluverii? 1727
257
257
  - In Latin.
@@ -410,7 +410,7 @@
410
410
  coordinates_tesim:
411
411
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
412
412
  point_bbox:
413
- - "-173.0 7.166666666666667 -10.0 84.0"
413
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
414
414
  note_State 2_tesim:
415
415
  - 'At page top, above map: das Mitternächtige America. Fig: 8. Barania R is unlabeled.
416
416
  With French title inside border and German title outside border.'
@@ -576,7 +576,7 @@
576
576
  coordinates_tesim:
577
577
  - "(W 160° --E 20°/N 90° --S 90°)"
578
578
  point_bbox:
579
- - "-160.0 -90.0 20.0 90.0"
579
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
580
580
  note_State 1_tesim:
581
581
  - '1626, "Are to be sold in pops-head alley against the Exchange by G. Humble, 1626".
582
582
  Issued in his: A prospect of the most famous parts of the world . -- London :
@@ -756,7 +756,7 @@
756
756
  coordinates_tesim:
757
757
  - "(W 160° --E 20°/N 90° --S 90°)"
758
758
  point_bbox:
759
- - "-160.0 -90.0 20.0 90.0"
759
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
760
760
  note_State 2_tesim:
761
761
  - 'Without ‘fol.4’; with shortened title: PLANISPHERE URANO-GEOGRAPHIQUE c''estadire
762
762
  LES SPHERES CELESTE et TERRESTRE mises en plan; and without much text on map;
@@ -903,7 +903,7 @@
903
903
  coordinates_tesim:
904
904
  - "(W 180° --E 180°/N 85° --S 85°)"
905
905
  point_bbox:
906
- - "-180.0 -85.0 180.0 85.0"
906
+ - "ENVELOPE(180.0, -180.0, 85.0, -85.0)"
907
907
  note_[]_tesim:
908
908
  - Includes bibliographical references (p. xv-xvi) and indexes.
909
909
  note_Statement of responsibility_tesim:
@@ -1041,7 +1041,7 @@
1041
1041
  coordinates_tesim:
1042
1042
  - "(W 160° --E 20°/N 90° --S 90°)"
1043
1043
  point_bbox:
1044
- - "-160.0 -90.0 20.0 90.0"
1044
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
1045
1045
  note_[]_tesim:
1046
1046
  - 'California with indented northern coast. California shown on 3 of the 18 maps.
1047
1047
  Map titles with paragraph of descriptive text for each (from top left): L''Ameriqve,
@@ -1389,7 +1389,7 @@
1389
1389
  coordinates_tesim:
1390
1390
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
1391
1391
  point_bbox:
1392
- - "-173.0 7.166666666666667 -10.0 84.0"
1392
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
1393
1393
  note_State 7_tesim:
1394
1394
  - A later reproduction probably copied from the first (1674) state. Based upon the
1395
1395
  cartography and the dating, it appears to have been produced between 1674 and
@@ -1565,7 +1565,7 @@
1565
1565
  coordinates_tesim:
1566
1566
  - "(W 160° --E 20°/N 90° --S 90°)"
1567
1567
  point_bbox:
1568
- - "-160.0 -90.0 20.0 90.0"
1568
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
1569
1569
  note_State 3_tesim:
1570
1570
  - Undated, with imprint Apud Carolum Allard.
1571
1571
  note_Statement of responsibility_tesim:
@@ -1717,7 +1717,7 @@
1717
1717
  coordinates_tesim:
1718
1718
  - "(W 160° --E 20°/N 90° --S 90°)"
1719
1719
  point_bbox:
1720
- - "-160.0 -90.0 20.0 90.0"
1720
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
1721
1721
  note_State 1_tesim:
1722
1722
  - 'JKS NOTE: Two maps are on this record: one in black and white, one in color.'
1723
1723
  note_[]_tesim:
@@ -1869,7 +1869,7 @@
1869
1869
  coordinates_tesim:
1870
1870
  - "(W 160° --E 20°/N 90° --S 90°)"
1871
1871
  point_bbox:
1872
- - "-160.0 -90.0 20.0 90.0"
1872
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
1873
1873
  note_[]_tesim:
1874
1874
  - California as an island on second Sanson model, and with M. Nevada, several points,
1875
1875
  and one town, St Isidore, marked.
@@ -2024,7 +2024,7 @@
2024
2024
  coordinates_tesim:
2025
2025
  - "(W 0° --E 0°/N 90° --N 90°)"
2026
2026
  point_bbox:
2027
- - "-0.0 90.0 0.0 90.0"
2027
+ - "ENVELOPE(0.0, -0.0, 90.0, 90.0)"
2028
2028
  note_[]_tesim:
2029
2029
  - Tycho Brahe’s theory of the universe is diagrammed.
2030
2030
  - 'Koeman IV, Cel 1(6); Celestial charts, antique maps of the heavens, p. 58-59
@@ -2561,7 +2561,7 @@
2561
2561
  coordinates_tesim:
2562
2562
  - "(W 21° --E 159°/N 90° --S 90°)"
2563
2563
  point_bbox:
2564
- - "-21.0 -90.0 159.0 90.0"
2564
+ - "ENVELOPE(159.0, -21.0, 90.0, -90.0)"
2565
2565
  note_State 1_tesim:
2566
2566
  - 'With no imprint. Issued in: Atlas coelestis; seu harmonia macrocosmica (Celestial
2567
2567
  atlas of universal harmony). -- Amstelodami : apud Joannem Janssonium, 1660, 1661.'
@@ -2730,7 +2730,7 @@
2730
2730
  coordinates_tesim:
2731
2731
  - "(W 0° --E 0°/N 90° --N 90°)"
2732
2732
  point_bbox:
2733
- - "-0.0 90.0 0.0 90.0"
2733
+ - "ENVELOPE(0.0, -0.0, 90.0, 90.0)"
2734
2734
  note_[]_tesim:
2735
2735
  - Copperplate engraved.
2736
2736
  - L.C. 469, 4274; Koeman IV,Cel 1(19); Cel 2, Cel 3.
@@ -3066,7 +3066,7 @@
3066
3066
  coordinates_tesim:
3067
3067
  - "(W 160° --E 20°/N 90° --S 90°)"
3068
3068
  point_bbox:
3069
- - "-160.0 -90.0 20.0 90.0"
3069
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
3070
3070
  note_[]_tesim:
3071
3071
  - California with nearly flat northern coast and many coastal place names. TERRA
3072
3072
  ESONIS INCOGNITA and Fretum Anian to northwest, and Paye de Moozemleck to north.
@@ -3211,7 +3211,7 @@
3211
3211
  coordinates_tesim:
3212
3212
  - "(W 160° --E 20°/N 90° --S 90°)"
3213
3213
  point_bbox:
3214
- - "-160.0 -90.0 20.0 90.0"
3214
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
3215
3215
  note_[]_tesim:
3216
3216
  - California with indented northern coastline and without place names, except on
3217
3217
  State 9, which is engraved by H. van Loon. Mainland coastline continues northwest
@@ -3371,7 +3371,7 @@
3371
3371
  coordinates_tesim:
3372
3372
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
3373
3373
  point_bbox:
3374
- - "-173.0 7.166666666666667 -10.0 84.0"
3374
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
3375
3375
  note_State 2_tesim:
3376
3376
  - '1690, with “augmentée et corrigée en cette seconde edition” inserted in title
3377
3377
  above Par G. Sanson, and with additions of Detroit d''Anien, Nouvelle Albion,
@@ -3541,7 +3541,7 @@
3541
3541
  coordinates_tesim:
3542
3542
  - "(W 0° --E 0°/N 90° --N 90°)"
3543
3543
  point_bbox:
3544
- - "-0.0 90.0 0.0 90.0"
3544
+ - "ENVELOPE(0.0, -0.0, 90.0, 90.0)"
3545
3545
  note_State 1_tesim:
3546
3546
  - 'At page top, above map: TERRES ARCTIQUES. [PAGE] 273[,] FIGURE XCIX. [Figure]273
3547
3547
  (map top right). Tome I. (page bottom left) and S (page bottom right). Issued
@@ -3710,7 +3710,7 @@
3710
3710
  coordinates_tesim:
3711
3711
  - "(W 160° --E 20°/N 90° --S 90°)"
3712
3712
  point_bbox:
3713
- - "-160.0 -90.0 20.0 90.0"
3713
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
3714
3714
  note_State 2_tesim:
3715
3715
  - Similar to DeWit's map of same title, with copied title cartouche and plaque surrounded
3716
3716
  by angels. New Guinea, Solomon Islands and Quiri Regio, Fretum Aniani and Terra
@@ -3866,7 +3866,7 @@
3866
3866
  coordinates_tesim:
3867
3867
  - "(W 180° --E 180°/N 85° --S 85°)"
3868
3868
  point_bbox:
3869
- - "-180.0 -85.0 180.0 85.0"
3869
+ - "ENVELOPE(180.0, -180.0, 85.0, -85.0)"
3870
3870
  note_[]_tesim:
3871
3871
  - Western Hemisphere of azimuthal equal-area projection. No place names except for
3872
3872
  the label “America” on the continent. Attempt to show the ocean floor in relief.
@@ -4025,7 +4025,7 @@
4025
4025
  coordinates_tesim:
4026
4026
  - "(W 160° --E 20°/N 90° --S 90°)"
4027
4027
  point_bbox:
4028
- - "-160.0 -90.0 20.0 90.0"
4028
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
4029
4029
  note_State 2_tesim:
4030
4030
  - "[1721?], with changed imprint: Per Caroli Allard ex Officina I. Cóvens et C.
4031
4031
  Mortier Cum Privilegio. Possibly a separate issue as it is not noted in the known
@@ -4186,7 +4186,7 @@
4186
4186
  coordinates_tesim:
4187
4187
  - "(E 110° --W 70°/N 63° --S 53°)"
4188
4188
  point_bbox:
4189
- - 110.0 -53.0 -70.0 63.0
4189
+ - ENVELOPE(-70.0, 110.0, 63.0, -53.0)
4190
4190
  note_[]_tesim:
4191
4191
  - California with indented northern coast. Map in reverse.
4192
4192
  - '"INSVLA CALIFORNIA" AND "MARE VERMEIO" on map left and "IAPONIA","TARTARIA",
@@ -4358,7 +4358,7 @@
4358
4358
  coordinates_tesim:
4359
4359
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
4360
4360
  point_bbox:
4361
- - "-173.0 7.166666666666667 -10.0 84.0"
4361
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
4362
4362
  note_State 1_tesim:
4363
4363
  - In French. California with flat northern coastline.
4364
4364
  note_State 2_tesim:
@@ -4730,7 +4730,7 @@
4730
4730
  coordinates_tesim:
4731
4731
  - "(E 110° --W 70°/N 63° --S 53°)"
4732
4732
  point_bbox:
4733
- - 110.0 -53.0 -70.0 63.0
4733
+ - ENVELOPE(-70.0, 110.0, 63.0, -53.0)
4734
4734
  note_State 3_tesim:
4735
4735
  - 'Issued by Hendrick Doncker, in Amsterdam. Without island chain. Dedication: Ampl.mo
4736
4736
  Spectat.mo Gravissimog Viro D.D. Georgio Backer... Hendrick Doncker. (lower left),
@@ -4894,7 +4894,7 @@
4894
4894
  coordinates_tesim:
4895
4895
  - "(W 160° --E 20°/N 90° --S 90°)"
4896
4896
  point_bbox:
4897
- - "-160.0 -90.0 20.0 90.0"
4897
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
4898
4898
  note_State 8_tesim:
4899
4899
  - 1684, with additions of "Partie de la grande Terre Australe" added (lower right)
4900
4900
  and pictorial cartouche of native and his canoe and net surrounds "Explication
@@ -5058,7 +5058,7 @@
5058
5058
  coordinates_tesim:
5059
5059
  - "(W 160° --E 20°/N 90° --S 90°)"
5060
5060
  point_bbox:
5061
- - "-160.0 -90.0 20.0 90.0"
5061
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
5062
5062
  note_[]_tesim:
5063
5063
  - California with flat northern coast sloping up to east. Destroit d' Anien, Anien,
5064
5064
  and Terre de Iesso to the north.
@@ -5396,7 +5396,7 @@
5396
5396
  coordinates_tesim:
5397
5397
  - "(W 160° --E 20°/N 90° --S 90°)"
5398
5398
  point_bbox:
5399
- - "-160.0 -90.0 20.0 90.0"
5399
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
5400
5400
  note_State 1_tesim:
5401
5401
  - Date, 1660, within title cartouche; 'f.o 2' (top right)
5402
5402
  note_State 2_tesim:
@@ -5559,7 +5559,7 @@
5559
5559
  coordinates_tesim:
5560
5560
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
5561
5561
  point_bbox:
5562
- - "-173.0 7.166666666666667 -10.0 84.0"
5562
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
5563
5563
  note_[]_tesim:
5564
5564
  - Nordenskiöld Collection, 3, Vol.I, 610 (1, State 2); Nordenskiöld Collection,
5565
5565
  3, 398 Vol.II (11, State 3); UCB (State 6).
@@ -5745,7 +5745,7 @@
5745
5745
  coordinates_tesim:
5746
5746
  - "(W 0° --E 0°/N 90° --N 90°)"
5747
5747
  point_bbox:
5748
- - "-0.0 90.0 0.0 90.0"
5748
+ - "ENVELOPE(0.0, -0.0, 90.0, 90.0)"
5749
5749
  note_State 1_tesim:
5750
5750
  - See general notes.
5751
5751
  note_State 2_tesim:
@@ -5913,7 +5913,7 @@
5913
5913
  coordinates_tesim:
5914
5914
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
5915
5915
  point_bbox:
5916
- - "-173.0 7.166666666666667 -10.0 84.0"
5916
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
5917
5917
  note_State 1_tesim:
5918
5918
  - 'With “Fol 65” (top left). Issued in: West-Indische Spieghel / Athanasium Inga.
5919
5919
  -- Amsterdam, 1624.'
@@ -6084,7 +6084,7 @@
6084
6084
  coordinates_tesim:
6085
6085
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
6086
6086
  point_bbox:
6087
- - "-173.0 7.166666666666667 -10.0 84.0"
6087
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
6088
6088
  note_State 1_tesim:
6089
6089
  - tom 2. P296 (top right, within border)
6090
6090
  note_State 2_tesim:
@@ -6261,7 +6261,7 @@
6261
6261
  coordinates_tesim:
6262
6262
  - "(W 180° --E 180°/N 85° --S 85°)"
6263
6263
  point_bbox:
6264
- - "-180.0 -85.0 180.0 85.0"
6264
+ - "ENVELOPE(180.0, -180.0, 85.0, -85.0)"
6265
6265
  note_State 2_tesim:
6266
6266
  - With seven astronomical charts surrounding the map. Longitude and latitude lines
6267
6267
  marked along the equator and the center latitude line, respectively.
@@ -6420,7 +6420,7 @@
6420
6420
  coordinates_tesim:
6421
6421
  - "(W 125° --W 110°/N 47° --N 31°)"
6422
6422
  point_bbox:
6423
- - "-125.0 31.0 -110.0 47.0"
6423
+ - "ENVELOPE(-110.0, -125.0, 47.0, 31.0)"
6424
6424
  note_[]_tesim:
6425
6425
  - 'California as an island with flat northern coast and place names including Pt.
6426
6426
  Sr. Franc Draco, C. Mendocino at northnmost place on island, and Anian to the
@@ -6556,7 +6556,7 @@
6556
6556
  coordinates_tesim:
6557
6557
  - "(E 110° --W 70°/N 63° --S 53°)"
6558
6558
  point_bbox:
6559
- - 110.0 -53.0 -70.0 63.0
6559
+ - ENVELOPE(-70.0, 110.0, 63.0, -53.0)
6560
6560
  note_[]_tesim:
6561
6561
  - Includes bibliographical references (p. xv-xvi) and indexes.
6562
6562
  note_Statement of responsibility_tesim:
@@ -6856,7 +6856,7 @@
6856
6856
  coordinates_tesim:
6857
6857
  - "(W 21° --E 159°/N 90° --S 90°)"
6858
6858
  point_bbox:
6859
- - "-21.0 -90.0 159.0 90.0"
6859
+ - "ENVELOPE(159.0, -21.0, 90.0, -90.0)"
6860
6860
  note_[]_tesim:
6861
6861
  - Asian continent, including eastern Mediterranean Sea, and northern part of Australia.
6862
6862
  - Title with vignette to its right of Asian natives working with bundled goods;
@@ -7004,7 +7004,7 @@
7004
7004
  coordinates_tesim:
7005
7005
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
7006
7006
  point_bbox:
7007
- - "-173.0 7.166666666666667 -10.0 84.0"
7007
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
7008
7008
  note_State 1_tesim:
7009
7009
  - 'Pagination above map: "III.c". No text below map. Issued in his: Kurtz-bündige
7010
7010
  Abbildund Vorstellung der Gantzen Welt, Ulm, Georg Wilhelm Kühnen, 1692'
@@ -7403,7 +7403,7 @@
7403
7403
  coordinates_tesim:
7404
7404
  - "(W 160° --E 20°/N 90° --S 90°)"
7405
7405
  point_bbox:
7406
- - "-160.0 -90.0 20.0 90.0"
7406
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
7407
7407
  note_State 2_tesim:
7408
7408
  - 'On single undated sheet or two sheets, with "fol.21" (top right). "Page 21. |
7409
7409
  I.re partie | de L''Introduction" (bottom right). Single sheet includes “La Sphere
@@ -7564,7 +7564,7 @@
7564
7564
  coordinates_tesim:
7565
7565
  - "(W 0° --E 0°/N 90° --N 90°)"
7566
7566
  point_bbox:
7567
- - "-0.0 90.0 0.0 90.0"
7567
+ - "ENVELOPE(0.0, -0.0, 90.0, 90.0)"
7568
7568
  note_[]_tesim:
7569
7569
  - LC 539; Tooley/1(53); Maritime 460;Tom Suarez, correspondence, 1995
7570
7570
  - 'North polar projection with California as an island with rounded northern coastline.
@@ -7729,7 +7729,7 @@
7729
7729
  coordinates_tesim:
7730
7730
  - "(W 92°15ʹ --W 77°10ʹ/N 18°30ʹ --N 7°10ʹ)"
7731
7731
  point_bbox:
7732
- - "-92.25 7.166666666666667 -77.16666666666667 18.5"
7732
+ - "ENVELOPE(-77.16666666666667, -92.25, 18.5, 7.166666666666667)"
7733
7733
  note_State 1_tesim:
7734
7734
  - See general notes.
7735
7735
  note_State 2_tesim:
@@ -8118,7 +8118,7 @@
8118
8118
  coordinates_tesim:
8119
8119
  - "(W 160° --E 20°/N 90° --S 90°)"
8120
8120
  point_bbox:
8121
- - "-160.0 -90.0 20.0 90.0"
8121
+ - "ENVELOPE(20.0, -160.0, 90.0, -90.0)"
8122
8122
  note_State 2_tesim:
8123
8123
  - 'With place names: C. Blanco, P. de Monte Rÿ, Canala d. s. Barbara, I. d. s. Catalina,
8124
8124
  s. Clement, I. d. Pararos, P. d. s. Apolline, and C. Lucas. With "MARE" above
@@ -8322,7 +8322,7 @@
8322
8322
  coordinates_tesim:
8323
8323
  - "(W 180° --E 180°/N 85° --S 85°)"
8324
8324
  point_bbox:
8325
- - "-180.0 -85.0 180.0 85.0"
8325
+ - "ENVELOPE(180.0, -180.0, 85.0, -85.0)"
8326
8326
  note_[]_tesim:
8327
8327
  - "California shown with a rounded northern coastline and labeled California. Island
8328
8328
  curves sharply to the east giving the appearance of a long nearly flat southern
@@ -8643,7 +8643,7 @@
8643
8643
  coordinates_tesim:
8644
8644
  - "(W 180° --E 180°/N 85° --S 85°)"
8645
8645
  point_bbox:
8646
- - "-180.0 -85.0 180.0 85.0"
8646
+ - "ENVELOPE(180.0, -180.0, 85.0, -85.0)"
8647
8647
  note_[]_tesim:
8648
8648
  - 'Relief shown pictorially. Two hemispheres. Pacific ocean labeled “The Great South
8649
8649
  Sea” and Atlantic labeled: “Atlantick Ocean”. Great lakes complete. California
@@ -8820,7 +8820,7 @@
8820
8820
  coordinates_tesim:
8821
8821
  - "(W 173°00ʹ --W 10°00ʹ/N 84°00ʹ --N 7°10ʹ)"
8822
8822
  point_bbox:
8823
- - "-173.0 7.166666666666667 -10.0 84.0"
8823
+ - "ENVELOPE(-10.0, -173.0, 84.0, 7.166666666666667)"
8824
8824
  note_[]_tesim:
8825
8825
  - 'First issued in 1674. Reissued 1685, 1690, 1692, and 1695. Of these, only the
8826
8826
  1692 issue has been seen and listed as a separate state; if the others include
@@ -9197,7 +9197,7 @@
9197
9197
  coordinates_tesim:
9198
9198
  - "(W 92°15ʹ --W 77°10ʹ/N 18°30ʹ --N 7°10ʹ)"
9199
9199
  point_bbox:
9200
- - "-92.25 7.166666666666667 -77.16666666666667 18.5"
9200
+ - "ENVELOPE(-77.16666666666667, -92.25, 18.5, 7.166666666666667)"
9201
9201
  note_[]_tesim:
9202
9202
  - 'Issued in his: A new voyage round the world / By William Dampier. -- London:
9203
9203
  Printed for James Knapton, 1697.'