geoblacklight_admin 0.10.0 → 0.10.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48c3924abd0db3999ab1c702c483d8ba8e57ecee0ce692a7dda60b0707b19b39
4
- data.tar.gz: be7b643b6306ba2cd44b35e7c32e0161ef9b83b543500dde617535af848bbc1a
3
+ metadata.gz: 4a3b7999e8aa0533db879e31cb729aecb624b6f10d102fefcc3386d62b7af23b
4
+ data.tar.gz: 491d783a0daba2e4360a33bbd5179fece47247431917921e7fb06e9e9d81a3d6
5
5
  SHA512:
6
- metadata.gz: dedd35ccc8137c52fc6ce2f9d9e99357fb5683689ca3ad484a72bed021b79d09974746fd13ed4eba6594f3b2f655d821f919f29f00e5936e9572363482c63d3a
7
- data.tar.gz: 4f0557655660b144112a7d532b9f99507f01327bfbba572112ede542bc20f6c0e94ba23f30f692b8ac362c66c6dda3e1027861b743983218c02dc98d47f0a122
6
+ metadata.gz: 0e9a4fb05a86ff66b823cb14041c195b0db7ed9f549e3c7bb66f76190b1f3bd1db1cf335413a80b084d14bb24466f43dc208c0060a49923f8f7fb79724d8e34d
7
+ data.tar.gz: 80d0db164f9bb25c94fdfcc402327e1280c9131191fc7716f868021ef6f3fbce4236916203b6c551afdb5f2ddc907f7d53df81a8a3a0c4c358df233ed608b370
@@ -9,6 +9,7 @@ module Admin
9
9
  include Devise::Controllers::Helpers
10
10
  # Includes Pagy for pagination.
11
11
  include ::Pagy::Backend
12
+
12
13
  # Sets the layout for the admin section.
13
14
  layout "admin/layouts/application"
14
15
 
@@ -3,6 +3,7 @@
3
3
  class ApiSearchBuilder < Blacklight::SearchBuilder
4
4
  include Blacklight::Solr::SearchBuilderBehavior
5
5
  include BlacklightAdvancedSearch::AdvancedSearchBuilder
6
+
6
7
  # include B1gDateRangeQueryConcern::RangeLimitBuilder
7
8
 
8
9
  self.default_processor_chain += %i[add_advanced_parse_q_to_solr add_advanced_search_to_solr]
@@ -5,6 +5,7 @@ require "httparty"
5
5
  # BlacklightApi
6
6
  class BlacklightApi
7
7
  include HTTParty
8
+
8
9
  default_timeout 300
9
10
 
10
11
  def initialize(request, args)
@@ -5,6 +5,7 @@ require "httparty"
5
5
  # BlacklightApi
6
6
  class BlacklightApiIds
7
7
  include HTTParty
8
+
8
9
  default_timeout 300
9
10
 
10
11
  def initialize(request, args = {})
@@ -3,6 +3,7 @@
3
3
  # Notification
4
4
  class Notification < ApplicationRecord
5
5
  include Noticed::Model
6
+
6
7
  belongs_to :recipient, polymorphic: true
7
8
 
8
9
  has_one_attached :file
@@ -25,7 +25,7 @@ module GeoblacklightAdmin
25
25
 
26
26
  # Build a hash to store the extracted components
27
27
  parsed_data = {
28
- base_url: "#{parsed_url.scheme}://#{parsed_url.host}#{parsed_url.port ? ":" + parsed_url.port.to_s : ""}",
28
+ base_url: "#{parsed_url.scheme}://#{parsed_url.host}#{":" + parsed_url.port.to_s if parsed_url.port}",
29
29
  path_pattern: parsed_url.path
30
30
  }
31
31
 
@@ -24,6 +24,6 @@ tile_map_service,Tile Mapping Service (TMS),https://wiki.osgeo.org/wiki/Tile_Map
24
24
  tile_json,TileJSON,https://github.com/mapbox/tilejson-spec,FALSE,-,23
25
25
  wcs,Web Coverage Service (WCS),http://www.opengis.net/def/serviceType/ogc/wcs,FALSE,-,24
26
26
  wfs,Web Feature Service (WFS),http://www.opengis.net/def/serviceType/ogc/wfs,FALSE,"Provides a to download generated vector datasets (GeoJSON, shapefile)",25
27
- wmts,Web Mapping Service (WMS),http://www.opengis.net/def/serviceType/ogc/wms,FALSE,Provides a service to visually preview a layer and inspect its features,26
28
- wms,WMTS,http://www.opengis.net/def/serviceType/ogc/wmts,FALSE,-,27
27
+ wms,Web Mapping Service (WMS),http://www.opengis.net/def/serviceType/ogc/wms,FALSE,Provides a service to visually preview a layer and inspect its features,26
28
+ wmts,WMTS,http://www.opengis.net/def/serviceType/ogc/wmts,FALSE,-,27
29
29
  xyz_tiles,XYZ tiles,https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames,FALSE,Link to an XYZ tile server,28
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GeoblacklightAdmin
4
- VERSION = "0.10.0"
4
+ VERSION = "0.10.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geoblacklight_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Larson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-21 00:00:00.000000000 Z
11
+ date: 2025-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_storage_validations