geoblacklight 6.0.0.pre.alpha.6 → 6.0.0.pre.alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +0 -1
- data/.github/workflows/ruby.yml +1 -1
- data/CODE_OF_CONDUCT.md +11 -11
- data/CONTRIBUTING.md +19 -9
- data/README.md +1 -1
- data/app/assets/stylesheets/geoblacklight/global.css +1 -1
- data/app/assets/stylesheets/geoblacklight/index_maps.css +1 -1
- data/app/assets/stylesheets/geoblacklight/record.css +15 -13
- data/app/assets/stylesheets/geoblacklight/viewers.css +88 -5
- data/app/components/geoblacklight/document/download_link_component.html.erb +1 -2
- data/app/components/geoblacklight/document/download_links_component.html.erb +3 -1
- data/app/components/geoblacklight/document/preview_component.html.erb +6 -0
- data/app/components/geoblacklight/document/preview_component.rb +14 -0
- data/app/components/geoblacklight/document_component.html.erb +1 -6
- data/app/components/geoblacklight/facets/bbox_field_component.html.erb +17 -0
- data/app/components/geoblacklight/facets/bbox_field_component.rb +7 -0
- data/app/components/geoblacklight/header_badge_component.html.erb +2 -0
- data/app/components/geoblacklight/header_badge_component.rb +21 -0
- data/app/components/geoblacklight/header_component.html.erb +1 -1
- data/app/components/geoblacklight/header_icons_component.html.erb +1 -1
- data/app/components/geoblacklight/header_icons_component.rb +8 -12
- data/app/components/geoblacklight/item_map_viewer_component.rb +6 -5
- data/app/components/geoblacklight/location_leaflet_map_component.rb +8 -9
- data/app/{views/catalog/_metadata.html.erb → components/geoblacklight/metadata_component.html.erb} +5 -7
- data/app/components/geoblacklight/metadata_component.rb +29 -0
- data/app/components/geoblacklight/metadata_description_markdown_component.rb +21 -0
- data/app/components/geoblacklight/relations_component.html.erb +2 -2
- data/app/components/geoblacklight/resource_header_badge_component.rb +37 -0
- data/app/components/geoblacklight/search_result_component.html.erb +15 -14
- data/app/components/geoblacklight/static_map_component.rb +5 -2
- data/app/helpers/geoblacklight_helper.rb +27 -50
- data/app/javascript/geoblacklight/controllers/leaflet_viewer_controller.js +19 -4
- data/app/javascript/geoblacklight/controllers/openlayers_viewer_controller.js +10 -2
- data/app/javascript/geoblacklight/leaflet/basemaps.js +8 -8
- data/app/javascript/geoblacklight/openlayers/basemaps.js +8 -8
- data/app/models/concerns/geoblacklight/solr_document.rb +9 -0
- data/app/views/catalog/_document_split.html.erb +1 -6
- data/app/views/catalog/_home_text.html.erb +1 -1
- data/app/views/catalog/metadata.html.erb +1 -1
- data/geoblacklight.gemspec +2 -1
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +22 -30
- data/lib/generators/geoblacklight/templates/settings.yml +0 -5
- data/lib/geoblacklight/configuration/leaflet_config.rb +3 -2
- data/lib/geoblacklight/configuration/settings_builder.rb +0 -1
- data/lib/geoblacklight/configuration.rb +18 -5
- data/lib/geoblacklight/engine.rb +1 -0
- data/lib/geoblacklight/item_viewer.rb +1 -1
- data/lib/geoblacklight/version.rb +1 -1
- data/schema/readme.md +1 -1
- data/spec/components/geoblacklight/citation_component_spec.rb +1 -1
- data/spec/components/geoblacklight/document_component_spec.rb +10 -0
- data/spec/components/geoblacklight/metadata_component_spec.rb +67 -0
- data/spec/components/geoblacklight/metadata_description_markdown_component_spec.rb +38 -0
- data/spec/components/geoblacklight/viewer_help_text_component_spec.rb +1 -0
- data/spec/controllers/catalog_controller_spec.rb +8 -55
- data/spec/features/configurable_basemap_spec.rb +7 -7
- data/spec/features/home_page_spec.rb +0 -26
- data/spec/features/index_view_spec.rb +0 -24
- data/spec/features/layer_preview_spec.rb +1 -1
- data/spec/features/metadata_panel_spec.rb +18 -69
- data/spec/features/relations_spec.rb +0 -18
- data/spec/features/search_spec.rb +0 -22
- data/spec/features/sms_spec.rb +8 -8
- data/spec/features/web_services_modal_spec.rb +0 -83
- data/spec/fixtures/fgdc/SANB_a2725322-fgdc.xml +209 -0
- data/spec/fixtures/index_maps/index-map-point.geojson +13181 -949
- data/spec/fixtures/index_maps/index-map-polygon-no-downloadurl.geojson +21150 -970
- data/spec/fixtures/index_maps/index-map-polygon.geojson +21150 -970
- data/spec/fixtures/index_maps/index-map-stanford.geojson +269 -390
- data/spec/fixtures/index_maps/index-map-v1-complex.geojson +8596 -12247
- data/spec/fixtures/iso19139/{stanford-cg357zz0321.xml → SANB_a2725322-iso19139.xml} +130 -194
- data/spec/fixtures/metadata/fgdc.html +119 -59
- data/spec/fixtures/metadata/iso.html +258 -260
- data/spec/fixtures/mods/stanford-bc576pk4911.mods +98 -0
- data/spec/fixtures/solr_documents/README.md +48 -47
- data/spec/fixtures/solr_documents/actual-raster1.json +2 -3
- data/spec/fixtures/solr_documents/index-map-stanford.json +31 -27
- data/spec/fixtures/solr_documents/restricted-line.json +20 -31
- data/spec/helpers/geoblacklight_helper_spec.rb +0 -76
- data/spec/models/concerns/geoblacklight/solr_document/citation_spec.rb +1 -1
- data/spec/requests/bookmarks_spec.rb +13 -0
- data/spec/requests/catalog_search_spec.rb +43 -0
- data/spec/requests/catalog_show_spec.rb +48 -0
- data/spec/requests/home_page_spec.rb +42 -0
- data/spec/requests/index_view_spec.rb +27 -0
- data/spec/requests/metadata_spec.rb +40 -0
- data/spec/requests/missing_metadata_spec.rb +28 -0
- data/spec/requests/relations_spec.rb +28 -0
- data/spec/requests/search_history_spec.rb +13 -0
- data/spec/requests/search_results_spec.rb +62 -0
- data/spec/requests/web_services_spec.rb +51 -0
- metadata +44 -23
- data/spec/features/bookmarks_spec.rb +0 -12
- data/spec/features/data_dictionary_download_spec.rb +0 -18
- data/spec/features/empty_search_spec.rb +0 -13
- data/spec/features/exports_spec.rb +0 -14
- data/spec/features/help_text_spec.rb +0 -10
- data/spec/features/missing_metadata_spec.rb +0 -26
- data/spec/features/oembed_spec.rb +0 -11
- data/spec/features/saved_searches_spec.rb +0 -11
- data/spec/features/search_bar_spec.rb +0 -14
- data/spec/features/search_results_complex_geometry_spec.rb +0 -25
- data/spec/features/search_results_icons_spec.rb +0 -16
- data/spec/features/search_results_overlap_ratio_spec.rb +0 -57
- data/spec/features/show_page_metadata_spec.rb +0 -14
- data/spec/features/suppressed_records_spec.rb +0 -16
- data/spec/fixtures/fgdc/harvard-g7064-s2-1834-k3.xml +0 -1
- data/spec/fixtures/mods/fb897vt9938.mods +0 -111
- data/spec/fixtures/mods/stanford-cg357zz0321.mods +0 -113
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the gem file manually.