geoblacklight 2.3.0
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 +7 -0
- data/.circleci/config.yml +195 -0
- data/.github/ISSUE_TEMPLATE.md +17 -0
- data/.gitignore +21 -0
- data/.gitmodules +0 -0
- data/.hound.yml +8 -0
- data/.jshintignore +2 -0
- data/.jshintrc +67 -0
- data/.rubocop.yml +99 -0
- data/.rubocop_todo.yml +196 -0
- data/.solr_wrapper +5 -0
- data/CODE_OF_CONDUCT.md +76 -0
- data/CONTRIBUTING.md +49 -0
- data/Gemfile +39 -0
- data/LICENSE.txt +13 -0
- data/README.md +39 -0
- data/Rakefile +125 -0
- data/app/assets/images/blacklight/arrow-circle-down.svg +4 -0
- data/app/assets/images/blacklight/baruch-cuny.svg +6 -0
- data/app/assets/images/blacklight/berkeley.svg +7 -0
- data/app/assets/images/blacklight/book.svg +6 -0
- data/app/assets/images/blacklight/bookmark.svg +6 -0
- data/app/assets/images/blacklight/cd-rom.svg +6 -0
- data/app/assets/images/blacklight/chicago.svg +7 -0
- data/app/assets/images/blacklight/columbia.svg +6 -0
- data/app/assets/images/blacklight/cornell.svg +8 -0
- data/app/assets/images/blacklight/dvd-rom.svg +6 -0
- data/app/assets/images/blacklight/email.svg +6 -0
- data/app/assets/images/blacklight/esri-globe.svg +34 -0
- data/app/assets/images/blacklight/geoblacklight-icons.json +2079 -0
- data/app/assets/images/blacklight/globe.svg +4 -0
- data/app/assets/images/blacklight/harvard.svg +6 -0
- data/app/assets/images/blacklight/home.svg +4 -0
- data/app/assets/images/blacklight/illinois.svg +7 -0
- data/app/assets/images/blacklight/image.svg +6 -0
- data/app/assets/images/blacklight/indiana.svg +6 -0
- data/app/assets/images/blacklight/iowa.svg +6 -0
- data/app/assets/images/blacklight/leaf.svg +6 -0
- data/app/assets/images/blacklight/lewis-clark.svg +8 -0
- data/app/assets/images/blacklight/line.svg +7 -0
- data/app/assets/images/blacklight/logo.svg +1 -0
- data/app/assets/images/blacklight/map-marker.svg +6 -0
- data/app/assets/images/blacklight/map.svg +6 -0
- data/app/assets/images/blacklight/maryland.svg +6 -0
- data/app/assets/images/blacklight/massgis.svg +6 -0
- data/app/assets/images/blacklight/metadata.svg +6 -0
- data/app/assets/images/blacklight/michigan-state.svg +7 -0
- data/app/assets/images/blacklight/michigan.svg +6 -0
- data/app/assets/images/blacklight/minnesota.svg +6 -0
- data/app/assets/images/blacklight/mit.svg +6 -0
- data/app/assets/images/blacklight/mixed.svg +8 -0
- data/app/assets/images/blacklight/multilinestring.svg +9 -0
- data/app/assets/images/blacklight/multipoint.svg +6 -0
- data/app/assets/images/blacklight/multipolygon.svg +9 -0
- data/app/assets/images/blacklight/nyu.svg +9 -0
- data/app/assets/images/blacklight/ohio-state.svg +8 -0
- data/app/assets/images/blacklight/pagelines-brands.svg +6 -0
- data/app/assets/images/blacklight/paper-map.svg +6 -0
- data/app/assets/images/blacklight/penn-state.svg +7 -0
- data/app/assets/images/blacklight/point.svg +6 -0
- data/app/assets/images/blacklight/polygon.svg +7 -0
- data/app/assets/images/blacklight/polyline.svg +9 -0
- data/app/assets/images/blacklight/princeton.svg +6 -0
- data/app/assets/images/blacklight/public.svg +6 -0
- data/app/assets/images/blacklight/purdue.svg +7 -0
- data/app/assets/images/blacklight/raster.svg +6 -0
- data/app/assets/images/blacklight/restricted.svg +6 -0
- data/app/assets/images/blacklight/sms.svg +6 -0
- data/app/assets/images/blacklight/stanford.svg +6 -0
- data/app/assets/images/blacklight/table.svg +6 -0
- data/app/assets/images/blacklight/tags.svg +4 -0
- data/app/assets/images/blacklight/texas.svg +6 -0
- data/app/assets/images/blacklight/tufts.svg +6 -0
- data/app/assets/images/blacklight/ucla.svg +6 -0
- data/app/assets/images/blacklight/uva.svg +6 -0
- data/app/assets/images/blacklight/web_services.svg +6 -0
- data/app/assets/images/blacklight/wisconsin.svg +6 -0
- data/app/assets/javascripts/geoblacklight/basemaps.js +85 -0
- data/app/assets/javascripts/geoblacklight/controls.js +1 -0
- data/app/assets/javascripts/geoblacklight/controls/opacity.js +6 -0
- data/app/assets/javascripts/geoblacklight/downloaders.js +1 -0
- data/app/assets/javascripts/geoblacklight/downloaders/downloader.js +61 -0
- data/app/assets/javascripts/geoblacklight/downloaders/hgl_downloader.js +32 -0
- data/app/assets/javascripts/geoblacklight/geoblacklight.js +42 -0
- data/app/assets/javascripts/geoblacklight/modules.js +1 -0
- data/app/assets/javascripts/geoblacklight/modules/collapse.js +7 -0
- data/app/assets/javascripts/geoblacklight/modules/download.js +11 -0
- data/app/assets/javascripts/geoblacklight/modules/geosearch.js +133 -0
- data/app/assets/javascripts/geoblacklight/modules/help_text.js +7 -0
- data/app/assets/javascripts/geoblacklight/modules/home.js +16 -0
- data/app/assets/javascripts/geoblacklight/modules/item.js +13 -0
- data/app/assets/javascripts/geoblacklight/modules/layer_opacity.js +68 -0
- data/app/assets/javascripts/geoblacklight/modules/metadata.js +15 -0
- data/app/assets/javascripts/geoblacklight/modules/metadata_download_button.js +53 -0
- data/app/assets/javascripts/geoblacklight/modules/relations.js +14 -0
- data/app/assets/javascripts/geoblacklight/modules/results.js +82 -0
- data/app/assets/javascripts/geoblacklight/modules/util.js +38 -0
- data/app/assets/javascripts/geoblacklight/templates/index_map_download.hbs +19 -0
- data/app/assets/javascripts/geoblacklight/templates/index_map_info.hbs +40 -0
- data/app/assets/javascripts/geoblacklight/viewers.js +1 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri.js +77 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/dynamic_map_layer.js +85 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/feature_layer.js +76 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/image_map_layer.js +14 -0
- data/app/assets/javascripts/geoblacklight/viewers/esri/tiled_map_layer.js +50 -0
- data/app/assets/javascripts/geoblacklight/viewers/iiif.js +25 -0
- data/app/assets/javascripts/geoblacklight/viewers/index_map.js +70 -0
- data/app/assets/javascripts/geoblacklight/viewers/map.js +67 -0
- data/app/assets/javascripts/geoblacklight/viewers/oembed.js +13 -0
- data/app/assets/javascripts/geoblacklight/viewers/viewer.js +65 -0
- data/app/assets/javascripts/geoblacklight/viewers/wms.js +74 -0
- data/app/assets/stylesheets/geoblacklight/_blacklight_overrides.scss +51 -0
- data/app/assets/stylesheets/geoblacklight/_geoblacklight.scss +36 -0
- data/app/assets/stylesheets/geoblacklight/_styles.scss +4 -0
- data/app/assets/stylesheets/geoblacklight/application.scss +2 -0
- data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +93 -0
- data/app/assets/stylesheets/geoblacklight/modules/facets.scss +5 -0
- data/app/assets/stylesheets/geoblacklight/modules/geosearch.scss +29 -0
- data/app/assets/stylesheets/geoblacklight/modules/home.scss +28 -0
- data/app/assets/stylesheets/geoblacklight/modules/icon-customization.scss +50 -0
- data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +7 -0
- data/app/assets/stylesheets/geoblacklight/modules/item.scss +26 -0
- data/app/assets/stylesheets/geoblacklight/modules/layer_opacity.scss +87 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata.scss +31 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata_content.scss +43 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata_markup.scss +9 -0
- data/app/assets/stylesheets/geoblacklight/modules/metadata_missing.scss +7 -0
- data/app/assets/stylesheets/geoblacklight/modules/mixins.scss +5 -0
- data/app/assets/stylesheets/geoblacklight/modules/modal.scss +14 -0
- data/app/assets/stylesheets/geoblacklight/modules/relations.scss +15 -0
- data/app/assets/stylesheets/geoblacklight/modules/results.scss +68 -0
- data/app/assets/stylesheets/geoblacklight/modules/search_widgets.scss +5 -0
- data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +60 -0
- data/app/assets/stylesheets/geoblacklight/modules/toolbar.scss +70 -0
- data/app/assets/stylesheets/geoblacklight/modules/web_services.scss +5 -0
- data/app/controllers/download_controller.rb +114 -0
- data/app/controllers/relation_controller.rb +20 -0
- data/app/controllers/wms_controller.rb +15 -0
- data/app/helpers/arcgis_helper.rb +12 -0
- data/app/helpers/blacklight_helper.rb +9 -0
- data/app/helpers/carto_helper.rb +29 -0
- data/app/helpers/geoblacklight_helper.rb +323 -0
- data/app/models/concerns/geoblacklight/solr_document.rb +113 -0
- data/app/models/concerns/geoblacklight/solr_document/arcgis.rb +10 -0
- data/app/models/concerns/geoblacklight/solr_document/carto.rb +28 -0
- data/app/models/concerns/geoblacklight/solr_document/finder.rb +38 -0
- data/app/models/concerns/geoblacklight/solr_document/inspection.rb +15 -0
- data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +69 -0
- data/app/presenters/geoblacklight/document_presenter.rb +23 -0
- data/app/views/catalog/_data_dictionary.html.erb +6 -0
- data/app/views/catalog/_document_action.html.erb +6 -0
- data/app/views/catalog/_document_split.html.erb +6 -0
- data/app/views/catalog/_download_generated_link.html.erb +4 -0
- data/app/views/catalog/_download_link.html.erb +3 -0
- data/app/views/catalog/_downloads_generated.html.erb +6 -0
- data/app/views/catalog/_downloads_primary.html.erb +14 -0
- data/app/views/catalog/_downloads_secondary.html.erb +39 -0
- data/app/views/catalog/_exports.html.erb +3 -0
- data/app/views/catalog/_facet_tag_item.html.erb +3 -0
- data/app/views/catalog/_facet_tag_layout.html.erb +2 -0
- data/app/views/catalog/_header_icons.html.erb +3 -0
- data/app/views/catalog/_home_text.html.erb +43 -0
- data/app/views/catalog/_icon_facet.html.erb +16 -0
- data/app/views/catalog/_index_split_default.html.erb +22 -0
- data/app/views/catalog/_metadata.html.erb +27 -0
- data/app/views/catalog/_relations_container.html.erb +1 -0
- data/app/views/catalog/_results_pagination.html.erb +12 -0
- data/app/views/catalog/_show_default_attribute_table.html.erb +19 -0
- data/app/views/catalog/_show_default_viewer_container.html.erb +12 -0
- data/app/views/catalog/_show_default_viewer_information.html.erb +4 -0
- data/app/views/catalog/_show_downloads.html.erb +34 -0
- data/app/views/catalog/_show_header_default.html.erb +4 -0
- data/app/views/catalog/_show_sidebar.html.erb +12 -0
- data/app/views/catalog/_show_tools.html.erb +25 -0
- data/app/views/catalog/_web_services.html.erb +8 -0
- data/app/views/catalog/_web_services_default.html.erb +8 -0
- data/app/views/catalog/_web_services_wfs.html.erb +8 -0
- data/app/views/catalog/_web_services_wms.html.erb +8 -0
- data/app/views/catalog/index.html.erb +13 -0
- data/app/views/catalog/metadata.html.erb +11 -0
- data/app/views/catalog/metadata/_content.html.erb +3 -0
- data/app/views/catalog/metadata/_markup.html.erb +8 -0
- data/app/views/catalog/metadata/_missing.html.erb +6 -0
- data/app/views/catalog/web_services.html.erb +10 -0
- data/app/views/download/hgl.html.erb +25 -0
- data/app/views/relation/_ancestors.html.erb +11 -0
- data/app/views/relation/_descendants.html.erb +18 -0
- data/app/views/relation/index.html.erb +13 -0
- data/app/views/relation/index.json.jbuilder +3 -0
- data/app/views/shared/_header_navbar.html.erb +38 -0
- data/config/initializers/rails_config.rb +3 -0
- data/config/locales/geoblacklight.en.yml +163 -0
- data/geoblacklight.gemspec +49 -0
- data/lib/generators/geoblacklight/install_generator.rb +105 -0
- data/lib/generators/geoblacklight/templates/Procfile +3 -0
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +272 -0
- data/lib/generators/geoblacklight/templates/geoblacklight.js +10 -0
- data/lib/generators/geoblacklight/templates/geoblacklight.scss +4 -0
- data/lib/generators/geoblacklight/templates/package.json +14 -0
- data/lib/generators/geoblacklight/templates/settings.yml +127 -0
- data/lib/generators/geoblacklight/templates/webpacker.yml +67 -0
- data/lib/generators/geoblacklight/webpacker_generator.rb +35 -0
- data/lib/geoblacklight.rb +50 -0
- data/lib/geoblacklight/bounding_box.rb +45 -0
- data/lib/geoblacklight/catalog_helper_override.rb +13 -0
- data/lib/geoblacklight/constants.rb +28 -0
- data/lib/geoblacklight/download.rb +108 -0
- data/lib/geoblacklight/download/geojson_download.rb +22 -0
- data/lib/geoblacklight/download/geotiff_download.rb +20 -0
- data/lib/geoblacklight/download/hgl_download.rb +18 -0
- data/lib/geoblacklight/download/kmz_download.rb +22 -0
- data/lib/geoblacklight/download/shapefile_download.rb +20 -0
- data/lib/geoblacklight/engine.rb +27 -0
- data/lib/geoblacklight/exceptions.rb +27 -0
- data/lib/geoblacklight/geoblacklight_helper_behavior.rb +14 -0
- data/lib/geoblacklight/item_viewer.rb +54 -0
- data/lib/geoblacklight/metadata.rb +18 -0
- data/lib/geoblacklight/metadata/base.rb +93 -0
- data/lib/geoblacklight/metadata/fgdc.rb +14 -0
- data/lib/geoblacklight/metadata/html.rb +13 -0
- data/lib/geoblacklight/metadata/iso19139.rb +14 -0
- data/lib/geoblacklight/metadata_transformer.rb +33 -0
- data/lib/geoblacklight/metadata_transformer/base.rb +42 -0
- data/lib/geoblacklight/metadata_transformer/fgdc.rb +8 -0
- data/lib/geoblacklight/metadata_transformer/iso19139.rb +8 -0
- data/lib/geoblacklight/reference.rb +45 -0
- data/lib/geoblacklight/references.rb +132 -0
- data/lib/geoblacklight/relation/ancestors.rb +27 -0
- data/lib/geoblacklight/relation/descendants.rb +27 -0
- data/lib/geoblacklight/relation/relation_response.rb +24 -0
- data/lib/geoblacklight/routes.rb +7 -0
- data/lib/geoblacklight/routes/downloadable.rb +14 -0
- data/lib/geoblacklight/routes/exportable.rb +17 -0
- data/lib/geoblacklight/routes/wms.rb +13 -0
- data/lib/geoblacklight/version.rb +3 -0
- data/lib/geoblacklight/view_helper_override.rb +40 -0
- data/lib/geoblacklight/wms_layer.rb +35 -0
- data/lib/geoblacklight/wms_layer/feature_info_response.rb +32 -0
- data/lib/tasks/geoblacklight.rake +108 -0
- data/package.json +4 -0
- data/schema/format-values.md +50 -0
- data/schema/geoblacklight-schema-deprecated.md +39 -0
- data/schema/geoblacklight-schema.json +214 -0
- data/schema/geoblacklight-schema.md +323 -0
- data/schema/geometry-type-values.md +11 -0
- data/schema/references.md +23 -0
- data/schema/schema-commentary.md +198 -0
- data/schema/subjects.md +41 -0
- data/schema/type-values.md +10 -0
- data/solr/conf/_rest_managed.json +3 -0
- data/solr/conf/admin-extra.html +31 -0
- data/solr/conf/core.properties +5 -0
- data/solr/conf/elevate.xml +36 -0
- data/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/conf/protwords.txt +21 -0
- data/solr/conf/schema.xml +198 -0
- data/solr/conf/scripts.conf +24 -0
- data/solr/conf/solrconfig.xml +243 -0
- data/solr/conf/spellings.txt +2 -0
- data/solr/conf/stopwords.txt +58 -0
- data/solr/conf/stopwords_en.txt +58 -0
- data/solr/conf/synonyms.txt +31 -0
- data/solr/conf/xslt/example.xsl +132 -0
- data/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/conf/xslt/luke.xsl +337 -0
- data/spec/controllers/catalog_controller_spec.rb +82 -0
- data/spec/controllers/download_controller_spec.rb +120 -0
- data/spec/controllers/relation_controller_spec.rb +11 -0
- data/spec/controllers/wms_controller_spec.rb +34 -0
- data/spec/factories/user.rb +7 -0
- data/spec/features/bookmarks_spec.rb +10 -0
- data/spec/features/configurable_basemap_spec.rb +35 -0
- data/spec/features/data_dictionary_download_spec.rb +16 -0
- data/spec/features/download_layer_spec.rb +93 -0
- data/spec/features/empty_search_spec.rb +11 -0
- data/spec/features/esri_viewer_spec.rb +42 -0
- data/spec/features/exports_spec.rb +36 -0
- data/spec/features/help_text_spec.rb +8 -0
- data/spec/features/home_page_spec.rb +40 -0
- data/spec/features/iiif_viewer_spec.rb +8 -0
- data/spec/features/index_map_spec.rb +31 -0
- data/spec/features/layer_inspection_spec.rb +10 -0
- data/spec/features/layer_opacity_spec.rb +20 -0
- data/spec/features/layer_preview_spec.rb +17 -0
- data/spec/features/layer_with_no_references_spec.rb +8 -0
- data/spec/features/linkified_attribute_table_spec.rb +11 -0
- data/spec/features/metadata_panel_spec.rb +78 -0
- data/spec/features/missing_metadata_spec.rb +24 -0
- data/spec/features/oembed_spec.rb +9 -0
- data/spec/features/relations_spec.rb +51 -0
- data/spec/features/saved_searches_spec.rb +13 -0
- data/spec/features/search_bar_spec.rb +12 -0
- data/spec/features/search_results_map_spec.rb +55 -0
- data/spec/features/search_results_overlap_ratio_spec.rb +55 -0
- data/spec/features/search_spec.rb +14 -0
- data/spec/features/show_page_metadata_spec.rb +12 -0
- data/spec/features/sms_spec.rb +15 -0
- data/spec/features/split_view.html.erb_spec.rb +75 -0
- data/spec/features/suppressed_records_spec.rb +14 -0
- data/spec/features/web_services_modal_spec.rb +25 -0
- data/spec/fixtures/fgdc/harvard-g7064-s2-1834-k3.xml +1 -0
- data/spec/fixtures/iso19139/stanford-cg357zz0321.xml +581 -0
- data/spec/fixtures/mods/fb897vt9938.mods +111 -0
- data/spec/fixtures/mods/stanford-cg357zz0321.mods +113 -0
- data/spec/fixtures/solr_documents/README.md +40 -0
- data/spec/fixtures/solr_documents/actual-papermap1.json +23 -0
- data/spec/fixtures/solr_documents/actual-point1.json +37 -0
- data/spec/fixtures/solr_documents/actual-polygon1.json +23 -0
- data/spec/fixtures/solr_documents/actual-raster1.json +38 -0
- data/spec/fixtures/solr_documents/baruch_ancestor1.json +46 -0
- data/spec/fixtures/solr_documents/baruch_ancestor2.json +46 -0
- data/spec/fixtures/solr_documents/baruch_documentation_download.json +49 -0
- data/spec/fixtures/solr_documents/bbox-spans-180.json +20 -0
- data/spec/fixtures/solr_documents/cornell_html_metadata.json +42 -0
- data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +38 -0
- data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +40 -0
- data/spec/fixtures/solr_documents/esri-feature-layer.json +46 -0
- data/spec/fixtures/solr_documents/esri-image-map-layer.json +42 -0
- data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +22 -0
- data/spec/fixtures/solr_documents/esri-wms-layer.json +33 -0
- data/spec/fixtures/solr_documents/harvard_raster.json +44 -0
- data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +30 -0
- data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +37 -0
- data/spec/fixtures/solr_documents/index-map-polygon.json +37 -0
- data/spec/fixtures/solr_documents/index-map-stanford.json +37 -0
- data/spec/fixtures/solr_documents/index_map_point.json +27 -0
- data/spec/fixtures/solr_documents/metadata_no_dct_provenance_s.json +30 -0
- data/spec/fixtures/solr_documents/metadata_no_layer_geom_type_s.json +17 -0
- data/spec/fixtures/solr_documents/metadata_no_solr_geom.json +23 -0
- data/spec/fixtures/solr_documents/no_spatial.json +21 -0
- data/spec/fixtures/solr_documents/oembed.json +24 -0
- data/spec/fixtures/solr_documents/princeton-child1.json +30 -0
- data/spec/fixtures/solr_documents/princeton-child2.json +30 -0
- data/spec/fixtures/solr_documents/princeton-child3.json +30 -0
- data/spec/fixtures/solr_documents/princeton-child4.json +30 -0
- data/spec/fixtures/solr_documents/princeton-parent.json +25 -0
- data/spec/fixtures/solr_documents/public_direct_download.json +34 -0
- data/spec/fixtures/solr_documents/public_iiif_princeton.json +36 -0
- data/spec/fixtures/solr_documents/public_polygon_mit.json +27 -0
- data/spec/fixtures/solr_documents/restricted-line.json +37 -0
- data/spec/fixtures/solr_documents/umn_metro_result1.json +41 -0
- data/spec/fixtures/solr_documents/umn_state_result1.json +38 -0
- data/spec/fixtures/solr_documents/umn_state_result2.json +38 -0
- data/spec/fixtures/solr_documents/uva_slug_colon.json +25 -0
- data/spec/helpers/arcgis_helper_spec.rb +14 -0
- data/spec/helpers/carto_helper_spec.rb +11 -0
- data/spec/helpers/geoblacklight_helper_spec.rb +329 -0
- data/spec/javascripts/geoblacklight_spec.js +21 -0
- data/spec/javascripts/metadata_download_button_spec.js +14 -0
- data/spec/javascripts/spec_helper.js +32 -0
- data/spec/javascripts/util_spec.js +12 -0
- data/spec/lib/geoblacklight/bounding_box_spec.rb +27 -0
- data/spec/lib/geoblacklight/controller_override_spec.rb +1 -0
- data/spec/lib/geoblacklight/document_presenter_spec.rb +61 -0
- data/spec/lib/geoblacklight/download/geojson_download_spec.rb +19 -0
- data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +20 -0
- data/spec/lib/geoblacklight/download/hgl_download_spec.rb +60 -0
- data/spec/lib/geoblacklight/download/kmz_download_spec.rb +20 -0
- data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +19 -0
- data/spec/lib/geoblacklight/download_spec.rb +177 -0
- data/spec/lib/geoblacklight/geoblacklight_helper_behavior_spec.rb +30 -0
- data/spec/lib/geoblacklight/item_viewer_spec.rb +63 -0
- data/spec/lib/geoblacklight/metadata/base_spec.rb +157 -0
- data/spec/lib/geoblacklight/metadata/html_spec.rb +18 -0
- data/spec/lib/geoblacklight/metadata_spec.rb +42 -0
- data/spec/lib/geoblacklight/metadata_transformer/base_spec.rb +35 -0
- data/spec/lib/geoblacklight/metadata_transformer/fgdc_spec.rb +23 -0
- data/spec/lib/geoblacklight/metadata_transformer/iso19139_spec.rb +23 -0
- data/spec/lib/geoblacklight/metadata_transformer_spec.rb +69 -0
- data/spec/lib/geoblacklight/reference_spec.rb +64 -0
- data/spec/lib/geoblacklight/references_spec.rb +216 -0
- data/spec/lib/geoblacklight/relation/ancestors_spec.rb +32 -0
- data/spec/lib/geoblacklight/relation/descendants_spec.rb +32 -0
- data/spec/lib/geoblacklight/relation/relation_response_spec.rb +43 -0
- data/spec/lib/geoblacklight/view_helper_override_spec.rb +37 -0
- data/spec/lib/geoblacklight/wms_layer/feature_info_response_spec.rb +50 -0
- data/spec/lib/geoblacklight/wms_layer_spec.rb +99 -0
- data/spec/models/concerns/geoblacklight/solr_document/carto_spec.rb +61 -0
- data/spec/models/concerns/geoblacklight/solr_document/finder_spec.rb +40 -0
- data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +16 -0
- data/spec/models/concerns/geoblacklight/solr_document_spec.rb +251 -0
- data/spec/models/concerns/geoblacklight/spatial_search_behavior_spec.rb +84 -0
- data/spec/routing/catalog_routing_spec.rb +8 -0
- data/spec/spec_helper.rb +79 -0
- data/spec/support/backport_test_helpers.rb +45 -0
- data/spec/support/features.rb +5 -0
- data/spec/support/features/session_helpers.rb +20 -0
- data/spec/teaspoon_env.rb +213 -0
- data/spec/test_app_templates/Gemfile.extra +1 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +49 -0
- data/spec/test_app_templates/metadata/fgdc.html +129 -0
- data/spec/test_app_templates/metadata/fgdc.xml +145 -0
- data/spec/test_app_templates/metadata/iso.html +275 -0
- data/spec/test_app_templates/metadata/iso.xml +511 -0
- data/spec/test_app_templates/solr_documents +1 -0
- data/spec/views/catalog/_document_split.html.erb_spec.rb +5 -0
- data/spec/views/catalog/_index_split.html.erb_spec.rb +5 -0
- data/spec/views/catalog/_results_pagination.html.erb_spec.rb +9 -0
- data/spec/views/catalog/_show_downloads.html.erb_spec.rb +41 -0
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +39 -0
- data/template.rb +19 -0
- data/vendor/assets/images/layers-2x.png +0 -0
- data/vendor/assets/images/layers.png +0 -0
- data/vendor/assets/images/marker-icon-2x.png +0 -0
- data/vendor/assets/images/marker-icon.png +0 -0
- data/vendor/assets/images/marker-shadow.png +0 -0
- data/vendor/assets/javascripts/esri-leaflet.js +5 -0
- data/vendor/assets/javascripts/esri-leaflet.js.map +1 -0
- data/vendor/assets/javascripts/leaflet-iiif.js +302 -0
- data/vendor/assets/javascripts/leaflet-src.js.map +1 -0
- data/vendor/assets/javascripts/leaflet.js.erb +13922 -0
- data/vendor/assets/javascripts/native.history.js +1 -0
- data/vendor/assets/javascripts/readmore.js +618 -0
- data/vendor/assets/javascripts/readmore.js.map +1 -0
- data/vendor/assets/stylesheets/leaflet-label.css +54 -0
- data/vendor/assets/stylesheets/leaflet.css +635 -0
- metadata +967 -0
data/.solr_wrapper
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# GeoBlacklight Code of Conduct
|
|
2
|
+
|
|
3
|
+
GeoBlacklight is a collaborative project that welcomes participation from anyone interested in contributing to an open source discovery platform for GIS data. Involvement need not be in the form of contributing code. Members from across the geospatial professional spectrum are welcome to become involved in a way that fits their interests and expertise. Diversity of backgrounds is an asset to the project, as it is to many open source projects. Consequently, GeoBlacklight adheres to the [Contributor Covenant Code of Conduct](https://www.contributor-covenant.org/) as guiding principles for our work together.
|
|
4
|
+
|
|
5
|
+
## Contributor Covenant Code of Conduct
|
|
6
|
+
|
|
7
|
+
## Our Pledge
|
|
8
|
+
|
|
9
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
10
|
+
contributors and maintainers pledge to making participation in our project and
|
|
11
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
12
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
|
13
|
+
education, socio-economic status, nationality, personal appearance, race,
|
|
14
|
+
religion, or sexual identity and orientation.
|
|
15
|
+
|
|
16
|
+
## Our Standards
|
|
17
|
+
|
|
18
|
+
Examples of behavior that contributes to creating a positive environment
|
|
19
|
+
include:
|
|
20
|
+
|
|
21
|
+
* Using welcoming and inclusive language
|
|
22
|
+
* Being respectful of differing viewpoints and experiences
|
|
23
|
+
* Gracefully accepting constructive criticism
|
|
24
|
+
* Focusing on what is best for the community
|
|
25
|
+
* Showing empathy towards other community members
|
|
26
|
+
|
|
27
|
+
Examples of unacceptable behavior by participants include:
|
|
28
|
+
|
|
29
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
30
|
+
advances
|
|
31
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
32
|
+
* Public or private harassment
|
|
33
|
+
* Publishing others' private information, such as a physical or electronic
|
|
34
|
+
address, without explicit permission
|
|
35
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
36
|
+
professional setting
|
|
37
|
+
|
|
38
|
+
## Our Responsibilities
|
|
39
|
+
|
|
40
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
41
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
42
|
+
response to any instances of unacceptable behavior.
|
|
43
|
+
|
|
44
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
45
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
46
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
47
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
48
|
+
threatening, offensive, or harmful.
|
|
49
|
+
|
|
50
|
+
## Scope
|
|
51
|
+
|
|
52
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
53
|
+
when an individual is representing the project or its community. Examples of
|
|
54
|
+
representing a project or community include using an official project e-mail
|
|
55
|
+
address, posting via an official social media account, or acting as an appointed
|
|
56
|
+
representative at an online or offline event. Representation of a project may be
|
|
57
|
+
further defined and clarified by project maintainers.
|
|
58
|
+
|
|
59
|
+
## Enforcement
|
|
60
|
+
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported by contacting the project team at [geoblacklight-code-of-conduct@googlegroups.com](mailto:geoblacklight-code-of-conduct@googlegroups.com). All complaints will be reviewed and investigated and will result in a response that
|
|
63
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
64
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
65
|
+
Further details of specific enforcement policies may be posted separately.
|
|
66
|
+
|
|
67
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
68
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
69
|
+
members of the project's leadership.
|
|
70
|
+
|
|
71
|
+
## Attribution
|
|
72
|
+
|
|
73
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
74
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
75
|
+
|
|
76
|
+
[homepage]: https://www.contributor-covenant.org
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
## Contributing
|
|
2
|
+
GeoBlacklight is a collaborative open source projects where contributions are :sparkles:welcome:sparkles:. This contributing guide is borrowed in part from the [Samvera Contributing Guide](https://github.com/samvera/hydra/blob/master/CONTRIBUTING.md) and the [Blacklight Contributing Wiki](https://github.com/projectblacklight/blacklight/wiki/Contributing-to-Blacklight).
|
|
3
|
+
|
|
4
|
+
### Who can contribute?
|
|
5
|
+
**Anyone** is welcome to contribute to GeoBlacklight. We follow a set of contribution practices to maintain a technically sustainable and stable software project for everyone.
|
|
6
|
+
|
|
7
|
+
### Reporting issues
|
|
8
|
+
Did you find a bug in GeoBlacklight or interested in a new feature? Make sure to add an issue for it in the [issue tracker](https://github.com/geoblacklight/geoblacklight/issues).
|
|
9
|
+
|
|
10
|
+
- Make sure you have a [GitHub account](https://github.com/signup/free)
|
|
11
|
+
- Submit a [GitHub issue](./issues) by:
|
|
12
|
+
- Clearly describing the issue
|
|
13
|
+
- Provide a descriptive summary
|
|
14
|
+
- Explain the expected behavior
|
|
15
|
+
- Explain the actual behavior
|
|
16
|
+
- Provide steps to reproduce the actual behavior
|
|
17
|
+
|
|
18
|
+
### GeoBlacklight Software Versioning
|
|
19
|
+
GeoBlacklight follows the practice of [Semantic Versioning](https://semver.org/) for software releases. The declared semantically versioned public API includes:
|
|
20
|
+
- the GeoBlacklight-Schema
|
|
21
|
+
- the [public GeoBlacklight Ruby codebase classes](http://www.rubydoc.info/github/geoblacklight/geoblacklight/master/frames)
|
|
22
|
+
- the GeoBlacklight JavaScript interface
|
|
23
|
+
- the GeoBlacklight view interface
|
|
24
|
+
|
|
25
|
+
### Contributing code or documentation
|
|
26
|
+
GeoBlacklight welcomes code and documentation contributions. You do *not* need to be a "GeoBlacklight Committer" to contribute code or documentation. We follow the [pull request](https://help.github.com/articles/using-pull-requests/) model for contributing on GitHub. GeoBlacklight uses a suite of tests to express its features and protect from bugs:bug:.
|
|
27
|
+
|
|
28
|
+
When proposing major new features or changes that may introduce an API or schema change, please make sure to communicate with the [community](http://geoblacklight.org/connect) so the full implications are understood. Likely there are ways to introduce these changes in a backwards compatible way that others may be able to help with.
|
|
29
|
+
|
|
30
|
+
#### Pull request overview
|
|
31
|
+
1. Fork it ( http://github.com/my-github-username/geoblacklight/fork )
|
|
32
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
33
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
34
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
35
|
+
5. Create new Pull Request
|
|
36
|
+
|
|
37
|
+
#### Merging Changes
|
|
38
|
+
|
|
39
|
+
- It is considered "poor form" to merge your own request.
|
|
40
|
+
- Please take the time to review the changes and get a sense of what is being changed. Things to consider:
|
|
41
|
+
- Does the commit message explain what is going on?
|
|
42
|
+
- Does the code changes have tests? _Not all changes need new tests, some changes are refactorings_
|
|
43
|
+
- Do all new methods, modules, and classes have comments? Do changed methods, modules, and classes have comments?
|
|
44
|
+
- Does the commit contain more than it should? Are two separate concerns being addressed in one commit?
|
|
45
|
+
- Did the Travis tests complete successfully?
|
|
46
|
+
- If you are uncertain, bring other contributors into the conversation by creating a comment that includes their @username.
|
|
47
|
+
- If you like the pull request, but want others to chime in, create a +1 comment and tag a user.
|
|
48
|
+
|
|
49
|
+
If you wish to ask questions or participate further, email the [GeoBlacklight Working Group](https://groups.google.com/forum/#!forum/geoblacklight-working-group) at [geoblacklight-working-group@googlegroups.com](mailto:geoblacklight-working-group@googlegroups.com).
|
data/Gemfile
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
# Specify your gem's dependencies in geoblacklight.gemspec
|
|
4
|
+
gemspec
|
|
5
|
+
|
|
6
|
+
group :development, :test do
|
|
7
|
+
# See https://github.com/rails/rails/issues/32955
|
|
8
|
+
gem 'thor', '>= 0.19.0'
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# BEGIN ENGINE_CART BLOCK
|
|
12
|
+
# engine_cart: 0.10.0
|
|
13
|
+
# engine_cart stanza: 0.10.0
|
|
14
|
+
# the below comes from engine_cart, a gem used to test this Rails engine gem in the context of a Rails app.
|
|
15
|
+
file = File.expand_path('Gemfile', ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path('.internal_test_app', File.dirname(__FILE__)))
|
|
16
|
+
if File.exist?(file)
|
|
17
|
+
begin
|
|
18
|
+
eval_gemfile file
|
|
19
|
+
rescue Bundler::GemfileError => e
|
|
20
|
+
Bundler.ui.warn '[EngineCart] Skipping Rails application dependencies:'
|
|
21
|
+
Bundler.ui.warn e.message
|
|
22
|
+
end
|
|
23
|
+
else
|
|
24
|
+
Bundler.ui.warn "[EngineCart] Unable to find test application dependencies in #{file}, using placeholder dependencies"
|
|
25
|
+
|
|
26
|
+
if ENV['RAILS_VERSION']
|
|
27
|
+
if ENV['RAILS_VERSION'] == 'edge'
|
|
28
|
+
gem 'rails', github: 'rails/rails'
|
|
29
|
+
ENV['ENGINE_CART_RAILS_OPTIONS'] = '--edge --skip-turbolinks'
|
|
30
|
+
else
|
|
31
|
+
gem 'rails', ENV['RAILS_VERSION']
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
if File.exists?('spec/test_app_templates/Gemfile.extra')
|
|
37
|
+
eval File.read('spec/test_app_templates/Gemfile.extra'), nil, 'spec/test_app_templates/Gemfile.extra'
|
|
38
|
+
end
|
|
39
|
+
# END ENGINE_CART BLOCK
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2014 The Board of Trustees of the Leland Stanford Junior University.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
data/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# GeoBlacklight
|
|
2
|
+
|
|
3
|
+
[](https://circleci.com/gh/geoblacklight/geoblacklight) | [](https://coveralls.io/r/geoblacklight/geoblacklight?branch=coveralls) | [](https://github.com/geoblacklight/geoblacklight/releases)
|
|
4
|
+
|
|
5
|
+
GeoBlacklight is a world-class discovery platform for geospatial (GIS) holdings. It
|
|
6
|
+
is an open collaborative project aiming to build off of the successes
|
|
7
|
+
of the Blacklight Solr-powered discovery interface and the
|
|
8
|
+
multi-institutional [OpenGeoportal](http://opengeoportal.io/) and [OpenGeoMetadata](https://github.com/opengeometadata) federated metadata sharing
|
|
9
|
+
communities. We're actively looking for community input and development partners.
|
|
10
|
+
|
|
11
|
+
### [Installation](https://github.com/geoblacklight/geoblacklight/wiki/Installation)
|
|
12
|
+
|
|
13
|
+
In order to create a new GeoBlacklight application from the template, run the following:
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
$ rails new app-name -m https://raw.githubusercontent.com/geoblacklight/geoblacklight/master/template.rb
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
To launch app:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
$ cd app-name
|
|
23
|
+
$ rake geoblacklight:server
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Note that this method launches an application that does not have any fixture records to be examined. You may want to launch a test application that has fixture data loaded into a Solr core. If so, refer to the [development guide](https://github.com/geoblacklight/geoblacklight/wiki/Development). For further information on installing a blank app, see the [installation guide](https://github.com/geoblacklight/geoblacklight/wiki/Installation)
|
|
27
|
+
|
|
28
|
+
### Webpacker
|
|
29
|
+
GeoBlacklight can use [Webpacker](https://github.com/rails/webpacker) in order to manage JavaScript dependencies and assets, which requires that either [Yarn](https://yarnpkg.com/) or the [Node Package Manager](https://www.npmjs.com/) be available on the system where this is deployed. How Webpacker interacts with Rails is overviewed within its own documentation, including [how best to configure JavaScript processing settings](https://github.com/rails/webpacker/blob/master/docs/webpack.md). We encourage you to review this.
|
|
30
|
+
|
|
31
|
+
### Contributing
|
|
32
|
+
Interested in contributing to GeoBlacklight? Please see our [contributing](CONTRIBUTING.md) guide.
|
|
33
|
+
|
|
34
|
+
### [Development](https://github.com/geoblacklight/geoblacklight/wiki/Development)
|
|
35
|
+
|
|
36
|
+
See the [development guide](https://github.com/geoblacklight/geoblacklight/wiki/Development) on our wiki for more information about setting up your development environment.
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
Please see the full documentation hosted on our [Wiki](https://github.com/geoblacklight/geoblacklight/wiki)
|
data/Rakefile
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
require 'rails'
|
|
3
|
+
begin
|
|
4
|
+
require 'bundler/setup'
|
|
5
|
+
require 'bundler/gem_tasks'
|
|
6
|
+
rescue LoadError
|
|
7
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
require 'solr_wrapper'
|
|
11
|
+
require 'solr_wrapper/rake_task'
|
|
12
|
+
require 'engine_cart/rake_task'
|
|
13
|
+
require 'rspec/core/rake_task'
|
|
14
|
+
require 'rubocop/rake_task'
|
|
15
|
+
require 'solr_wrapper/rake_task'
|
|
16
|
+
|
|
17
|
+
desc 'Run RuboCop style checker'
|
|
18
|
+
RuboCop::RakeTask.new(:rubocop) do |task|
|
|
19
|
+
task.requires << 'rubocop-rspec'
|
|
20
|
+
task.fail_on_error = true
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
task(:spec).clear
|
|
24
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
25
|
+
t.verbose = false
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
desc 'Run Teaspoon JavaScript tests'
|
|
29
|
+
task :teaspoon do
|
|
30
|
+
system('teaspoon --require=.internal_test_app/spec/teaspoon_env.rb')
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
desc 'Run test suite'
|
|
34
|
+
task ci: ['geoblacklight:generate'] do
|
|
35
|
+
SolrWrapper.wrap do |solr|
|
|
36
|
+
solr.with_collection(name: 'blacklight-core', dir: File.join(File.expand_path('.', File.dirname(__FILE__)), 'solr', 'conf')) do
|
|
37
|
+
within_test_app do
|
|
38
|
+
system 'RAILS_ENV=test rake geoblacklight:index:seed'
|
|
39
|
+
system 'RAILS_ENV=test bundle exec rails webpacker:compile'
|
|
40
|
+
end
|
|
41
|
+
Rake::Task['geoblacklight:coverage'].invoke
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
# Run JavaScript tests
|
|
45
|
+
Rake::Task['teaspoon'].invoke
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
namespace :geoblacklight do
|
|
49
|
+
desc 'Run tests with coverage'
|
|
50
|
+
task :coverage do
|
|
51
|
+
ENV['COVERAGE'] = 'true'
|
|
52
|
+
Rake::Task['spec'].invoke
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
desc 'Create the test rails app'
|
|
56
|
+
task generate: ['engine_cart:generate'] do
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
namespace :internal do
|
|
60
|
+
task seed: ['engine_cart:generate'] do
|
|
61
|
+
within_test_app do
|
|
62
|
+
system 'bundle exec rake geoblacklight:index:seed'
|
|
63
|
+
system 'bundle exec rake geoblacklight:downloads:mkdir'
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
desc 'Run Solr and GeoBlacklight for interactive development'
|
|
69
|
+
task :server, [:rails_server_args] do |_t, args|
|
|
70
|
+
if File.exist? EngineCart.destination
|
|
71
|
+
within_test_app do
|
|
72
|
+
system 'bundle update'
|
|
73
|
+
end
|
|
74
|
+
else
|
|
75
|
+
Rake::Task['engine_cart:generate'].invoke
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
SolrWrapper.wrap(port: '8983') do |solr|
|
|
79
|
+
solr.with_collection(name: 'blacklight-core', dir: File.join(File.expand_path('.', File.dirname(__FILE__)), 'solr', 'conf')) do
|
|
80
|
+
Rake::Task['geoblacklight:internal:seed'].invoke
|
|
81
|
+
|
|
82
|
+
within_test_app do
|
|
83
|
+
puts "\nSolr server running: http://localhost:#{solr.port}/solr/#/blacklight-core"
|
|
84
|
+
puts "\n^C to stop"
|
|
85
|
+
puts ' '
|
|
86
|
+
begin
|
|
87
|
+
system "bundle exec rails s #{args[:rails_server_args]}"
|
|
88
|
+
rescue Interrupt
|
|
89
|
+
puts 'Shutting down...'
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
desc 'Run Solr and seed with sample data'
|
|
97
|
+
task :solr do
|
|
98
|
+
if File.exist? EngineCart.destination
|
|
99
|
+
within_test_app do
|
|
100
|
+
system 'bundle update'
|
|
101
|
+
end
|
|
102
|
+
else
|
|
103
|
+
Rake::Task['engine_cart:generate'].invoke
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
SolrWrapper.wrap(port: '8983') do |solr|
|
|
107
|
+
solr.with_collection(name: 'blacklight-core', dir: File.join(File.expand_path('.', File.dirname(__FILE__)), 'solr', 'conf')) do
|
|
108
|
+
Rake::Task['geoblacklight:internal:seed'].invoke
|
|
109
|
+
|
|
110
|
+
within_test_app do
|
|
111
|
+
puts "\nSolr server running: http://localhost:#{solr.port}/solr/#/blacklight-core"
|
|
112
|
+
puts "\n^C to stop"
|
|
113
|
+
puts ' '
|
|
114
|
+
begin
|
|
115
|
+
sleep
|
|
116
|
+
rescue Interrupt
|
|
117
|
+
puts 'Shutting down...'
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
task default: [:ci]
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 28" aria-labelledby="aria-label-arrow-circle-down">
|
|
2
|
+
<title>arrow-circle-down</title>
|
|
3
|
+
<path fill="#6c757d" d="M20.06 14.02c0-.27-.1-.52-.28-.7l-1.42-1.43c-.19-.19-.44-.28-.7-.28s-.52.1-.7.28L14 14.84V7a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v7.84L7.05 11.9c-.19-.19-.44-.3-.7-.3s-.52.11-.7.3l-1.43 1.42c-.19.19-.28.44-.28.7s.1.52.28.7l7.08 7.09c.18.18.44.28.7.28s.52-.1.7-.28l7.08-7.08a.98.98 0 0 0 .28-.7zM24 14a12 12 0 1 1-24 0 12 12 0 0 1 24 0z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-labelledby="aria-label-baruch-cuny">
|
|
2
|
+
<title>
|
|
3
|
+
baruch-cuny
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M28.66 22.76c-.97-7.44-9.68-8.5-9.68-8.5 6.18-3.64 6.72-6.9 6.72-7.7C25.85 1.04 20.73.4 20.73.4 19.38-.03 3.28.24 3.28.24c1.57.87 1.55 2.52 1.55 2.52.1.67.3 26.13.3 26.13-.3 2.48-1.8 2.96-1.8 2.96l17.42-.1c9.13-.42 7.92-8.99 7.92-8.99zm-11.44 7.4s-5.15.84-5.35-2-.05-14.85-.05-14.85l-.1-9.56c-.05-2.1 2.73-2.02 2.73-2.02 5.8 0 5.25 5.85 5.25 5.85 0 3.19-4.87 7.12-4.87 7.12.44.1 6.67 1.54 7.11 9.36 0 0 .7 5.45-4.73 6.1z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 32" aria-labelledby="aria-label-berkeley">
|
|
2
|
+
<title>
|
|
3
|
+
berkeley
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M16.07.13c0-.22 0-.22-.82-.22-.31 0-.59.03-1.2.03-.71 0-1.6-.03-2.01-.03-.82 0-.84 0-.84.22s.44.42 1.23.42c.61 0 .98.17.98 8.3 0 3.45-.3 4.13-1.8 5-.93.54-1.83.56-2.82.56-3.78 0-4.35-2.31-4.35-4.25v-8.7c0-.74.03-.96.86-.96s.94-.05.94-.3-.15-.34-.37-.34L2.62-.1C1.47-.11 1.02-.14.5-.14c-.37 0-.54.08-.54.3 0 .3.1.34 1.22.34.7 0 .82.71.82 1.5v7.72c0 4.22 2.38 5.43 6.04 5.43 1.87 0 3.12-.25 4.1-.84 1.43-.86 2.02-1.82 2.02-5.43 0-3.12.02-4.89.02-6.14 0-2.14.35-2.19 1.16-2.19.74 0 .74-.2.74-.42zM28.43 21.22c0-.13-.3-.57-.47-.94-.12-.24-.14-.51-.22-.51-.17 0-.32.51-.39.83-.12.61-1.8 2.36-4.74 2.36-4 0-6.4-2.78-6.4-6.73 0-4.45 2.4-7.4 6.67-7.4 2.6 0 4.32.84 4.47 1.62.05.2.1.45.27.45.1 0 .24-.08.24-.2 0-1.06.15-1.6.15-1.92 0-.12-.24-.27-.32-.27-.37 0-1.52-.37-3.49-.37-6.88 0-10.49 3.44-10.49 8.36 0 4.94 3.1 7.15 7.52 7.15 4.94 0 7.2-2.21 7.2-2.43z"/>
|
|
6
|
+
<path fill="#6c757d" d="M40.5 28c0-2.3-1.5-2.92-2.66-3.51-.5-.25-.94-.35-.94-.42s.35-.2.86-.54c.6-.4 2.02-1.28 2.02-3.32 0-1.45-.94-3.39-4.13-3.39-2.21 0-4.6.15-5.11.15-.86 0-1.62-.03-2.38-.03-.42 0-.5.05-.5.3s.08.3 1.2.3c.7 0 1.09.21 1.09 2.15v11.18c0 .37-.05.42-1.16.42-.54 0-.68.03-.68.35 0 .24.17.27.41.27.8 0 1.33-.1 2.36-.1 1.08 0 3.32.24 4.35.24 3.05 0 5.26-1.3 5.26-4.05zm-3.18-7c0 2.09-.64 2.46-1.35 3 0 0-1.03-.27-2.65-.27-.74 0-.91-.03-.91-.35v-5.23c0-.5.02-.71 1.64-.71 2.34 0 3.27 2.33 3.27 3.56zm.42 7.2c0 2.14-1.03 3.3-3.24 3.3-.7 0-1.53-.1-1.8-.4-.22-.25-.3-1.55-.3-1.77v-4.4c0-.54.33-.64.9-.64 2.67 0 4.44 1.65 4.44 3.9z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 28" aria-labelledby="aria-label-book">
|
|
2
|
+
<title>
|
|
3
|
+
book
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M25.6 7.47c.4.56.5 1.3.29 2.02l-4.3 14.15A3.41 3.41 0 0 1 18.5 26H4.05c-1.6 0-3.3-1.27-3.87-2.9a2.9 2.9 0 0 1-.03-1.97c.03-.32.09-.63.1-1 .02-.25-.12-.46-.09-.65.06-.37.4-.64.64-1.06.47-.78 1-2.05 1.17-2.86.08-.3-.07-.64 0-.9.08-.3.38-.52.54-.8.42-.72.96-2.1 1.04-2.84.03-.33-.12-.7-.03-.94.11-.36.45-.52.69-.83.37-.52 1-2 1.1-2.83.02-.26-.13-.53-.08-.81.06-.3.43-.6.68-.97.66-.97.78-3.1 2.77-2.55l-.02.05c.27-.06.53-.14.8-.14h11.9c.72 0 1.38.33 1.77.88.4.56.5 1.3.28 2.03l-4.28 14.15C18.41 21.46 18 22 16.02 22H2.44c-.2 0-.45.05-.6.23-.12.2-.14.33-.01.68.31.9 1.39 1.09 2.25 1.09H18.5c.58 0 1.25-.33 1.42-.9l4.7-15.41c.08-.3.08-.61.07-.9.36.15.69.37.92.68zM8.99 7.5c-.09.28.07.5.35.5h9.5c.26 0 .56-.22.65-.5l.33-1c.1-.28-.06-.5-.34-.5h-9.5c-.27 0-.56.22-.66.5zm-1.3 4c-.09.28.07.5.35.5h9.5c.27 0 .56-.22.66-.5l.33-1c.09-.28-.07-.5-.35-.5h-9.5c-.26 0-.56.22-.65.5z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 28" aria-labelledby="aria-label-bookmark">
|
|
2
|
+
<title>
|
|
3
|
+
bookmark
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M18.19 2c.23 0 .47.05.69.14.68.27 1.12.9 1.12 1.61v20.14c0 .7-.44 1.34-1.12 1.61-.22.1-.46.13-.7.13a1.9 1.9 0 0 1-1.29-.5L10 18.5l-6.9 6.63c-.35.32-.8.51-1.29.51-.23 0-.47-.05-.69-.14A1.73 1.73 0 0 1 0 23.9V3.74c0-.7.44-1.34 1.12-1.6.22-.1.46-.15.7-.15h16.37z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-labelledby="aria-label-cd-rom">
|
|
2
|
+
<title>
|
|
3
|
+
cd-rom
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M11.62 20.54c-.28.36-.5.76-.65 1.2a8 8 0 0 1-3.87-4.48l1.37-.17c.6 1.5 1.73 2.7 3.15 3.45zm-5.87-3.1l-1.33.16c.9 3.16 3.23 5.71 6.25 6.93v-1.2l.02-.23a9.37 9.37 0 0 1-4.94-5.67zm19.16-5.7c-1-3.54-3.78-6.31-7.31-7.32l-.17 1.33a9.38 9.38 0 0 1 6.15 6.15l1.33-.16zM17.27 7.1l-.17 1.36a6.68 6.68 0 0 1 3.77 3.77l1.37-.17a8 8 0 0 0-4.97-4.96zm-2.6 11.56a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-1.34a2.67 2.67 0 1 0 0-5.34 2.67 2.67 0 0 0 0 5.34zm10.58 7.73h-.85v3.22h1.06c.9 0 1.36-.63 1.36-1.53 0-1.2-.55-1.69-1.57-1.69zM32 23.33V30a2 2 0 0 1-2 2H15.33a2 2 0 0 1-2-2v-6.67c0-1.1.9-2 2-2H30a2 2 0 0 1 2 2zm-9.62 3.93h-1.15c-.1.68-.5 1.14-1.23 1.14-.98 0-1.47-.74-1.47-1.7 0-1 .47-1.76 1.47-1.76.63 0 1.1.43 1.18.9h1.16C22.2 24.64 21.18 24 20 24c-1.65 0-2.67 1.16-2.67 2.7 0 1.53 1.04 2.63 2.67 2.63 1.4 0 2.27-.85 2.38-2.07zm5.62-.62c0-1.62-.99-2.52-2.46-2.52H23.2v5.1h2.34c1.56 0 2.46-1.01 2.46-2.58zM2.67 14.67a12.01 12.01 0 1 1 23.3 4h2.8A14.63 14.63 0 0 0 14.67 0a14.67 14.67 0 0 0-4 28.77v-2.8c-4.66-1.66-8-6.1-8-11.3z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 32" aria-labelledby="aria-label-chicago">
|
|
2
|
+
<title>
|
|
3
|
+
chicago
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M9.27.95c-2.6.07-6.25.31-7.63.49l-.23.03v8.3c0 8.91 0 8.6.24 9.92a13.18 13.18 0 0 0 8.45 10.16c1.24.49 2.77.87 3.21.8.12-.01.55-.11.96-.2 3.81-.96 6.79-3.03 8.59-5.97a14.66 14.66 0 0 0 1.9-5.44c.1-.61.11-.68.12-9.1.01-8.09.01-8.48-.07-8.48L24 1.39C19.77.99 13.91.8 9.27.95zm2.24 1.5c.42.06.88.2 1.23.36l.25.11v3.54c0 2.8-.02 3.52-.06 3.5a4.77 4.77 0 0 0-2.6-.5c-.2.03-.8.14-1.34.26-1.26.27-1.82.35-2.4.35h-.47v-7.2l.27.03c.15.03.67.04 1.16.04h.9l.52-.18a5.28 5.28 0 0 1 2.54-.3zm5.22.14a9 9 0 0 0 3.21.39l.53-.04v7.18h-.3c-.54 0-1.45-.13-3.2-.47a5.52 5.52 0 0 0-1.99-.2c-.67.08-.94.17-1.63.52-.02 0-.03-1.57-.02-3.5l.01-3.52.42-.16a4.42 4.42 0 0 1 2.97-.2zM4.28 4.27c.48.36.44 1.09-.08 1.33-.6.3-1.2-.2-1.08-.87a.83.83 0 0 1 .48-.54c.2-.06.53-.03.68.08zm17.22.34c.1 0 .28-.03.41-.07.3-.09.5-.09.71 0 .27.12.41.27.5.58.04.1.03.1-.08.06-.24-.1-.42-.05-1.1.26-.64.3-1.05.42-1.14.37a3.2 3.2 0 0 1-.05-.7v-.68l.3.1c.15.04.36.08.45.08zm-15.71.4v.45l-.87-.02L4.9 5l-.01-.43h.9V5zM4.2 7.3c.54.27.54 1.11-.01 1.37-.37.19-.86.03-1.03-.32-.19-.4-.05-.86.33-1.04a.74.74 0 0 1 .71 0zm17.13.08c.24.01.58 0 .75-.02.19-.01.4-.03.47-.02.17.02.47.33.55.55.06.2.04.24-.1.17-.2-.11-.5-.07-.8.1-.4.22-.93.4-1.25.44l-.25.04V7.28l.1.04c.06.02.3.04.53.05zM5.8 8.05v.42h-.9v-.85h.9v.43zm8.01 3.01c.4.17.73.22.87.14.1-.04.1-.04.1.05 0 .06-.03.15-.07.2-.09.1-.08.1.1.07.1-.02.24-.09.32-.16l.13-.13v.18c0 .21-.15.37-.42.45l-.18.06.13.11c.1.08.14.16.14.25 0 .18.16.38.3.38.15 0 .15.06.02.16-.07.05-.13.05-.22.02-.15-.06-.16-.04-.08.16.04.1.07.22.07.28 0 .2.1.48.24.6.22.23.04.27-.2.05l-.16-.14.07.2c.06.19.06.23 0 .53-.06.18-.11.35-.14.37-.03.03-.1-.02-.23-.16-.19-.22-.25-.23-.11-.03.18.28.28 1.06.14 1.06-.04 0-.12-.08-.18-.18-.13-.24-.19-.24-.12-.02.06.25.11.34.35.6.12.13.28.37.35.54l.14.29-.07.54c-.04.3-.08.55-.1.57-.04.05-.12-.04-.24-.27a.9.9 0 0 0-.14-.23c-.1 0 .14.6.3.77.05.06.11.17.14.26.07.2.08.61.01.61-.02 0-.1-.08-.17-.19-.07-.1-.13-.18-.14-.17l.08.34c.16.48.15 1.13 0 1.5l-.12.29-.14-.58c-.08-.32-.16-.57-.2-.56l-.31.4c-.16.22-.29.38-.3.37l-.07-.36a4.93 4.93 0 0 0-.5-1.7c-.07 0-.73 1.89-.8 2.24a3 3 0 0 0 .05 1.27c.04.12.06.22.05.22-.05 0-.26-.5-.34-.8-.21-.76-.16-1.56.11-1.84.13-.14.16-.36.05-.5-.05-.07-.07-.07-.07-.02 0 .1-.09.39-.14.47-.06.1-.22-.01-.28-.19-.07-.2 0-.48.18-.78s.2-.4.13-.5c-.06-.09-.07-.08-.16.09-.12.25-.22.26-.3.01a2.1 2.1 0 0 1 .46-1.82c.09-.1.16-.22.15-.24s-.11.02-.22.1c-.26.17-.3.12-.26-.22.06-.52.4-.97.75-1.04.18-.03.19-.05.08-.17-.04-.04-.07-.09-.06-.1l.34-.1c.4-.09.58-.2.65-.42.08-.25.02-.27-.19-.07-.13.13-.23.18-.33.18-.17 0-.23-.08-.1-.16.12-.09.13-.27.02-.38-.06-.06-.13-.07-.3-.05-.18.02-.47-.06-.47-.13a.39.39 0 0 0-.03-.1c-.02-.06 0-.07.07-.05.07.02.22-.02.44-.12.32-.13.35-.14.53-.09.1.04.26.13.35.22l.18.16c.04 0 .02-.24-.03-.35-.06-.11-.36-.31-.48-.31-.04 0-.12-.08-.18-.17a.69.69 0 0 0-.57-.35c-.15 0-.19-.02-.27-.16-.13-.22-.28-.29-.46-.21a.45.45 0 0 0-.18.17c-.06.14-.09.14-.2-.02-.2-.24-.08-.66.24-.86l.19-.1c.02 0 .08.1.13.22.09.2.2.3.26.24.02-.02 0-.12-.05-.22s-.08-.22-.06-.26c.04-.08.23-.1.31-.01.05.05.09.02.18-.1.27-.32.66-.35 1.25-.1zm-4.85.39c.09.06.2.2.27.31.1.2.12.27.13.72 0 .57.02.62.33.7l.2.05-.08.14c-.14.24-.25.26-.77.16-.1-.02-.15.02-.33.23-.26.3-.29.44-.14.66.1.15.13.43.05.47-.07.05-.05.3.03.38.1.1.25.09.68-.02.45-.12.55-.12.77.02.1.06.24.12.3.12.08 0 .1-.03.1-.16 0-.18-.05-.25-.31-.42-.22-.14-.28-.28-.23-.51.04-.2.26-.7.31-.7.02 0 .06.08.1.17.07.24.27.45.7.74.55.4.7.75.54 1.37-.08.33-.09.36-.01.54.07.19.07.2-.01.35-.26.44-.3 1.26-.08 1.65.1.2.11.25.09.58-.03.39.02.57.23.8.08.08.08.12.03.34-.04.2-.04.32 0 .58.03.18.05.34.04.36-.02 0-.13-.2-.26-.48-.14-.3-.31-.58-.43-.71a1.8 1.8 0 0 0-1.07-.53l-.3-.03v.13c0 .09.08.23.2.38.1.13.2.32.23.4.06.2.06.75 0 .75-.07 0-.55-.48-.62-.63a1.39 1.39 0 0 1-.11-.3l-.03-.16-.2.18c-.28.29-.42.62-.42 1.03-.01.2-.02.33-.04.31s-.1-.2-.18-.42l-.15-.38.42-.54a7 7 0 0 0 .93-1.54l.04-.11-.11.09c-.1.1-.73.91-1.15 1.5l-.23.32-.18-.34-.17-.35.15-.19.3-.4c.17-.25.6-1.17.56-1.2-.01-.02-.27.36-.58.82l-.55.85-.14-.11a.53.53 0 0 0-.18-.12c-.04 0-.14.37-.14.56 0 .17-.2.43-.64.81-.31.27-.34.26-.34-.22v-.28l.37-.43c.36-.4.85-1.12 1.08-1.57l.1-.21-.15.14c-.08.07-.43.5-.79.94l-.65.82c-.01.02-.04-.01-.07-.06l-.19-.24-.13-.16.34-.49c.35-.5.81-1.4.78-1.5-.02-.04-.31.37-.67.9-.46.7-.66.98-.71.96-.1-.04-.09-.14.02-.75.06-.28.1-.57.1-.63 0-.38-.3.51-.36 1.06l-.03.3-.24.06c-.28.07-.3.14-.07.36l.14.14-.02.68c-.01.67-.01.68.12.86.16.23.16.25 0 .25a.7.7 0 0 0-.27.07.44.44 0 0 1-.14.07c-.01-.01-.06-.23-.1-.49A15.55 15.55 0 0 1 5 17.24c-.03-.04-.15.23-.92 2.1-.77 1.9-.75 1.84-.83 1.84-.08 0-.11-.11-.11-.47 0-.9.76-2.84 1.5-3.8.16-.22.18-.3.1-.3-.03 0-.35.29-.7.64-.73.7-1.08.92-1.45.92-.1 0-.2-.02-.2-.04 0-.03.47-.5 1.04-1.04.97-.91 1.34-1.3 1.3-1.35l-.46.21c-.5.25-.82.34-1.22.34-.3 0-.57-.05-.57-.1a5 5 0 0 1 .61-.37c.7-.38 1.3-.76 1.6-1.02.24-.21.47-.52.47-.64 0-.07-.06-.05-.43.13-.52.24-.94.36-1.33.37-.3 0-.64-.05-.64-.1 0-.03.13-.11.28-.2.5-.3 2-1.23 2.76-1.73.63-.4.8-.49.95-.49.1 0 .21-.02.25-.04.05-.04 0-.05-.18-.05-.41 0-.56-.14-.47-.44l.04-.18.14.16c.14.14.15.15.46.12.17-.02.53-.1.79-.2.58-.2.92-.22 1.15-.06zm10.35 0c.21.07.5.16.63.22s.35.1.48.1c.15.01.25.04.25.07 0 .08-.19.2-.32.2-.15 0-.18.1-.02.12.3.08.8.28 1.04.44.28.19.34.28.21.3-.05.01.21.31.92 1.02.73.74.96 1 .89 1-.2 0-.78-.4-1.46-1-.18-.16-.32-.26-.32-.23 0 .06.17.25 1 1.12.28.3.64.71.81.93.3.38.64.9.64.97 0 .12-1-.33-1.31-.6-.11-.1-.43-.51-.72-.95-.47-.71-.67-.95-.73-.88-.02.01.3.56.69 1.21.85 1.43 1.04 1.8 1.2 2.42.12.42.13.55.13 1.4 0 1.14-.1 1.77-.28 1.77-.06 0-.12-.2-.6-2.16-.48-1.95-.8-2.87-1.18-3.32l-.12-.14.12.33c.55 1.43.86 2.6.94 3.46l.03.35-.27.1c-.15.05-.4.16-.55.26l-.27.18v-.25c0-.72-.17-1.76-.43-2.56-.15-.46-.25-.58-.21-.24.08.58.22 1.63.25 1.77 0 .1 0 .15-.03.13-.02-.02-.27-.3-.53-.63-.54-.65-.84-.96-.84-.85 0 .1.4.79.66 1.13.13.17.35.4.5.53l.25.23v.3c0 .38-.07.69-.15.66-.03 0-.41-.44-.84-.95-.88-1.04-1.14-1.32-1.16-1.25-.02.05.15.4.42.87.14.23.39.51.88 1l.68.67-.15.23c-.25.39-.24.39-.65.09-.19-.15-.36-.3-.36-.33l-.06-.24c-.04-.19-.05-.2-.23-.2-.19 0-.22-.02-.64-.45-.46-.47-.6-.57-.5-.33.09.24.36.66.55.83l.19.17-.14.24c-.08.14-.14.3-.14.33 0 .15-.1.1-.5-.29-.48-.46-.57-.5-.4-.15.09.17.4.5.68.7l.13.09-.1.28c-.06.17-.17.34-.28.44-.33.31-1 .86-1.02.83a1.99 1.99 0 0 1 .93-1.18c.21-.1.23-.2.08-.36-.09-.08-.14-.1-.47-.08l-.37.03v-.15c0-.08-.03-.31-.07-.52l-.1-.6-.04-.23-.22.14c-.3.19-.36.3-.41.68-.03.18-.08.39-.13.47l-.23.45-.16.3-.05-.16c-.03-.08-.05-.29-.05-.46 0-.27-.02-.35-.15-.55-.2-.31-.26-.47-.32-.82-.04-.26-.03-.3.06-.42.13-.19.16-.5.06-.87-.08-.28-.08-.35-.01-.95.1-.87.06-1.04-.3-1.48l-.17-.2.05-.3.05-.3.47.03.14-.29c.08-.15.23-.37.35-.47.21-.21.23-.27.12-.52-.03-.1-.06-.18-.05-.2l.22.1c.31.17.35.31.21.72-.12.35-.1.4.12.4.35 0 .77-.27.83-.51.08-.39.12-.48.3-.67.23-.26.24-.41 0-.52-.13-.06-.14-.09-.13-.22l.02-.15-.23.2c-.27.27-.4.3-.7.2-.19-.08-.26-.08-.4-.04a.52.52 0 0 1-.2.04c-.06-.06.1-.25.25-.3.26-.1.48-.23.57-.37.06-.08.07-.13.01-.26-.08-.24-.02-.37.29-.7l.27-.3.24.03c.16.02.27 0 .34-.04.31-.22.76-.25 1.32-.09zm-8.48.88c0 .05.06.15.12.22l.11.13h.68c.74.01.9.06 1.05.29.08.12.08.13 0 .09a2.33 2.33 0 0 0-1.09 0c-.62.1-.83.07-1.02-.13-.15-.17-.17-.33-.04-.54.1-.17.2-.2.2-.06zm2.55 7.2c.12.38.15 1 .07 1.51-.02.15-.02.4 0 .54l.03.28.06-.28c.04-.15.14-.4.22-.54.16-.31.49-.66.55-.6.08.1.24.84.24 1.12 0 .38-.06.57-.37 1.09a1.5 1.5 0 0 0-.3.77c-.02.2-.03.38-.02.41.01.03.08-.12.15-.33.08-.24.23-.54.38-.78.27-.4.35-.61.47-1.23.04-.23.12-.46.2-.6.14-.22.25-.29.25-.15 0 .05.02.13.06.18.2.28.12.78-.23 1.42-.23.44-.23.44-.15.44.17 0 .46-.35.55-.66.04-.12.04-.12.11.05.14.32.1.44-.21.67-.1.07-.22.22-.27.33-.1.2-.14.55-.06.54.06 0 .49-.56.63-.83.1-.18.15-.35.18-.6.03-.28.06-.4.22-.66.17-.29.27-.58.37-1.08.01-.06.08-.16.15-.24l.12-.14.06.36c.1.56.1.93-.03 1.17l-.1.2.16-.1c.32-.2.44-.24.67-.24h.24l-.3.14c-.32.17-.46.33-.7.89-.24.6-.3.67-.63 1-.34.32-.4.42-.24.42.21 0 .67-.3 1-.65.2-.2.53-.5.75-.65.54-.39.72-.67.94-1.37.1-.33.34-.77.42-.77.14 0 .11.69-.05 1.28-.1.36-.15.47-.46.84l-.16.2.18-.08c.25-.1.85-.43 1.1-.6.4-.27.72-.62 1.06-1.14.38-.57.55-.74 1.02-.99.44-.23.5-.22.3.05-.09.12-.17.26-.18.32-.1.52-.15.69-.3.95-.08.17-.14.3-.1.3.02 0 .12-.04.23-.1s.22-.08.26-.07c.05.02-.07.17-.41.52-.69.7-.82.75-2.4 1.01-.76.13-1.19.3-1.98.84-.64.43-.97.61-1.46.8-.13.03-.22.09-.22.1 0 .03.15.11.34.2.29.14.39.16.68.16.33 0 .35 0 1.16-.42.45-.23.84-.41.84-.4.02.02-.2.26-.48.56-.55.56-.72.67-1.4.86-.32.09-.49.1-1.31.1-.86 0-.96.02-1.1.1-.25.15-.24.22.02.22.24 0 .35.04.58.24.4.35.83.4 1.1.14.2-.2.45-.3.73-.3.23 0 .56.14.69.29.07.08.07.09-.06.11-.07.01-.2.1-.27.18l-.37.4c-.28.32-.52.41-.96.39-.3-.02-.34-.04-.87-.36-.78-.5-.95-.53-1.07-.21-.06.15.01.31.31.67.43.52.45.7.15 1.01-.24.24-.43.27-.73.12-.17-.08-.65-.55-.61-.6 0 0 .1 0 .18.03.22.07.53.06.6 0 .1-.1.06-.26-.15-.67a1.96 1.96 0 0 1-.22-.55c0-.08-.02-.14-.05-.14s-.18.12-.34.27c-.38.36-.8.66-1.06.77-.23.1-.62.12-.77.03a6.58 6.58 0 0 1-.62-.54 6.9 6.9 0 0 0-1.26-1.02l-.2-.12h.52c.86 0 1.15.12 1.67.66.31.33.37.37.52.37.09 0 .23-.04.3-.09a4 4 0 0 0 .77-.83c.06-.1.05-.11-.12-.18a2.9 2.9 0 0 0-1.74-.15c-.11.03-.2.05-.2.02 0-.08.52-.56.72-.66.44-.23.92-.1 1.35.35.27.28.31.2.1-.18-.3-.55-1.04-.81-1.73-.6-.14.03-.48.18-.78.32-.63.31-.8.33-1.21.12a4.48 4.48 0 0 1-1.5-1.26c-.2-.28-.19-.33 0-.2.89.58 1.67.7 2.37.37.58-.28 1.23-.24 2.14.12.23.1.43.17.44.17.02 0-.09-.1-.24-.24a2.64 2.64 0 0 0-1.09-.56 3.88 3.88 0 0 0-1.85.16c-.32.13-.54.1-.98-.16a2.29 2.29 0 0 0-.47-.24c-.1 0 .1-.16.39-.3.29-.16.56-.2.9-.12.15.03.28.05.3.03 0-.01-.09-.08-.2-.15a2 2 0 0 0-.82-.22 15.5 15.5 0 0 1-2.99-.7c-.27-.1-.27-.1-.18-.2.16-.15.51-.2.88-.1.06.03 0-.07-.17-.22-.3-.29-.47-.6-.48-.84l.04-.57c.03-.34.02-.43-.04-.56-.04-.08-.07-.16-.06-.17.05-.06.4.06.51.17.15.16.2.34.27.99.06.5.16.8.32.95.09.08.09.07.09-.17 0-.18.02-.28.08-.35.12-.13.14-.13.21.05.1.2.4.5.64.6.25.12.3.12.36 0 .04-.08.03-.14-.04-.3-.2-.4-.28-.98-.22-1.5.02-.27.04-.31.1-.26.1.09.28.5.44 1.05.12.42.2.59.4.9.15.22.32.43.38.49l.1.1.03-.11c.02-.06 0-.31-.04-.56-.08-.53-.05-.75.14-1.04.14-.21.19-.23.23-.06.02.06.16.24.31.4.31.3.3.29.28.98 0 .24.01.32.1.45.14.2.62.53 1.32.91.66.37.92.56 1.2.87.22.26.26.23.12-.09-.1-.2-.35-.41-1.06-.88a3.1 3.1 0 0 1-1.1-1.1c-.12-.26-.13-.32-.16-1.14l-.03-.89-.2-.22c-.19-.2-.19-.2-.09-.2.06 0 .2.03.31.08.56.25 1.11 1.07 1.4 2.1.15.5.18.55.48.87.13.14.32.36.42.5.1.12.17.19.15.13l-.16-.6a5.56 5.56 0 0 1-.02-2.34c.11-.4.41-1.08.48-1.08.03 0 .09.16.15.34zm-5.84 1.21c0 .18.03.43.07.56.04.12.06.23.05.25-.06.05-.6-.56-.6-.69 0-.06.38-.44.45-.44.02 0 .03.15.03.32zm12.2.45c.3.27.3.3.06.52-.16.13-.16.13-.33.05-.19-.1-.18-.03-.09-.63.01-.1.04-.19.06-.19.02 0 .15.11.3.25zm1.75 1.48c-.14.45-.5 1.18-.64 1.31-.06.06-.1.07-.14.03-.08-.08-.1-.5-.04-.83.05-.3.06-.31.3-.45.13-.07.32-.22.42-.33.1-.1.2-.18.21-.16l-.1.43zm-15.54.05c.12.37.04 1.1-.13 1.1-.1 0-.32-.55-.61-1.5 0-.02.14.02.33.1.31.12.36.16.4.3z"/>
|
|
6
|
+
<path fill="#6c757d" d="M9.93 3.52c-.2.1-.38.42-.38.66 0 .33.3.62.66.63.12 0 .5-.2.45-.25a.62.62 0 0 0-.23 0c-.17.01-.22 0-.35-.11-.09-.07-.15-.16-.15-.2 0-.03.13-.16.28-.3l.28-.25-.12-.13c-.15-.16-.22-.16-.44-.04zM11.05 3.73c-.24.19-.29.37-.13.54l.1.13-.17.17a.72.72 0 0 0-.17.18c0 .09.42.2.6.17.25-.04.57-.25.63-.39.05-.13-.03-.3-.2-.39-.08-.05-.08-.05.08-.2l.16-.14-.15-.11c-.22-.17-.5-.16-.75.04zM8.48 3.73c-.12.13-.13.18-.03.18.12 0 .17.18.15.58l-.01.38.13.02h.13v-.46c0-.52.05-.65.2-.48.06.06.12.1.15.1.05 0 .28-.19.25-.2l-.14-.12c-.12-.11-.13-.11-.27-.04-.13.07-.16.07-.29 0-.17-.08-.15-.08-.27.04zM7.98 3.75c-.05.06-.08.06-.27.01-.32-.07-.53-.02-.75.2-.32.32-.3.75.05 1.01.21.17.4.2.72.1.15-.03.2-.03.26.03.12.1.16.1.1-.01a1.16 1.16 0 0 1-.04-.35c0-.15-.02-.27-.05-.27-.02 0-.05.06-.05.13 0 .2-.24.44-.45.44-.17 0-.4-.24-.43-.44-.06-.42.12-.74.44-.74.27 0 .44.18.44.44 0 .07.03.12.05.12.03 0 .05-.15.05-.37 0-.21 0-.38-.02-.38l-.05.08zM10.68 5.12c0 .04-.09.06-.28.06-.27 0-.3.01-.45.16-.1.09-.16.2-.16.25 0 .12.16.25.45.36.31.12.4.2.38.37-.01.2-.2.25-.48.16-.15-.04-.21-.1-.28-.25l-.1-.18-.01.25c-.02.33 0 .42.1.34.06-.04.2-.06.4-.06.28.01.33 0 .43-.1.07-.08.12-.2.13-.33.02-.18 0-.23-.1-.33a.57.57 0 0 0-.33-.15.79.79 0 0 1-.32-.12l-.1-.08.1-.1c.15-.14.39-.13.57.02l.15.12v-.16a.55.55 0 0 0-.05-.22c-.03-.05-.05-.05-.05-.02zM9.19 5.32c-.06.1-.17.23-.25.29-.12.08-.13.1-.06.15.05.04.07.16.07.45.01.34.03.4.13.48.15.12.2.11.32-.06.1-.13.1-.14.02-.14-.14 0-.19-.09-.2-.4-.02-.27-.02-.28.1-.3.22-.02.33-.05.33-.1 0-.02-.08-.03-.19-.02-.15.03-.18.02-.2-.07a.6.6 0 0 1 .02-.26c.06-.24.03-.24-.1-.02zM7.04 5.55a.85.85 0 0 0-.4.75c0 .2.02.24.16.38.1.1.21.16.34.18.16.02.19 0 .26-.13.08-.14.08-.14-.04-.14a.64.64 0 0 1-.46-.25c-.13-.18-.07-.6.1-.66.03-.02.12.02.2.08l.13.12.1-.12c.11-.1.11-.1.03-.23-.12-.15-.15-.15-.41.02zM8.04 5.61c-.23.16-.31.32-.24.51.05.13.04.17-.04.27-.12.15-.11.26.02.41l.11.14.13-.1c.17-.14.23-.14.3.02l.06.12.16-.16c.16-.15.16-.16.07-.2-.08-.03-.1-.07-.1-.44 0-.33-.01-.43-.1-.54-.11-.16-.16-.17-.37-.03zM11.23 5.75a.97.97 0 0 0-.24.33c-.06.22.01.44.17.57.2.17.32.16.45-.04.13-.19.14-.25.04-.16-.17.14-.5-.16-.5-.45 0-.13.18-.24.33-.19.04.02.12 0 .17-.05.09-.07.09-.07 0-.14-.14-.1-.2-.09-.42.14zM11.96 5.91c-.1.09-.14.16-.1.15.04-.01.1 0 .15.02.07.03.08.1.08.39s.02.35.1.42c.1.09.1.09.24-.05l.14-.13-.11-.03c-.1-.02-.1-.05-.13-.42-.04-.58-.08-.62-.37-.35zM9.77 7.15c-.02.05-.1.2-.2.3-.13.18-.14.22-.08.27.04.04.06.15.06.37 0 .48.2.68.4.39.18-.23.2-.26.09-.2-.16.08-.25-.02-.25-.29 0-.22 0-.23.14-.26.18-.03.18-.1 0-.1h-.16l.04-.29c.03-.28.01-.37-.04-.19zM7.3 7.43c-.38.28-.5.63-.34.96.1.22.45.5.51.43.16-.19.3-.4.28-.43-.02-.02-.06 0-.09.02a.25.25 0 0 1-.16.06c-.13 0-.34-.17-.27-.22l.33-.27.28-.23-.14-.23a1.07 1.07 0 0 0-.18-.22l-.22.13zM11.65 7.38c-.26.16-.32.27-.29.47.02.12 0 .21-.04.27-.1.12-.1.4 0 .53l.07.1.2-.11c.25-.15.28-.15.46-.02l.14.1.15-.15c.1-.1.12-.15.06-.13-.16.06-.21-.05-.21-.43 0-.35 0-.37-.17-.54a.98.98 0 0 0-.2-.17.76.76 0 0 0-.17.08zM8.14 7.5c-.1.12-.1.13-.03.26.06.1.08.24.08.56 0 .43 0 .43.12.43s.11 0 .11-.46c0-.38.02-.48.09-.54.07-.06.1-.06.16-.01.07.05.08.14.08.53 0 .27.02.5.05.5.03.02.12-.03.21-.1.1-.08.14-.13.1-.14-.04-.01-.07-.14-.1-.47-.02-.45-.07-.63-.17-.63a.71.71 0 0 0-.21.13l-.16.11-.08-.14c-.05-.08-.1-.14-.11-.14l-.14.12zM10.45 7.55l-.15.15.14.03c.14.03.14.03.18.41.03.45.12.55.3.35.1-.11.11-.12.03-.17-.06-.03-.08-.11-.08-.35 0-.31-.1-.58-.21-.58-.03 0-.12.07-.2.16zM15.32 3.3c-.02.02 0 .04.04.04s.1.04.13.1c.03.08.02.18-.07.5-.07.21-.14.39-.15.39-.04 0-.3-.6-.3-.68 0-.04.04-.08.09-.1s.1-.04.1-.07c0-.05-.22-.08-.69-.11-.33-.03-.35-.02-.22.03.1.03.2.12.28.24.13.2.58 1.22.58 1.31 0 .13.1-.11.33-.8.22-.65.26-.73.4-.81l.14-.1h-.32c-.17 0-.33.03-.34.05zM17.5 3.48c-.09.14-.32.35-.43.4-.04 0-.03.03.03.08s.1.18.12.5c.05.46.15.72.26.72.04 0 .13-.08.2-.18l.1-.18-.1-.02c-.09-.02-.1-.07-.15-.4-.04-.4-.02-.44.23-.45.19 0 .36-.04.36-.1 0-.02-.12-.04-.27-.05l-.27-.01v-.23-.22l-.09.14zM16.06 3.79c-.15.13-.16.16-.08.16.2 0 .26.11.26.48 0 .29.01.38.1.48.12.16.27.16.4 0l.1-.13-.15-.1c-.14-.1-.15-.11-.16-.47-.01-.3-.04-.4-.12-.48-.05-.06-.11-.1-.14-.1s-.11.07-.21.16zM18.55 4.08c-.22.17-.28.3-.18.37.07.05.07.07-.02.23-.12.19-.1.4.03.6.08.13.08.13.2.04.22-.15.33-.16.43-.04l.1.1.11-.12c.14-.16.14-.2.05-.27-.05-.04-.07-.16-.07-.45v-.4l-.15-.1c-.2-.12-.33-.11-.5.04zM14.98 5.37c-.74.07-1.15.45-1.05.98.02.1.07.24.12.3.2.22.65.32 1.07.22.1-.02.18-.02.2 0 .07.11.11.02.11-.21 0-.29-.04-.33-.12-.12-.12.33-.62.34-.9.02-.17-.18-.19-.29-.09-.33.07-.03.87.06 1.03.1.07.02.08 0 .08-.13 0-.09 0-.17-.02-.19s-.14.01-.27.05c-.13.03-.39.06-.56.06h-.32v-.14c0-.17.19-.36.43-.43.25-.08.5.02.6.22.04.09.09.16.11.16.02 0 .03-.14.03-.3s-.01-.3-.03-.3l-.42.04zM16.54 5.55c-.13.14-.13.14-.23.06-.17-.16-.2-.16-.44.02s-.34.33-.13.19c.18-.12.33-.05.4.2.07.22 0 .54-.16.74l-.09.12.1-.05a.86.86 0 0 0 .22-.22l.13-.16.16.17.17.17.36-.36-.18-.09c-.3-.14-.4-.29-.39-.52.01-.06.03-.07.1-.03.13.07.4.06.47-.02.05-.06.04-.08-.05-.13-.06-.02-.15-.09-.2-.14-.1-.09-.1-.09-.24.05zM17.59 5.86c-.27.2-.32.29-.32.55 0 .16.03.26.14.4.26.36.43.37.73.07l.18-.2-.15.04c-.45.14-.86-.36-.58-.7.09-.11.1-.11.18-.03.1.09.37.1.42.03.03-.04-.25-.32-.34-.33-.02 0-.15.08-.26.17zM18.82 5.94c-.33.25-.47.66-.32.94.1.2.3.37.42.37.13 0 .41-.26.53-.5a.71.71 0 0 0-.18-.86c-.17-.13-.22-.13-.45.05zm.23.21c.22.15.29.5.14.78-.06.12-.14.1-.31-.07-.2-.21-.26-.42-.17-.63.07-.18.15-.2.34-.08zM14.01 7.8c.02.87.03.93.16 1 .09.05.12.04.26-.11s.15-.17.07-.17c-.16 0-.2-.15-.2-.82v-.64H14l.01.74zM16.5 7.2c-.03.05-.13.15-.23.22-.16.11-.17.13-.1.2.05.06.06.2.06.5 0 .36.01.41.12.51.15.15.22.15.37-.01.16-.16.16-.18 0-.17-.15 0-.2-.1-.2-.51 0-.27 0-.27.14-.27.17 0 .18-.08.02-.12-.12-.03-.13-.05-.1-.24.02-.23.01-.25-.07-.11zM15.15 7.51c-.21.2-.25.3-.19.46.04.09.03.13-.02.17a.59.59 0 0 0-.12.24c-.04.14-.04.2.02.32.1.17.14.18.22.07.04-.05.13-.12.21-.16.14-.09.14-.09.25.02l.11.1.17-.19c.16-.17.17-.19.08-.2-.19-.04-.22-.1-.2-.44 0-.28 0-.33-.1-.44-.15-.16-.2-.15-.43.05zM17.11 7.67l-.13.1.13.12c.12.11.12.13.1.42-.03.26-.03.3.07.42l.12.13.26-.12c.15-.07.27-.1.27-.08 0 .03.04.09.1.14.08.09.1.09.2.02.09-.06.11-.1.08-.13a1.29 1.29 0 0 1-.05-.45c0-.4 0-.41-.14-.54l-.14-.14-.16.15c-.13.13-.13.15-.05.15.15 0 .2.1.2.36 0 .3-.08.38-.33.3l-.16-.03-.01-.37c-.01-.26-.04-.4-.1-.46-.08-.1-.1-.1-.25.02zM18.68 7.9l-.15.11.3.13v.95l.15-.02.15-.01.01-.45c.01-.24.04-.46.06-.49.03-.02.1 0 .19.1l.14.13.28-.27-.18-.13-.17-.13-.31.19-.1-.12c-.12-.16-.19-.16-.37 0zM13.08 11.38c-.33.1-.46.28-.17.23.15-.02.16-.01.16.1 0 .07.01.16.03.21.03.07.02.08-.09.03-.07-.02-.14-.04-.15-.02-.04.03.26.17.4.17.12 0 .81-.32.81-.38 0-.04-.58-.32-.73-.34a.73.73 0 0 0-.26 0z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-labelledby="aria-label-columbia">
|
|
2
|
+
<title>
|
|
3
|
+
columbia
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M31.89 15.45a4.2 4.2 0 0 0-3.88-3.5c-3.48-.28-6.48 1.58-9.86 2.17-.27.05-.63-.52-.96-.85 1.57-1.18 1.35-3.5-.46-4.5a4.05 4.05 0 0 1 0-1.53c.14-.12 1.3.1 1.46-.04.17-.14.13-1.53.03-1.66s-1.41 0-1.48-.08c-.08-.1.03-1.34-.1-1.44-.08-.07-.44-.08-.64-.08s-.56 0-.65.08c-.12.1-.02 1.34-.09 1.44-.07.08-1.37-.06-1.48.08-.1.13-.14 1.52.03 1.66.16.14 1.32-.08 1.46.04.08.06.12 1.4 0 1.54-1.82 1-2.03 3.31-.46 4.49-.33.33-.7.9-.97.86-3.37-.6-6.37-2.46-9.85-2.18a4.2 4.2 0 0 0-3.88 3.5c-.61 3.54 1.94 6.27 3.17 9.28.4.95.74 2.23.68 3.33H28.04c-.06-1.1.28-2.38.67-3.33 1.24-3.01 3.79-5.74 3.18-9.28zM14.56 23.3c-.31 1.78-1.3 2.91-2.13 2.92-.54 0-.97-.2-1.36-.55-.54-.47-.99-1.26-.84-1.72.12-.15 1.58.07 1.68-.07.1-.15-.18-1.29-.34-1.43-.17-.15-1.49.05-1.66-.1-.18-.14-.34-1.55-.52-1.64 0 0-1.4-.2-1.5 0-.1.2.47 1.37.37 1.57s-1.94-.18-1.97.03c-.04.21.1 1.24.28 1.4.18.15 1.9.16 1.9.16.36.27.45.83.46 1.4 0 .72-.56 1.1-1.46.84-1.67-.47-3.73-4.08-4.96-6.59-.9-1.84-1.45-4.86.92-5.76 1.44-.55 2.96-.24 4.51.22 1.63.49 3.77 1.14 5.04 1.93.3.19-.37.04.75 2.52.53 1.16 1.05 3.63.83 4.87zm9.97 2.81c-.9.25-1.46-.12-1.46-.84 0-.57.1-1.13.46-1.4 0 0 1.72 0 1.9-.16s.31-1.2.28-1.4c-.03-.2-1.88.17-1.98-.03s.48-1.38.38-1.58c-.1-.2-1.5.01-1.5.01-.18.09-.34 1.5-.52 1.64s-1.5-.05-1.66.1c-.16.14-.44 1.28-.34 1.43.1.14 1.56-.08 1.68.07.14.46-.3 1.25-.84 1.72-.4.34-.83.55-1.37.55-.82-.01-1.8-1.14-2.12-2.92-.22-1.24.3-3.71.82-4.87 1.13-2.48.45-2.33.76-2.52 1.26-.79 3.4-1.44 5.04-1.93 1.55-.46 3.06-.77 4.5-.22 2.37.9 1.83 3.92.93 5.76-1.23 2.5-3.3 6.12-4.96 6.6z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-labelledby="aria-label-cornell">
|
|
2
|
+
<title>
|
|
3
|
+
cornell
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M16 0C7.18 0 .04 7.16.04 15.96S7.18 32 16 32c8.8 0 15.96-7.24 15.96-16.04C31.96 7.15 24.8 0 16 0zm0 30.19a14.22 14.22 0 1 1 0-28.45 14.22 14.22 0 0 1 0 28.45z"/>
|
|
6
|
+
<path fill="#6c757d" d="M6.33 18.65c0 7.25 9.05 11.17 9.4 11.34l.27.1.27-.18c.44-.16 9.42-4.18 9.42-11.07V5.76H6.33v12.9zm1.39.01v-3.91h7.83v1c-.2-.04-.62-.14-1.1-.07-.26 0-.53.1-.8.1-.44 0-.78.08-1.13.08H10.5v8.82h1.73c.69 0 1.14-.1 1.58-.1.42-.08.78-.08 1.3-.08.09 0 .17.08.26.17.04.04.09.11.17.18v3.58c-2.15-1.11-7.83-4.54-7.83-9.77zm7.83 4.94a1.59 1.59 0 0 0-.43-.07c-.6 0-.95 0-1.37.1-.43 0-.87.08-1.48.08h-.62v-6.79h.96c.33 0 .78 0 1.22-.09.25 0 .52-.09.78-.09.45-.08.88 0 .88 0l.06.03v6.83zm1.04-6.81a.23.23 0 0 1 .12-.04s.44-.1.88 0c.26 0 .53.08.79.08.42 0 .86.1 1.21.1h.96v6.78h-.61c-.6 0-1.05-.09-1.48-.09-.45-.09-.89-.09-1.41-.09-.17 0-.33.03-.46.07V16.8zm0 0v-.05h.04l-.04.04zm0 11.64v-3.61l.23-.15c.08-.17.08-.17.25-.17.52 0 .87.09 1.3.09.43 0 .88.09 1.58.09h1.73v-8.82h-2.01c-.36 0-.7 0-1.14-.09-.26 0-.53-.09-.79-.09-.48 0-.98.07-1.15.08v-1.01h7.86v4.17c0 4.92-5.76 8.4-7.86 9.51zm7.86-14.82H7.72V7.15h16.73v6.46z"/>
|
|
7
|
+
<path fill="#6c757d" d="M10.08 12.2c.6.44 1.66 1.06 1.66 1.06l.17.09.26-.1c.08 0 1.04-.6 1.74-1.05.52-.35.78-.7.78-1.14V7.4H9.2v3.66c.1.36.37.79.9 1.14zm3.22-.7c-.43.27-1.12.71-1.48.88-.36-.18-.97-.62-1.41-.88-.27-.17-.44-.44-.44-.53V9.86h3.77v1.2c0 .18-.27.35-.44.44zM9.98 8.19v.09h3.76v.8H9.97l.01-.89zM18.6 12.2c.62.44 1.67 1.06 1.67 1.06l.17.09.26-.1c.08 0 1.04-.6 1.74-1.05.52-.35.78-.7.78-1.14V7.4h-5.5v3.66c.1.36.36.79.89 1.14zm3.26-.7c-.44.27-1.13.71-1.48.88-.37-.18-.98-.62-1.41-.88-.27-.17-.44-.44-.44-.53v-.16l1.83-1.3 1.93 1.26v.3c0 .17-.26.34-.43.43zm-3.31-3.31v.09h3.74v1.58l-1.93-1.31-1.83 1.28V8.2h.02zM12.24 17.87h2.27v.78h-2.27v-.78zM12.24 19.7h2.27v.78h-2.27v-.78zM12.24 21.54h2.27v.79h-2.27v-.79zM17.3 17.87h2.26v.78H17.3v-.78zM17.3 19.7h2.26v.78H17.3v-.78zM17.3 21.54h2.26v.79H17.3v-.79z"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" aria-labelledby="aria-label-dvd-rom">
|
|
2
|
+
<title>
|
|
3
|
+
dvd-rom
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M10.67 14.67a4 4 0 1 0 8 0 4 4 0 0 0-8 0zm6.66 0a2.67 2.67 0 1 1-5.34 0 2.67 2.67 0 0 1 5.34 0zm-.07-7.56a8 8 0 0 1 4.97 4.96l-1.37.17a6.67 6.67 0 0 0-3.77-3.77l.17-1.36zm7.65 4.63l-1.33.16a9.38 9.38 0 0 0-6.15-6.15l.17-1.33c3.53 1 6.3 3.78 7.32 7.32zM10.67 28.77a14.66 14.66 0 1 1 18.1-10.1h-2.8a12.01 12.01 0 0 0-11.3-16c-6.62 0-12 5.38-12 12 0 5.2 3.34 9.64 8 11.3v2.8zm.95-8.23c-.28.36-.5.76-.65 1.2a8 8 0 0 1-3.87-4.48l1.37-.17c.6 1.5 1.73 2.7 3.15 3.45zm-5.87-3.1a9.38 9.38 0 0 0 4.94 5.66l-.02.23v1.2a10.67 10.67 0 0 1-6.25-6.93l1.33-.17zm22.9 9.3c0 .92-.38 1.6-1.21 1.6h-.96V25h.77c1.03 0 1.4.64 1.4 1.76zm-9.4 0c0 .93-.38 1.6-1.21 1.6h-.96V25h.77c1.03 0 1.4.64 1.4 1.76zM30 21.35H15.33a2 2 0 0 0-2 2V30c0 1.1.9 2 2 2H30a2 2 0 0 0 2-2v-6.67a2 2 0 0 0-2-2zm-11.89 8H16V24h2.11c1.33 0 2.22.94 2.22 2.64 0 1.6-.77 2.7-2.22 2.7zm5.25 0h-1.21L20.55 24h1.1l1.1 3.75L23.88 24h1.11l-1.62 5.33zm4.15 0h-2.1V24h2.1c1.33 0 2.22.94 2.22 2.64 0 1.6-.77 2.7-2.22 2.7z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" aria-labelledby="aria-label-email">
|
|
2
|
+
<title>
|
|
3
|
+
email
|
|
4
|
+
</title>
|
|
5
|
+
<path fill="#6c757d" d="M28 11.1v12.4a2.5 2.5 0 0 1-2.5 2.5h-23A2.5 2.5 0 0 1 0 23.5V11.1c.47.51 1 .96 1.58 1.35 2.6 1.77 5.22 3.53 7.76 5.4 1.32.96 2.94 2.15 4.64 2.15h.04c1.7 0 3.32-1.19 4.64-2.16 2.54-1.84 5.17-3.62 7.78-5.39.56-.39 1.1-.84 1.56-1.36zm0-4.6c0 1.75-1.3 3.33-2.67 4.28-2.44 1.69-4.9 3.38-7.31 5.08-1.02.7-2.74 2.14-4 2.14h-.04c-1.26 0-2.98-1.44-4-2.14-2.42-1.7-4.87-3.4-7.3-5.08C1.59 10.03 0 8.26 0 6.84 0 5.31.83 4 2.5 4h23C26.86 4 28 5.12 28 6.5z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" aria-labelledby="aria-label-esri-globe">
|
|
2
|
+
<title>
|
|
3
|
+
esri-globe
|
|
4
|
+
</title>
|
|
5
|
+
<defs>
|
|
6
|
+
<radialGradient id="a" cx="34%" cy="40.72%" r="35.46%" fx="34%" fy="40.72%" gradientTransform="matrix(1 0 0 .98795 0 0)">
|
|
7
|
+
<stop offset="0%" stop-color="#B9E0F7"/>
|
|
8
|
+
<stop offset="100%" stop-color="#007AC2"/>
|
|
9
|
+
</radialGradient>
|
|
10
|
+
<radialGradient id="b" cx="71.47%" cy="60.49%" r="97.2%" fx="71.47%" fy="60.49%" gradientTransform="matrix(1 0 0 .80435 0 .12)">
|
|
11
|
+
<stop offset="0%" stop-color="#B2D234"/>
|
|
12
|
+
<stop offset="96.07%" stop-color="#009E46"/>
|
|
13
|
+
<stop offset="100%" stop-color="#009E46"/>
|
|
14
|
+
</radialGradient>
|
|
15
|
+
<radialGradient id="c" cx="95.67%" cy="-55.71%" r="150.38%" fx="95.67%" fy="-55.71%" gradientTransform="matrix(1 0 0 .9091 0 -.05)">
|
|
16
|
+
<stop offset="0%" stop-color="#B2D234"/>
|
|
17
|
+
<stop offset="96.07%" stop-color="#009E46"/>
|
|
18
|
+
<stop offset="100%" stop-color="#009E46"/>
|
|
19
|
+
</radialGradient>
|
|
20
|
+
<radialGradient id="d" cx="-3.52%" cy="2.76%" r="143.09%" fx="-3.52%" fy="2.76%" gradientTransform="matrix(1 0 0 .63636 0 .01)">
|
|
21
|
+
<stop offset="0%" stop-color="#B2D234"/>
|
|
22
|
+
<stop offset="96.07%" stop-color="#009E46"/>
|
|
23
|
+
<stop offset="100%" stop-color="#009E46"/>
|
|
24
|
+
</radialGradient>
|
|
25
|
+
</defs>
|
|
26
|
+
<g fill="none" fill-rule="nonzero">
|
|
27
|
+
<path fill="#FFF" d="M98 50a48 48 0 1 1-96 0 48 48 0 0 1 96 0"/>
|
|
28
|
+
<path fill="url(#a)" d="M7 49.5C7 72.42 25.36 91 48 91s41-18.58 41-41.5S70.64 8 48 8 7 26.58 7 49.5" transform="translate(2 1)"/>
|
|
29
|
+
<path fill="url(#b)" d="M30.85 17.86a84.8 84.8 0 0 0-9.28 1.04A42.81 42.81 0 0 0 7 49.95c2.44 2.64 5.65 8.6 9.37 12.05.49-.22 1.02-.42 1.59-.6-1.82-2.17-4.37-5.05-4.75-6.38-1.88-6.5.3-12.58 4.99-13.06 4.2-.43 7.81-6.87 10.78-11.08 6.1-8.68 15.47-7.23 15-11.57-.54-2.54-2-3.31-3.86-3.31-2.8 0-6.49 1.75-9.27 1.86" transform="translate(2 1)"/>
|
|
30
|
+
<path fill="url(#c)" d="M20.2 58.04c-.6.18-1.2.34-1.75.52-.5.14-.9.34-1.58.59-1.5.7-2.58 1.76-2.83 4.03-.46 4.11 3.31 7.34 6.49 8.29 4.03 1.2 4.37-.2 6.48 2.76 1.48 2.08 1.76 5.92 2.52 8.46.42 1.41.99 2.82 1.67 4.2A39.37 39.37 0 0 0 40.33 90c.8-4.88.44-11.47 1.49-14.31 2.15-5.83 3.37-8.4.46-14.42-6.4-1.88-8.35-2.47-14.8-3.85a14.27 14.27 0 0 0-2.89-.42c-1.14 0-2.09.34-4.4 1.04" transform="translate(2 1)"/>
|
|
31
|
+
<path fill="url(#d)" d="M59.5 26.32c-1.91 2.73-8.6 3.48-10.74 6.56-1.67 2.4.06 7.11-1.4 9.84-.66 1.25-.35 4.9.46 6.08 2.57 3.76 6.85 1.67 10.07 3.02 3.92 1.65 4.37 6.22 7.62 9.57 3.26 3.35-4.16 8.5 1.9 20.69A8.6 8.6 0 0 0 69.62 85a41.3 41.3 0 0 0 10.67-9.62c.92-6.15-1.15-8.12 1.44-13.75 1.59-3.48 4.32-9.49 7.27-13.56-.5-11.41-5.6-21.61-13.48-28.79a6.6 6.6 0 0 1-2.97.01c-1.1-.2-2.1-.29-3-.29-6.08 0-7.89 4.2-10.06 7.32" transform="translate(2 1)"/>
|
|
32
|
+
<path fill="#000" d="M45.56 95.06c-1.37-.79-3.09-2.01-4.7-3.08-.66.59-1.2 1.46-1.73 2.16 1.84.63 4.32.69 6.43.92m-7.24-4.95c-2.93-2.2-10.2-9.14-13.2-13.33-1.11.66-2.34 2.44-3.94 2.75-.63.12-2.05.3-2.47.12-.42-.18.1-1.07.55-1.66a19.66 19.66 0 0 1 3.6-3.68c-3.58-5.28-5.28-9.15-7.72-15.52-1.4.88-2.43 1.67-3.65 2.66-.42.32-1.55.53-2.1.03-1-.9-1.02-2.5.38-3.5.58-.42 3.44-2.41 4.11-2.97a85.6 85.6 0 0 1-3.62-15.32 41.22 41.22 0 0 1-3.29 2.51c-.66.2-1.1-.02-1.3-.05-.67 7.23.1 15.19 2.24 22.38 3.66 12.36 13.95 24.14 27.83 28.53.32-.49 1.92-2.35 2.58-2.95M9.83 35.94l-.38-6.34c-1.95 4.27-3.12 6.85-3.66 11.83a41.05 41.05 0 0 1 4.04-5.5M30.66 5.36C38.72 2 46.57.15 55.63 1.4c1 .14.93 1-.15 1.01l-1.27.03c-7.3.12-18.04 2.45-23.59 5.62-.12 3.74.59 9.67 1.33 14.34a76.09 76.09 0 0 1 18.77-5 69.38 69.38 0 0 0-8.48-7.4c-.55-.4-.82-1.07-.82-1.94.07-1.62 1.46-1.82 2.2-1.63 2.47-.49 4.92-1.02 9.1-.9 17.65-.78 33.78 9.28 39.93 20.76 15.6 24.85.01 59.13-20.4 68.26-8.74 3.9-16.23 5.6-30.04 3.65-13.83-1.94-25.14-8.76-33.92-23.08-10.82-17.65-4.73-38.2-3.2-42.52 6.5-15.47 17.18-23.68 25.57-27.24m-18.25 18.8c-.24 1.87.01 5.3.47 9.4 3.76-3.38 11.01-7.8 17.08-10.49-.7-4.65-1.45-12.08-1.38-14.05-5.6 3.1-11.76 9.33-16.27 15.72m.93 12.57c.53 3.69 2.28 11.65 3.87 15.68 3.75-2.85 12.26-8.13 17.07-10.27-1.68-6.18-2.82-10.08-3.76-16.32-6.8 3.05-14 7.79-17.18 10.91m5.33 19.25c2.23 6.41 4.39 11.3 7.2 15.34a81.36 81.36 0 0 1 15.21-9.93c-1.7-3.69-4.15-10.57-5.86-15.73a92.96 92.96 0 0 0-16.55 10.32m9.31 18.14a99.1 99.1 0 0 0 12.8 13.44 62.89 62.89 0 0 1 11.1-7.32c-2.94-4.59-7.28-11.25-9.1-15.35a55.4 55.4 0 0 0-14.8 9.23m15.04 15.43c1.39 1.42 6.9 5.09 6.9 5.09 3.65.16 8.28-.28 11.58-.86-1.82-2.09-6.37-8.57-7.75-10.75a48.15 48.15 0 0 0-10.73 6.52m22.33 3.29a56.4 56.4 0 0 0 7.57-3.42c.23-3.84.2-8.2.04-10.8a48.2 48.2 0 0 0-15.98 3.15 81.28 81.28 0 0 0 8.37 11.07m10.19-4.84c3.73-2.34 7.24-5.04 9.78-8.28-2.19-.55-7.08-1.22-9.5-1.07 0 0-.08 5.86-.28 9.35m10.95-9.78c.7-.71 1.76-2.22 2.17-3.1.41-3.56.42-10.86.27-13-4.26-1.73-10.85-3.11-15.66-3.47 1.57 5.79 2.35 14.3 2.47 17.07 2.3.24 8.13 1.43 10.75 2.5m6.26-16.52c-.2.67-1.37 1.35-1.92 1.18.08 1.2-.2 7.14-.5 9.44.81-1.7 2.38-5.9 2.85-7.69l.66-2.61c.66-2.22 2.8-9.9.86-20-2.15-11.22-6.18-15.23-7.59-17.01-3.58-1.96-9-3.74-9-3.74 4.92 6.7 6.62 9.84 9.55 17.82 1.7.89 4.8 2.61 5.18 3.09.31.37.31 1.04-.65 1.03-.81 0-2.38-.79-3.59-1.11 1.3 4.34 2.29 12.45 2.21 17.89 0 0 2.13 1.04 1.94 1.71m-8.21-40.43c-6.81-8.4-22.22-15.55-39.37-14.47 3.83 2.55 7.02 6.39 9.82 9.55 4.28-.4 13.28.32 16.66 1.26-.58-.68-1.29-1.36-1.47-1.77-.48-1.04.68-1.26 1.6-.66 1.18.75 2.53 1.66 3.6 2.76 2 .45 6.89 2.14 9.16 3.33M88.8 59.7c-.3-5.42-1.12-12.65-3.11-17.69-5.28-2.14-12.5-3.47-18.83-3.53 1.95 4.6 4.22 12.27 5.33 17.2 4.58.56 11.74 1.87 16.6 4.02M73.96 20.96a79.33 79.33 0 0 0-16.9-1.1c3.53 4.9 6.11 9.18 8.53 15.28 6.54.16 15.41 2.13 19.05 3.57-2.17-5.84-6.3-13.24-10.68-17.75M44.03 60.53a55.63 55.63 0 0 1 24.94-5c-2.35-8.19-3.7-12-5.7-16.98a63.62 63.62 0 0 0-25.14 6.34s2.74 8.87 5.9 15.64m25.82-1.54c-9.74-.12-18.24 2.23-24.05 5.1 2.46 5.35 7.33 12.43 9.15 15.34a50.06 50.06 0 0 1 9.2-2.5c2.65-.4 6.17-.8 8.55-.76A87.28 87.28 0 0 0 69.85 59M37.03 41.52a77.02 77.02 0 0 1 24.96-6.3 55.41 55.41 0 0 0-8.92-14.9 67.59 67.59 0 0 0-20.5 5.16c.88 4.7 2.55 10.37 4.46 16.04"/>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|