Conversation
anarchivist
left a comment
There was a problem hiding this comment.
looks okay - but i have a lot of questions. do we really intend to get rid a majority of the ERB templates and the css overrides?
There was a problem hiding this comment.
ditto this - i know the last change to your file was to update the logos, so do we need to retain this?
There was a problem hiding this comment.
Yes, this has been moved to the legacy folder so it can be reused later if needed.
| @import url("https://cdn.jsdelivr.net/npm/leaflet.fullscreen@5.3.0/dist/Control.FullScreen.css"); | ||
| @import url("https://cdn.jsdelivr.net/npm/ol@8.1.0/ol.css"); | ||
|
|
||
| @import 'customizations'; |
There was a problem hiding this comment.
importing the customizations should probably happen last as it will override all the other rules.
jason-raitz
left a comment
There was a problem hiding this comment.
This is a lot to go through. I've added some suggestions, comments, and questions. I'm also wondering if we should merge this into an upgrade branch first, since we have follow on work to do?
| @@ -0,0 +1,28 @@ | |||
| <!DOCTYPE html> | |||
| <html> | |||
There was a problem hiding this comment.
Screen readers do better if given the language.
| <html> | |
| <html lang="en-US"> |
There was a problem hiding this comment.
On GeoData site, the content may include language other than English.
| <head> | ||
| <title><%= content_for(:title) || "Geodata V5" %></title> |
There was a problem hiding this comment.
Should probably include the charset here.
| <head> | |
| <title><%= content_for(:title) || "Geodata V5" %></title> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title><%= content_for(:title) || "Geodata V5" %></title> |
There was a problem hiding this comment.
We can look into this while reviewing the UI updates for accessibility.
| config.add_facet_field Settings.FIELDS.GEOMETRY, item_presenter: Geoblacklight::BboxItemPresenter, filter_class: Geoblacklight::BboxFilterField, filter_query_builder: Geoblacklight::BboxFilterQuery, within_boost: Settings.BBOX_WITHIN_BOOST, overlap_boost: Settings.OVERLAP_RATIO_BOOST, overlap_field: Settings.FIELDS.OVERLAP_FIELD, | ||
| label: 'Bounding Box' |
There was a problem hiding this comment.
Did anything change here? or is this just formatting? If just formatting, maybe we could make it easier to read? I think the following would work, but I do struggle to remember the intricacies of ruby formatting.
| config.add_facet_field Settings.FIELDS.GEOMETRY, item_presenter: Geoblacklight::BboxItemPresenter, filter_class: Geoblacklight::BboxFilterField, filter_query_builder: Geoblacklight::BboxFilterQuery, within_boost: Settings.BBOX_WITHIN_BOOST, overlap_boost: Settings.OVERLAP_RATIO_BOOST, overlap_field: Settings.FIELDS.OVERLAP_FIELD, | |
| label: 'Bounding Box' | |
| config.add_facet_field Settings.FIELDS.GEOMETRY, | |
| item_presenter: Geoblacklight::BboxItemPresenter, | |
| filter_class: Geoblacklight::BboxFilterField, | |
| filter_query_builder: Geoblacklight::BboxFilterQuery, | |
| within_boost: Settings.BBOX_WITHIN_BOOST, | |
| overlap_boost: Settings.OVERLAP_RATIO_BOOST, | |
| overlap_field: Settings.FIELDS.OVERLAP_FIELD, | |
| label: 'Bounding Box' |
There was a problem hiding this comment.
These are the original setup from the new GeoBlacklight instance. We'll address these files in future tickets.
| @@ -125,69 +135,88 @@ DISPLAY_NOTES_SHOWN: | |||
| icon: triangle-exclamation-solid | |||
| note_prefix: "Warning: " | |||
|
|
|||
| # Web services shown in tool panel | |||
| WEBSERVICES_SHOWN: | |||
| # - 'wms' | |||
| - 'tms' | |||
| # - 'wfs' | |||
| - 'xyz' | |||
| - 'wmts' | |||
| - 'tilejson' | |||
| - 'iiif' | |||
| - 'feature_layer' | |||
| - 'tiled_map_layer' | |||
| - 'dynamic_map_layer' | |||
| - 'image_map_layer' | |||
| - 'cog' | |||
| - 'pmtiles' | |||
|
|
|||
| # Relationships to display | |||
There was a problem hiding this comment.
I'm not really familiar with the webservices yet. Why did we add in 'wms' and 'wfs' here?
There was a problem hiding this comment.
This is the GeoBlacklight's original configuration (likely from Stanford0. The original setup doesn't include geoServer but we have GeoServer. We'll address these files in future ticket.
| gem 'devise' | ||
| gem 'devise-guests', '~> 0.8' | ||
| gem 'geoblacklight', '~> 4.4.2' | ||
| gem 'geoblacklight' |
There was a problem hiding this comment.
Should we specify geoblacklight 5.3 here?
There was a problem hiding this comment.
This is the from the new Geoblacklight instance. We have another ticket (AP-710) for updating gem. I'll add it to that ticket.
Dan has a temporary workflow for staging and production deployments, so it is should be fine for us to use Main branch for this ticket. |
Uh oh!
There was an error while loading. Please reload this page.