├── .env ├── .gitignore ├── CONTRIBUTING ├── Dockerfile ├── GeoIP.dat ├── GeoIPv6.dat ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── bin ├── geosk-translations ├── sk ├── sk-updateip └── softInspector.sh ├── dev_config.yml ├── docker-build.sh ├── docker-compose.build.yml ├── docker-compose.override.yml ├── docker-compose.yml ├── docker-purge.sh ├── docker-shutdown.sh ├── docker-startup.sh ├── docker ├── geoserver │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── get_dockerhost_ip.py │ ├── get_nginxhost_ip.py │ ├── requirements.txt │ ├── set_geoserver_auth.sh │ └── setup_auth.sh ├── letsencrypt │ ├── Dockerfile │ ├── README.md │ ├── crontab │ └── docker-entrypoint.sh ├── sos-configured │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── sos-config │ │ ├── configuration.db │ │ ├── datasource.properties │ │ ├── entrypoint.sh │ │ ├── requirements.txt │ │ └── tasks.py │ └── tomcat-bin │ │ ├── index.html │ │ ├── observations.xml │ │ ├── setenv.sh │ │ ├── web-conf.xml │ │ └── web-observations.xml ├── sos-nginx │ ├── Dockerfile │ ├── docker-autoreload.sh │ ├── docker-entrypoint.sh │ ├── geonode.conf │ ├── nginx.conf.envsubst │ └── nginx.https.available.conf.envsubst └── sos-starterkit-database │ ├── docker-compose.yml │ └── starterkit-postgres │ ├── Dockerfile │ └── sos_db_create.sql ├── docker_collectmetrics.py ├── docs ├── Makefile ├── conf.py ├── doc_test.rst ├── glossary │ └── edi.rst ├── index.rst ├── make.bat ├── presentation.rst ├── pubblication.rst ├── publication.rst └── tutorials │ ├── admin │ ├── advanced.rst │ ├── bing_maps_issue.rst │ ├── domain_name.rst │ ├── index.rst │ ├── mapquest_maps_issue.rst │ ├── quick.rst │ ├── scratch.rst │ ├── security_issue.rst │ ├── server.rst │ ├── setProxy.rst │ └── uninstall.rst │ ├── dataflowengine │ ├── index.rst │ └── insertobservations.rst │ ├── developers │ ├── index.rst │ └── quick.rst │ ├── index.rst │ └── users │ ├── accounts_and_users │ ├── index.rst │ └── index.rst~ │ ├── compilazione_metadati │ └── index.rst │ ├── compilazionemetadati │ ├── index.rst │ ├── index.rst~ │ ├── test.rst │ └── test.rst~ │ ├── conversione_geotiff │ └── index.rst │ ├── conversionegeotiff │ ├── index.rst │ └── index.rst~ │ ├── editing_metadati │ ├── editing_metadati.rst │ └── index.rst │ ├── editingmetadatasensor │ ├── ed_metadata_sensor.rst~ │ └── index.rst~ │ ├── external_services.rst │ ├── file_prj.rst │ ├── index.rst │ ├── index.rst~ │ ├── managing_layers │ ├── index.rst │ ├── index.rst~ │ ├── layers.rst │ ├── layers.rst~ │ ├── layers_metadata.rst │ └── metadata~ │ ├── managing_observations │ ├── EDI_SensorML.png │ ├── GETIT_Sensor_Interface.png │ ├── index.rst │ ├── metadata_check.rst │ ├── sensors_metadata.rst │ └── upload_observations.rst │ ├── managing_views │ └── index.rst │ ├── metadati_sensori.rst │ ├── metadati_sensori │ └── metadati_sensori.rst~ │ ├── plugin_qgis.rst │ ├── servizi_jrc.rst │ ├── sistemi_riferimento.rst │ ├── utilizzo_wms.rst │ └── vincoli_dati.rst ├── entrypoint.sh ├── fixtures ├── apikey_docker.json ├── default_oauth_apps.json ├── default_oauth_apps_docker.json ├── initial_data.json ├── mdtools_services_metadata_template.json ├── sample_admin.json └── sites_template.json ├── geoip.db ├── geosk ├── __init__.py ├── apps.py ├── celeryapp.py ├── context_processors.py ├── dashboard.py ├── demo │ ├── __init__.py │ ├── demodataset │ │ ├── EDI_SensorML_template.pdf │ │ ├── README │ │ ├── lagoonVenice.dbf │ │ ├── lagoonVenice.prj │ │ ├── lagoonVenice.shp │ │ ├── lagoonVenice.shx │ │ ├── observations.csv │ │ └── sde37.jpg │ ├── models.py │ ├── templates │ │ └── demo │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── geoskbase │ ├── __init__.py │ ├── migrations │ │ └── __init__.py │ └── models.py ├── geosksearch │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── local_settings.py.sample ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ └── it │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── mdtools │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── forms.py │ ├── geoserver_extra.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190515_0900.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── base │ │ │ └── resourcebase_info_panel.html │ │ ├── catalogue │ │ │ ├── _full_metadata.xml │ │ │ └── full_metadata.xml │ │ ├── layers │ │ │ ├── layer_detail.html │ │ │ └── layer_metadata_advanced.html │ │ └── mdtools │ │ │ ├── edi_headers.html │ │ │ ├── metadata_form_js.html │ │ │ ├── rndt.html │ │ │ ├── rndt_block.html │ │ │ └── upload_metadata.html │ ├── urls.py │ └── views.py ├── middleware.py ├── osk │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── extension_sos100.py │ ├── extension_sos200.py │ ├── extension_sos_utils.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── proxy.py │ ├── sensor2html_v2.xsl │ ├── sos.py │ ├── templates │ │ └── osk │ │ │ ├── dict_to_html.html │ │ │ ├── osk_base.html │ │ │ ├── osk_capabilities.html │ │ │ ├── osk_deletesensor.html │ │ │ ├── osk_list.html │ │ │ ├── osk_registration.html │ │ │ ├── osk_upload.html │ │ │ └── sensorml_block.html │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── patches │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── settings.py ├── skregistration │ ├── __init__.py │ ├── admin.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── skregistration │ │ │ └── registration.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── static │ ├── .bowerrc │ ├── EDI-NG_client │ │ ├── DCAT_AP_IT.html │ │ ├── DwC_AlgariumVeneticum.html │ │ ├── DwC_HerbarioumVeneticum.html │ │ ├── DwC_HerbariumVeneticum.html │ │ ├── EMF.html │ │ ├── EMN.html │ │ ├── IGNS.html │ │ ├── INSPIRE_dataset.html │ │ ├── INSPIRE_dataset_ermes.html │ │ ├── INSPIRE_dataset_forRITMARE.html │ │ ├── RNDT_dataset.html │ │ ├── RNDT_dataset_forRITMARE.html │ │ ├── SensorML101.html │ │ ├── SensorML101_forRITMARE.html │ │ ├── SensorML20_TypeESONET.html │ │ ├── SensorML20_Vessel.html │ │ ├── SensorML20_VesselCompHistory.html │ │ ├── SensorML20_VesselEventHistory.html │ │ ├── SensorML20_fixed.html │ │ ├── SensorML20_fixedExtension.html │ │ ├── SensorML20_fixed_component.html │ │ ├── SensorML20_lightweight.html │ │ ├── SensorML20_lightweight_forLTER.html │ │ ├── SensorML20_lightweight_forRITMARE.html │ │ ├── css │ │ │ ├── assets.css │ │ │ └── images │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ ├── foaf.html │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ │ └── carousel-loader.gif │ │ ├── index.html │ │ ├── js │ │ │ └── assets.js │ │ └── templates │ │ │ ├── DCAT_AP_IT_v1.00.xml │ │ │ ├── DwC_AlgariumVeneticum_v1.00.xml │ │ │ ├── DwC_HerbariumVeneticum_v1.00.xml │ │ │ ├── EMF_v1.00.xml │ │ │ ├── EMN_v1.00.xml │ │ │ ├── FOAF_v2.00.xml │ │ │ ├── INSPIRE_dataset_ermes_v2.10.xml │ │ │ ├── INSPIRE_dataset_v1.00.xml │ │ │ ├── INSPIRE_dataset_v1.00_forLTER.xml │ │ │ ├── INSPIRE_dataset_v1.00_forRITMARE.xml │ │ │ ├── RNDT_dataset_v3.00.xml │ │ │ ├── RNDT_dataset_v4.00.xml │ │ │ ├── RNDT_dataset_v4.00_forRITMARE.xml │ │ │ ├── SensorML101_v3.00.xml │ │ │ ├── SensorML101_v3.00_forRITMARE.xml │ │ │ ├── SensorML20_TypeESONET_v1.00.xml │ │ │ ├── SensorML20_lightweight_v1.00.xml │ │ │ ├── SensorML20_lightweight_v1.00_forLTER.xml │ │ │ ├── SensorML20_lightweight_v1.00_forLTER_newSchema.xml │ │ │ ├── SensorML20_lightweight_v1.00_forLTER_newSchema_withProxy.xml │ │ │ ├── SensorML20_lightweight_v1.00_forRITMARE.xml │ │ │ ├── SensorML20_lightweight_v1.00_newEdiSchema.xml │ │ │ ├── SensorML20_type_v1.00_forGet-It.xml │ │ │ ├── SensorML20_vesselCompHistory_v1.00_newEdiSchema.xml │ │ │ ├── SensorML20_vesselEventHistory_v1.00_newEdiSchema.xml │ │ │ ├── SensorML20_vessel_v1.00_newEdiSchema.xml │ │ │ ├── edi_template.xsd │ │ │ ├── edi_template_old.xsd │ │ │ ├── template_xform.xsl │ │ │ └── template_xform_back.xsl │ ├── README │ ├── autocomplete_light │ │ ├── addanother.js │ │ ├── autocomplete.js │ │ ├── django_admin.js │ │ ├── remote.js │ │ ├── style.css │ │ ├── text_widget.js │ │ └── widget.js │ ├── bower.json │ ├── cookieconsent2 │ │ ├── cookieconsent.min.js │ │ ├── dark-bottom.css │ │ ├── dark-floating-tada.css │ │ ├── dark-floating.css │ │ ├── dark-inline.css │ │ ├── dark-top.css │ │ ├── light-bottom.css │ │ ├── light-floating.css │ │ ├── light-top.css │ │ └── logo.png │ ├── css │ │ └── site_base.css │ ├── edi │ │ └── js │ │ │ ├── 1.00 │ │ │ ├── json2xml.js │ │ │ ├── langs.js │ │ │ ├── spin.js │ │ │ └── xml2json.js │ │ │ └── 2.00 │ │ │ └── mdeditor.js │ ├── fonts │ │ ├── apexnew-book-webfont.woff │ │ ├── apexnew-book-webfont.woff2 │ │ ├── apexnew-light-webfont.woff │ │ ├── apexnew-light-webfont.woff2 │ │ ├── apexnew-medium-webfont.woff │ │ ├── apexnew-medium-webfont.woff2 │ │ ├── opensans-bold-webfont.woff2 │ │ └── opensans-webfont.woff2 │ ├── forXSLT │ │ ├── bootstrap │ │ │ ├── 3.0.3 │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ └── 3.3.0 │ │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ ├── css │ │ │ └── ekko-lightbox.min.css │ │ ├── js │ │ │ ├── ekko-lightbox.js │ │ │ ├── ie10-viewport-bug-workaround.js │ │ │ └── jquery-1.11.1.min.js │ │ └── leaflet │ │ │ └── 0.7.2 │ │ │ ├── css │ │ │ └── leaflet.css │ │ │ └── js │ │ │ └── leaflet.js │ ├── geonode │ │ └── js │ │ │ └── upload │ │ │ └── LayerInfo.js │ ├── geosk │ │ ├── css │ │ │ ├── mdeditor.css │ │ │ └── site_base.css │ │ ├── img │ │ │ ├── README │ │ │ ├── add-sos.png │ │ │ ├── favicon.ico │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── logo-full.png │ │ │ └── logo.png │ │ └── js │ │ │ ├── EdiProxy.js │ │ │ ├── OpenSeaMapSource.js │ │ │ ├── README │ │ │ ├── SOSClient │ │ │ ├── AddSOS.js │ │ │ ├── BaseSOSClient.js │ │ │ ├── GridExporter.js │ │ │ ├── SOSGetFeatureInfo.js │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ ├── SOSSource.js │ │ │ ├── SOSSourceDialog.js │ │ │ ├── locale │ │ │ │ └── it.js │ │ │ └── utils.js │ │ │ ├── cookieconsent.js │ │ │ ├── flotcharts.js │ │ │ ├── geosk_sos.js │ │ │ ├── gxp_extra.js │ │ │ ├── mdeditor.js │ │ │ ├── openlayers_sos.js │ │ │ └── rndtCallbacks.js │ ├── gruntfile.js │ ├── gulpfile.js │ ├── img │ │ ├── README │ │ ├── favicon.ico │ │ ├── logo1.svg │ │ ├── logo1_200px.png │ │ └── orcid.png │ ├── js │ │ ├── Leaflet.fullscreen.min.js │ │ └── README │ ├── less │ │ └── site_base.less │ ├── package-lock.json │ ├── package.json │ └── upload_observations │ │ ├── css │ │ ├── L.Control.Locate.ie.min.css │ │ ├── L.Control.Locate.min.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.min.css │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon-green-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui.min.css │ │ ├── jquery.handsontable.full.css │ │ └── leaflet.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ ├── fois.png │ │ └── sensordescription.png │ │ ├── index.html │ │ ├── js │ │ ├── L.Control.Locate.min.js │ │ ├── L.TileLayer.BetterWMS.js │ │ ├── bootstrap.min.js │ │ ├── config.js │ │ ├── gettext_statements.js │ │ ├── images │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── insertObservationPage.js │ │ ├── insertResultPage.js │ │ ├── jquery.handsontable.full.js │ │ ├── jquery.min.js │ │ ├── jquery.spin.js │ │ ├── leaflet.js │ │ ├── ritmaresk.SOS.js │ │ ├── ritmaresk.dateUtil.js │ │ ├── ritmaresk.utils.NamingConvention.js │ │ ├── ritmaresk.utils.insertResultHelper.js │ │ ├── ritmaresk.utils.js │ │ ├── ritmaresk.utils.swe.js │ │ ├── ritmaresk.xsltTransformer.js │ │ └── spin.min.js │ │ ├── test │ │ └── whoami.js │ │ └── xslt │ │ ├── ListOfResultTemplates_From_GetCapabilities_json.xsl │ │ ├── getFOIJson.xsl │ │ ├── resultTemplate2Structure.xsl │ │ ├── sensor2InsertObservation.xsl │ │ ├── sensor2JsStructure.xsl │ │ ├── sensor2ResultTemplate.xsl │ │ ├── sosInsertionOperationsResponse2json.xsl │ │ ├── sp7InsertObservations2MultipleInsertObservationSplitArray.xsl │ │ └── wmsDescribeLayerResponse2Json.xsl ├── templates │ ├── about.html │ ├── about_services.html │ ├── about_upload_layers.html │ ├── admin │ │ └── base.html │ ├── geonode │ │ └── geo_header.html │ ├── geonode_base.html │ ├── help.html │ ├── maps │ │ ├── map_edit.html │ │ ├── map_geoexplorer.js │ │ ├── map_include.html │ │ └── map_new.html │ ├── monitoring │ │ └── index.html │ ├── site_base.html │ ├── site_index.html │ ├── sk_credits.html │ └── sk_license.html ├── urls.py └── wsgi.py ├── jetty-runner.xml ├── manage.py ├── manage.sh ├── monitoring-cron ├── package └── support │ ├── geonode.binary │ └── geonode.updateip ├── pavement.py ├── paver.sh ├── playbook.yml ├── requirements.txt ├── samples ├── apache_starterkit_sample.conf └── local_settings_sample.py ├── scripts ├── docker │ ├── cron │ │ ├── Dockerfile │ │ ├── crontab_monitoring │ │ └── docker_collectmetrics.py │ ├── env │ │ └── production │ │ │ ├── django.env │ │ │ ├── geoserver.env │ │ │ └── nginx.env │ └── misc │ │ ├── docker_geonode_updatelayers.sh │ │ ├── test_docker_dumpdata_settings.sh │ │ ├── test_docker_loaddata_settings.sh │ │ └── test_docker_settings.sh └── misc │ ├── apache2 │ └── geonode.conf.sample │ ├── cleanup_pyc.sh │ ├── insertsensor_default.xml │ └── jetty-runner.xml ├── setup.py ├── tasks.py ├── uwsgi.ini └── wait-for-databases.sh /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/Dockerfile -------------------------------------------------------------------------------- /GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/GeoIP.dat -------------------------------------------------------------------------------- /GeoIPv6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/GeoIPv6.dat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft geosk/static/EDI-NG_client 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/README.rst -------------------------------------------------------------------------------- /bin/geosk-translations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/bin/geosk-translations -------------------------------------------------------------------------------- /bin/sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/bin/sk -------------------------------------------------------------------------------- /bin/sk-updateip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/bin/sk-updateip -------------------------------------------------------------------------------- /bin/softInspector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/bin/softInspector.sh -------------------------------------------------------------------------------- /dev_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/dev_config.yml -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker-build.sh -------------------------------------------------------------------------------- /docker-compose.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker-compose.build.yml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-purge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker-purge.sh -------------------------------------------------------------------------------- /docker-shutdown.sh: -------------------------------------------------------------------------------- 1 | docker-compose stop 2 | -------------------------------------------------------------------------------- /docker-startup.sh: -------------------------------------------------------------------------------- 1 | docker-compose up -d 2 | -------------------------------------------------------------------------------- /docker/geoserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/Dockerfile -------------------------------------------------------------------------------- /docker/geoserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/README.md -------------------------------------------------------------------------------- /docker/geoserver/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/docker-compose.yml -------------------------------------------------------------------------------- /docker/geoserver/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/entrypoint.sh -------------------------------------------------------------------------------- /docker/geoserver/get_dockerhost_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/get_dockerhost_ip.py -------------------------------------------------------------------------------- /docker/geoserver/get_nginxhost_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/get_nginxhost_ip.py -------------------------------------------------------------------------------- /docker/geoserver/requirements.txt: -------------------------------------------------------------------------------- 1 | docker==3.1.1 2 | -------------------------------------------------------------------------------- /docker/geoserver/set_geoserver_auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/set_geoserver_auth.sh -------------------------------------------------------------------------------- /docker/geoserver/setup_auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/geoserver/setup_auth.sh -------------------------------------------------------------------------------- /docker/letsencrypt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/letsencrypt/Dockerfile -------------------------------------------------------------------------------- /docker/letsencrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/letsencrypt/README.md -------------------------------------------------------------------------------- /docker/letsencrypt/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/letsencrypt/crontab -------------------------------------------------------------------------------- /docker/letsencrypt/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/letsencrypt/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/sos-configured/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/Dockerfile -------------------------------------------------------------------------------- /docker/sos-configured/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/README.md -------------------------------------------------------------------------------- /docker/sos-configured/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/docker-compose.yml -------------------------------------------------------------------------------- /docker/sos-configured/sos-config/configuration.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/sos-config/configuration.db -------------------------------------------------------------------------------- /docker/sos-configured/sos-config/datasource.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/sos-config/datasource.properties -------------------------------------------------------------------------------- /docker/sos-configured/sos-config/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/sos-config/entrypoint.sh -------------------------------------------------------------------------------- /docker/sos-configured/sos-config/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/sos-config/requirements.txt -------------------------------------------------------------------------------- /docker/sos-configured/sos-config/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/sos-config/tasks.py -------------------------------------------------------------------------------- /docker/sos-configured/tomcat-bin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/tomcat-bin/index.html -------------------------------------------------------------------------------- /docker/sos-configured/tomcat-bin/observations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/tomcat-bin/observations.xml -------------------------------------------------------------------------------- /docker/sos-configured/tomcat-bin/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/tomcat-bin/setenv.sh -------------------------------------------------------------------------------- /docker/sos-configured/tomcat-bin/web-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/tomcat-bin/web-conf.xml -------------------------------------------------------------------------------- /docker/sos-configured/tomcat-bin/web-observations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-configured/tomcat-bin/web-observations.xml -------------------------------------------------------------------------------- /docker/sos-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-nginx/Dockerfile -------------------------------------------------------------------------------- /docker/sos-nginx/docker-autoreload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-nginx/docker-autoreload.sh -------------------------------------------------------------------------------- /docker/sos-nginx/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-nginx/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/sos-nginx/geonode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-nginx/geonode.conf -------------------------------------------------------------------------------- /docker/sos-nginx/nginx.conf.envsubst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-nginx/nginx.conf.envsubst -------------------------------------------------------------------------------- /docker/sos-nginx/nginx.https.available.conf.envsubst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-nginx/nginx.https.available.conf.envsubst -------------------------------------------------------------------------------- /docker/sos-starterkit-database/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-starterkit-database/docker-compose.yml -------------------------------------------------------------------------------- /docker/sos-starterkit-database/starterkit-postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-starterkit-database/starterkit-postgres/Dockerfile -------------------------------------------------------------------------------- /docker/sos-starterkit-database/starterkit-postgres/sos_db_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker/sos-starterkit-database/starterkit-postgres/sos_db_create.sql -------------------------------------------------------------------------------- /docker_collectmetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docker_collectmetrics.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/doc_test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/doc_test.rst -------------------------------------------------------------------------------- /docs/glossary/edi.rst: -------------------------------------------------------------------------------- 1 | EDI metadata editing tool developed in RITMARE-SP7 project. 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/presentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/presentation.rst -------------------------------------------------------------------------------- /docs/pubblication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/pubblication.rst -------------------------------------------------------------------------------- /docs/publication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/publication.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/advanced.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/bing_maps_issue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/bing_maps_issue.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/domain_name.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/domain_name.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/index.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/mapquest_maps_issue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/mapquest_maps_issue.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/quick.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/quick.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/scratch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/scratch.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/security_issue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/security_issue.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/server.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/setProxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/setProxy.rst -------------------------------------------------------------------------------- /docs/tutorials/admin/uninstall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/admin/uninstall.rst -------------------------------------------------------------------------------- /docs/tutorials/dataflowengine/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/dataflowengine/index.rst -------------------------------------------------------------------------------- /docs/tutorials/dataflowengine/insertobservations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/dataflowengine/insertobservations.rst -------------------------------------------------------------------------------- /docs/tutorials/developers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/developers/index.rst -------------------------------------------------------------------------------- /docs/tutorials/developers/quick.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/developers/quick.rst -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/accounts_and_users/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/accounts_and_users/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/accounts_and_users/index.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/accounts_and_users/index.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/compilazione_metadati/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/compilazione_metadati/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/compilazionemetadati/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/compilazionemetadati/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/compilazionemetadati/index.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/compilazionemetadati/index.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/compilazionemetadati/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/compilazionemetadati/test.rst -------------------------------------------------------------------------------- /docs/tutorials/users/compilazionemetadati/test.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/compilazionemetadati/test.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/conversione_geotiff/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/conversione_geotiff/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/conversionegeotiff/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/conversionegeotiff/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/conversionegeotiff/index.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/conversionegeotiff/index.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/editing_metadati/editing_metadati.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/editing_metadati/editing_metadati.rst -------------------------------------------------------------------------------- /docs/tutorials/users/editing_metadati/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/editing_metadati/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/editingmetadatasensor/ed_metadata_sensor.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/editingmetadatasensor/ed_metadata_sensor.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/editingmetadatasensor/index.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/editingmetadatasensor/index.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/external_services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/external_services.rst -------------------------------------------------------------------------------- /docs/tutorials/users/file_prj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/file_prj.rst -------------------------------------------------------------------------------- /docs/tutorials/users/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/index.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/index.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/managing_layers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_layers/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/managing_layers/index.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_layers/index.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/managing_layers/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_layers/layers.rst -------------------------------------------------------------------------------- /docs/tutorials/users/managing_layers/layers.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_layers/layers.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/managing_layers/layers_metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_layers/layers_metadata.rst -------------------------------------------------------------------------------- /docs/tutorials/users/managing_layers/metadata~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_layers/metadata~ -------------------------------------------------------------------------------- /docs/tutorials/users/managing_observations/EDI_SensorML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_observations/EDI_SensorML.png -------------------------------------------------------------------------------- /docs/tutorials/users/managing_observations/GETIT_Sensor_Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_observations/GETIT_Sensor_Interface.png -------------------------------------------------------------------------------- /docs/tutorials/users/managing_observations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_observations/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/managing_observations/metadata_check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_observations/metadata_check.rst -------------------------------------------------------------------------------- /docs/tutorials/users/managing_observations/sensors_metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_observations/sensors_metadata.rst -------------------------------------------------------------------------------- /docs/tutorials/users/managing_observations/upload_observations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_observations/upload_observations.rst -------------------------------------------------------------------------------- /docs/tutorials/users/managing_views/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/managing_views/index.rst -------------------------------------------------------------------------------- /docs/tutorials/users/metadati_sensori.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/metadati_sensori.rst -------------------------------------------------------------------------------- /docs/tutorials/users/metadati_sensori/metadati_sensori.rst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/metadati_sensori/metadati_sensori.rst~ -------------------------------------------------------------------------------- /docs/tutorials/users/plugin_qgis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/plugin_qgis.rst -------------------------------------------------------------------------------- /docs/tutorials/users/servizi_jrc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/servizi_jrc.rst -------------------------------------------------------------------------------- /docs/tutorials/users/sistemi_riferimento.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/sistemi_riferimento.rst -------------------------------------------------------------------------------- /docs/tutorials/users/utilizzo_wms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/utilizzo_wms.rst -------------------------------------------------------------------------------- /docs/tutorials/users/vincoli_dati.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/docs/tutorials/users/vincoli_dati.rst -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /fixtures/apikey_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/fixtures/apikey_docker.json -------------------------------------------------------------------------------- /fixtures/default_oauth_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/fixtures/default_oauth_apps.json -------------------------------------------------------------------------------- /fixtures/default_oauth_apps_docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/fixtures/default_oauth_apps_docker.json -------------------------------------------------------------------------------- /fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/fixtures/initial_data.json -------------------------------------------------------------------------------- /fixtures/mdtools_services_metadata_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/fixtures/mdtools_services_metadata_template.json -------------------------------------------------------------------------------- /fixtures/sample_admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/fixtures/sample_admin.json -------------------------------------------------------------------------------- /fixtures/sites_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/fixtures/sites_template.json -------------------------------------------------------------------------------- /geoip.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geoip.db -------------------------------------------------------------------------------- /geosk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/__init__.py -------------------------------------------------------------------------------- /geosk/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/apps.py -------------------------------------------------------------------------------- /geosk/celeryapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/celeryapp.py -------------------------------------------------------------------------------- /geosk/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/context_processors.py -------------------------------------------------------------------------------- /geosk/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/dashboard.py -------------------------------------------------------------------------------- /geosk/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/demo/demodataset/EDI_SensorML_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/demodataset/EDI_SensorML_template.pdf -------------------------------------------------------------------------------- /geosk/demo/demodataset/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/demo/demodataset/lagoonVenice.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/demodataset/lagoonVenice.dbf -------------------------------------------------------------------------------- /geosk/demo/demodataset/lagoonVenice.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/demodataset/lagoonVenice.prj -------------------------------------------------------------------------------- /geosk/demo/demodataset/lagoonVenice.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/demodataset/lagoonVenice.shp -------------------------------------------------------------------------------- /geosk/demo/demodataset/lagoonVenice.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/demodataset/lagoonVenice.shx -------------------------------------------------------------------------------- /geosk/demo/demodataset/observations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/demodataset/observations.csv -------------------------------------------------------------------------------- /geosk/demo/demodataset/sde37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/demodataset/sde37.jpg -------------------------------------------------------------------------------- /geosk/demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/models.py -------------------------------------------------------------------------------- /geosk/demo/templates/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/templates/demo/index.html -------------------------------------------------------------------------------- /geosk/demo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/tests.py -------------------------------------------------------------------------------- /geosk/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/urls.py -------------------------------------------------------------------------------- /geosk/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/demo/views.py -------------------------------------------------------------------------------- /geosk/geoskbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/geoskbase/__init__.py -------------------------------------------------------------------------------- /geosk/geoskbase/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/geoskbase/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/geoskbase/models.py -------------------------------------------------------------------------------- /geosk/geosksearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/geosksearch/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/geosksearch/models.py -------------------------------------------------------------------------------- /geosk/geosksearch/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/geosksearch/tests.py -------------------------------------------------------------------------------- /geosk/geosksearch/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /geosk/local_settings.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/local_settings.py.sample -------------------------------------------------------------------------------- /geosk/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /geosk/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /geosk/locale/en/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/en/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /geosk/locale/en/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/en/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /geosk/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /geosk/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /geosk/locale/it/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/it/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /geosk/locale/it/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/locale/it/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /geosk/mdtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/__init__.py -------------------------------------------------------------------------------- /geosk/mdtools/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/admin.py -------------------------------------------------------------------------------- /geosk/mdtools/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/api.py -------------------------------------------------------------------------------- /geosk/mdtools/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/forms.py -------------------------------------------------------------------------------- /geosk/mdtools/geoserver_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/geoserver_extra.py -------------------------------------------------------------------------------- /geosk/mdtools/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/migrations/0001_initial.py -------------------------------------------------------------------------------- /geosk/mdtools/migrations/0002_auto_20190515_0900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/migrations/0002_auto_20190515_0900.py -------------------------------------------------------------------------------- /geosk/mdtools/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/mdtools/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/models.py -------------------------------------------------------------------------------- /geosk/mdtools/templates/base/resourcebase_info_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/base/resourcebase_info_panel.html -------------------------------------------------------------------------------- /geosk/mdtools/templates/catalogue/_full_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/catalogue/_full_metadata.xml -------------------------------------------------------------------------------- /geosk/mdtools/templates/catalogue/full_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/catalogue/full_metadata.xml -------------------------------------------------------------------------------- /geosk/mdtools/templates/layers/layer_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/layers/layer_detail.html -------------------------------------------------------------------------------- /geosk/mdtools/templates/layers/layer_metadata_advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/layers/layer_metadata_advanced.html -------------------------------------------------------------------------------- /geosk/mdtools/templates/mdtools/edi_headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/mdtools/edi_headers.html -------------------------------------------------------------------------------- /geosk/mdtools/templates/mdtools/metadata_form_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/mdtools/metadata_form_js.html -------------------------------------------------------------------------------- /geosk/mdtools/templates/mdtools/rndt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/mdtools/rndt.html -------------------------------------------------------------------------------- /geosk/mdtools/templates/mdtools/rndt_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/mdtools/rndt_block.html -------------------------------------------------------------------------------- /geosk/mdtools/templates/mdtools/upload_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/templates/mdtools/upload_metadata.html -------------------------------------------------------------------------------- /geosk/mdtools/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/urls.py -------------------------------------------------------------------------------- /geosk/mdtools/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/mdtools/views.py -------------------------------------------------------------------------------- /geosk/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/middleware.py -------------------------------------------------------------------------------- /geosk/osk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/__init__.py -------------------------------------------------------------------------------- /geosk/osk/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/admin.py -------------------------------------------------------------------------------- /geosk/osk/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/api.py -------------------------------------------------------------------------------- /geosk/osk/extension_sos100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/extension_sos100.py -------------------------------------------------------------------------------- /geosk/osk/extension_sos200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/extension_sos200.py -------------------------------------------------------------------------------- /geosk/osk/extension_sos_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/extension_sos_utils.py -------------------------------------------------------------------------------- /geosk/osk/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/migrations/0001_initial.py -------------------------------------------------------------------------------- /geosk/osk/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/osk/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/models.py -------------------------------------------------------------------------------- /geosk/osk/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/proxy.py -------------------------------------------------------------------------------- /geosk/osk/sensor2html_v2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/sensor2html_v2.xsl -------------------------------------------------------------------------------- /geosk/osk/sos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/sos.py -------------------------------------------------------------------------------- /geosk/osk/templates/osk/dict_to_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/dict_to_html.html -------------------------------------------------------------------------------- /geosk/osk/templates/osk/osk_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/osk_base.html -------------------------------------------------------------------------------- /geosk/osk/templates/osk/osk_capabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/osk_capabilities.html -------------------------------------------------------------------------------- /geosk/osk/templates/osk/osk_deletesensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/osk_deletesensor.html -------------------------------------------------------------------------------- /geosk/osk/templates/osk/osk_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/osk_list.html -------------------------------------------------------------------------------- /geosk/osk/templates/osk/osk_registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/osk_registration.html -------------------------------------------------------------------------------- /geosk/osk/templates/osk/osk_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/osk_upload.html -------------------------------------------------------------------------------- /geosk/osk/templates/osk/sensorml_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/templates/osk/sensorml_block.html -------------------------------------------------------------------------------- /geosk/osk/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/tests.py -------------------------------------------------------------------------------- /geosk/osk/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/urls.py -------------------------------------------------------------------------------- /geosk/osk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/utils.py -------------------------------------------------------------------------------- /geosk/osk/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/osk/views.py -------------------------------------------------------------------------------- /geosk/patches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/patches/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/patches/models.py -------------------------------------------------------------------------------- /geosk/patches/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/patches/tests.py -------------------------------------------------------------------------------- /geosk/patches/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /geosk/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/settings.py -------------------------------------------------------------------------------- /geosk/skregistration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/__init__.py -------------------------------------------------------------------------------- /geosk/skregistration/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/admin.py -------------------------------------------------------------------------------- /geosk/skregistration/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/context_processors.py -------------------------------------------------------------------------------- /geosk/skregistration/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/migrations/0001_initial.py -------------------------------------------------------------------------------- /geosk/skregistration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/skregistration/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/models.py -------------------------------------------------------------------------------- /geosk/skregistration/templates/skregistration/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/templates/skregistration/registration.html -------------------------------------------------------------------------------- /geosk/skregistration/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/tests.py -------------------------------------------------------------------------------- /geosk/skregistration/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/urls.py -------------------------------------------------------------------------------- /geosk/skregistration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/skregistration/views.py -------------------------------------------------------------------------------- /geosk/static/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : ".components" 3 | } 4 | -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/DCAT_AP_IT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/DCAT_AP_IT.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/DwC_AlgariumVeneticum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/DwC_AlgariumVeneticum.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/DwC_HerbarioumVeneticum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/DwC_HerbarioumVeneticum.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/DwC_HerbariumVeneticum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/DwC_HerbariumVeneticum.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/EMF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/EMF.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/EMN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/EMN.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/IGNS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/IGNS.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/INSPIRE_dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/INSPIRE_dataset.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/INSPIRE_dataset_ermes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/INSPIRE_dataset_ermes.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/INSPIRE_dataset_forRITMARE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/INSPIRE_dataset_forRITMARE.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/RNDT_dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/RNDT_dataset.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/RNDT_dataset_forRITMARE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/RNDT_dataset_forRITMARE.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML101.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML101.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML101_forRITMARE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML101_forRITMARE.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_TypeESONET.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_TypeESONET.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_Vessel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_Vessel.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_VesselCompHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_VesselCompHistory.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_VesselEventHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_VesselEventHistory.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_fixed.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_fixedExtension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_fixedExtension.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_fixed_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_fixed_component.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_lightweight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_lightweight.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_lightweight_forLTER.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_lightweight_forLTER.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/SensorML20_lightweight_forRITMARE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/SensorML20_lightweight_forRITMARE.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/css/assets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/css/assets.css -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/css/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/css/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/css/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/css/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/foaf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/foaf.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/images/carousel-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/images/carousel-loader.gif -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/index.html -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/js/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/js/assets.js -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/DCAT_AP_IT_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/DCAT_AP_IT_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/DwC_AlgariumVeneticum_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/DwC_AlgariumVeneticum_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/DwC_HerbariumVeneticum_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/DwC_HerbariumVeneticum_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/EMF_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/EMF_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/EMN_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/EMN_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/FOAF_v2.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/FOAF_v2.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/INSPIRE_dataset_ermes_v2.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/INSPIRE_dataset_ermes_v2.10.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/INSPIRE_dataset_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/INSPIRE_dataset_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/INSPIRE_dataset_v1.00_forLTER.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/INSPIRE_dataset_v1.00_forLTER.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/INSPIRE_dataset_v1.00_forRITMARE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/INSPIRE_dataset_v1.00_forRITMARE.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/RNDT_dataset_v3.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/RNDT_dataset_v3.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/RNDT_dataset_v4.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/RNDT_dataset_v4.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/RNDT_dataset_v4.00_forRITMARE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/RNDT_dataset_v4.00_forRITMARE.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML101_v3.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML101_v3.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML101_v3.00_forRITMARE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML101_v3.00_forRITMARE.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_TypeESONET_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_TypeESONET_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forLTER.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forLTER.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forLTER_newSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forLTER_newSchema.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forLTER_newSchema_withProxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forLTER_newSchema_withProxy.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forRITMARE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_forRITMARE.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_newEdiSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_lightweight_v1.00_newEdiSchema.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_type_v1.00_forGet-It.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_type_v1.00_forGet-It.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_vesselCompHistory_v1.00_newEdiSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_vesselCompHistory_v1.00_newEdiSchema.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_vesselEventHistory_v1.00_newEdiSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_vesselEventHistory_v1.00_newEdiSchema.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/SensorML20_vessel_v1.00_newEdiSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/SensorML20_vessel_v1.00_newEdiSchema.xml -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/edi_template.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/edi_template.xsd -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/edi_template_old.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/edi_template_old.xsd -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/template_xform.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/template_xform.xsl -------------------------------------------------------------------------------- /geosk/static/EDI-NG_client/templates/template_xform_back.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/EDI-NG_client/templates/template_xform_back.xsl -------------------------------------------------------------------------------- /geosk/static/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/README -------------------------------------------------------------------------------- /geosk/static/autocomplete_light/addanother.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/autocomplete_light/addanother.js -------------------------------------------------------------------------------- /geosk/static/autocomplete_light/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/autocomplete_light/autocomplete.js -------------------------------------------------------------------------------- /geosk/static/autocomplete_light/django_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/autocomplete_light/django_admin.js -------------------------------------------------------------------------------- /geosk/static/autocomplete_light/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/autocomplete_light/remote.js -------------------------------------------------------------------------------- /geosk/static/autocomplete_light/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/autocomplete_light/style.css -------------------------------------------------------------------------------- /geosk/static/autocomplete_light/text_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/autocomplete_light/text_widget.js -------------------------------------------------------------------------------- /geosk/static/autocomplete_light/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/autocomplete_light/widget.js -------------------------------------------------------------------------------- /geosk/static/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/bower.json -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/cookieconsent.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/cookieconsent.min.js -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/dark-bottom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/dark-bottom.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/dark-floating-tada.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/dark-floating-tada.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/dark-floating.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/dark-floating.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/dark-inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/dark-inline.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/dark-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/dark-top.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/light-bottom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/light-bottom.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/light-floating.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/light-floating.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/light-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/light-top.css -------------------------------------------------------------------------------- /geosk/static/cookieconsent2/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/cookieconsent2/logo.png -------------------------------------------------------------------------------- /geosk/static/css/site_base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/css/site_base.css -------------------------------------------------------------------------------- /geosk/static/edi/js/1.00/json2xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/edi/js/1.00/json2xml.js -------------------------------------------------------------------------------- /geosk/static/edi/js/1.00/langs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/edi/js/1.00/langs.js -------------------------------------------------------------------------------- /geosk/static/edi/js/1.00/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/edi/js/1.00/spin.js -------------------------------------------------------------------------------- /geosk/static/edi/js/1.00/xml2json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/edi/js/1.00/xml2json.js -------------------------------------------------------------------------------- /geosk/static/edi/js/2.00/mdeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/edi/js/2.00/mdeditor.js -------------------------------------------------------------------------------- /geosk/static/fonts/apexnew-book-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/apexnew-book-webfont.woff -------------------------------------------------------------------------------- /geosk/static/fonts/apexnew-book-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/apexnew-book-webfont.woff2 -------------------------------------------------------------------------------- /geosk/static/fonts/apexnew-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/apexnew-light-webfont.woff -------------------------------------------------------------------------------- /geosk/static/fonts/apexnew-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/apexnew-light-webfont.woff2 -------------------------------------------------------------------------------- /geosk/static/fonts/apexnew-medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/apexnew-medium-webfont.woff -------------------------------------------------------------------------------- /geosk/static/fonts/apexnew-medium-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/apexnew-medium-webfont.woff2 -------------------------------------------------------------------------------- /geosk/static/fonts/opensans-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/opensans-bold-webfont.woff2 -------------------------------------------------------------------------------- /geosk/static/fonts/opensans-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/fonts/opensans-webfont.woff2 -------------------------------------------------------------------------------- /geosk/static/forXSLT/bootstrap/3.0.3/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/bootstrap/3.0.3/css/bootstrap.min.css -------------------------------------------------------------------------------- /geosk/static/forXSLT/bootstrap/3.0.3/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/bootstrap/3.0.3/js/bootstrap.min.js -------------------------------------------------------------------------------- /geosk/static/forXSLT/bootstrap/3.3.0/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/bootstrap/3.3.0/css/bootstrap.min.css -------------------------------------------------------------------------------- /geosk/static/forXSLT/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /geosk/static/forXSLT/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/bootstrap/3.3.0/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /geosk/static/forXSLT/bootstrap/3.3.0/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/bootstrap/3.3.0/js/bootstrap.min.js -------------------------------------------------------------------------------- /geosk/static/forXSLT/css/ekko-lightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/css/ekko-lightbox.min.css -------------------------------------------------------------------------------- /geosk/static/forXSLT/js/ekko-lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/js/ekko-lightbox.js -------------------------------------------------------------------------------- /geosk/static/forXSLT/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /geosk/static/forXSLT/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /geosk/static/forXSLT/leaflet/0.7.2/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/leaflet/0.7.2/css/leaflet.css -------------------------------------------------------------------------------- /geosk/static/forXSLT/leaflet/0.7.2/js/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/forXSLT/leaflet/0.7.2/js/leaflet.js -------------------------------------------------------------------------------- /geosk/static/geonode/js/upload/LayerInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geonode/js/upload/LayerInfo.js -------------------------------------------------------------------------------- /geosk/static/geosk/css/mdeditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/css/mdeditor.css -------------------------------------------------------------------------------- /geosk/static/geosk/css/site_base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/css/site_base.css -------------------------------------------------------------------------------- /geosk/static/geosk/img/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/static/geosk/img/add-sos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/img/add-sos.png -------------------------------------------------------------------------------- /geosk/static/geosk/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/img/favicon.ico -------------------------------------------------------------------------------- /geosk/static/geosk/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /geosk/static/geosk/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /geosk/static/geosk/img/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/img/logo-full.png -------------------------------------------------------------------------------- /geosk/static/geosk/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/img/logo.png -------------------------------------------------------------------------------- /geosk/static/geosk/js/EdiProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/EdiProxy.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/OpenSeaMapSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/OpenSeaMapSource.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/AddSOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/AddSOS.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/BaseSOSClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/BaseSOSClient.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/GridExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/GridExporter.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/SOSGetFeatureInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/SOSGetFeatureInfo.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/SOSGetFeatureOfInterest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/SOSGetFeatureOfInterest.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/SOSSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/SOSSource.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/SOSSourceDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/SOSSourceDialog.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/locale/it.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/SOSClient/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/SOSClient/utils.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/cookieconsent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/cookieconsent.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/flotcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/flotcharts.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/geosk_sos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/geosk_sos.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/gxp_extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/gxp_extra.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/mdeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/mdeditor.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/openlayers_sos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/openlayers_sos.js -------------------------------------------------------------------------------- /geosk/static/geosk/js/rndtCallbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/geosk/js/rndtCallbacks.js -------------------------------------------------------------------------------- /geosk/static/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/gruntfile.js -------------------------------------------------------------------------------- /geosk/static/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/gulpfile.js -------------------------------------------------------------------------------- /geosk/static/img/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/img/favicon.ico -------------------------------------------------------------------------------- /geosk/static/img/logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/img/logo1.svg -------------------------------------------------------------------------------- /geosk/static/img/logo1_200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/img/logo1_200px.png -------------------------------------------------------------------------------- /geosk/static/img/orcid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/img/orcid.png -------------------------------------------------------------------------------- /geosk/static/js/Leaflet.fullscreen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/js/Leaflet.fullscreen.min.js -------------------------------------------------------------------------------- /geosk/static/js/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/static/less/site_base.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geosk/static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/package-lock.json -------------------------------------------------------------------------------- /geosk/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/package.json -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/L.Control.Locate.ie.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/L.Control.Locate.ie.min.css -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/L.Control.Locate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/L.Control.Locate.min.css -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/bootstrap.min.css -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/images/layers-2x.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/images/layers.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/images/marker-icon-2x.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/images/marker-icon-green-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/images/marker-icon-green-2x.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/images/marker-icon.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/images/marker-shadow.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/animated-overlay.gif -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/jquery.handsontable.full.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/jquery.handsontable.full.css -------------------------------------------------------------------------------- /geosk/static/upload_observations/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/css/leaflet.css -------------------------------------------------------------------------------- /geosk/static/upload_observations/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /geosk/static/upload_observations/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /geosk/static/upload_observations/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /geosk/static/upload_observations/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /geosk/static/upload_observations/img/fois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/img/fois.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/img/sensordescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/img/sensordescription.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/index.html -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/L.Control.Locate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/L.Control.Locate.min.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/L.TileLayer.BetterWMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/L.TileLayer.BetterWMS.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/bootstrap.min.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/config.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/gettext_statements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/gettext_statements.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/images/marker-icon-2x.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/images/marker-icon.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/images/marker-shadow.png -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/insertObservationPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/insertObservationPage.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/insertResultPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/insertResultPage.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/jquery.handsontable.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/jquery.handsontable.full.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/jquery.min.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/jquery.spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/jquery.spin.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/leaflet.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/ritmaresk.SOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/ritmaresk.SOS.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/ritmaresk.dateUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/ritmaresk.dateUtil.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/ritmaresk.utils.NamingConvention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/ritmaresk.utils.NamingConvention.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/ritmaresk.utils.insertResultHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/ritmaresk.utils.insertResultHelper.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/ritmaresk.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/ritmaresk.utils.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/ritmaresk.utils.swe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/ritmaresk.utils.swe.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/ritmaresk.xsltTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/ritmaresk.xsltTransformer.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/js/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/js/spin.min.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/test/whoami.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/test/whoami.js -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/ListOfResultTemplates_From_GetCapabilities_json.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/ListOfResultTemplates_From_GetCapabilities_json.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/getFOIJson.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/getFOIJson.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/resultTemplate2Structure.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/resultTemplate2Structure.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/sensor2InsertObservation.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/sensor2InsertObservation.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/sensor2JsStructure.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/sensor2JsStructure.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/sensor2ResultTemplate.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/sensor2ResultTemplate.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/sosInsertionOperationsResponse2json.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/sosInsertionOperationsResponse2json.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/sp7InsertObservations2MultipleInsertObservationSplitArray.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/sp7InsertObservations2MultipleInsertObservationSplitArray.xsl -------------------------------------------------------------------------------- /geosk/static/upload_observations/xslt/wmsDescribeLayerResponse2Json.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/static/upload_observations/xslt/wmsDescribeLayerResponse2Json.xsl -------------------------------------------------------------------------------- /geosk/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/about.html -------------------------------------------------------------------------------- /geosk/templates/about_services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/about_services.html -------------------------------------------------------------------------------- /geosk/templates/about_upload_layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/about_upload_layers.html -------------------------------------------------------------------------------- /geosk/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/admin/base.html -------------------------------------------------------------------------------- /geosk/templates/geonode/geo_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/geonode/geo_header.html -------------------------------------------------------------------------------- /geosk/templates/geonode_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/geonode_base.html -------------------------------------------------------------------------------- /geosk/templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/help.html -------------------------------------------------------------------------------- /geosk/templates/maps/map_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/maps/map_edit.html -------------------------------------------------------------------------------- /geosk/templates/maps/map_geoexplorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/maps/map_geoexplorer.js -------------------------------------------------------------------------------- /geosk/templates/maps/map_include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/maps/map_include.html -------------------------------------------------------------------------------- /geosk/templates/maps/map_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/maps/map_new.html -------------------------------------------------------------------------------- /geosk/templates/monitoring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/monitoring/index.html -------------------------------------------------------------------------------- /geosk/templates/site_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/site_base.html -------------------------------------------------------------------------------- /geosk/templates/site_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/site_index.html -------------------------------------------------------------------------------- /geosk/templates/sk_credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/sk_credits.html -------------------------------------------------------------------------------- /geosk/templates/sk_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/templates/sk_license.html -------------------------------------------------------------------------------- /geosk/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/urls.py -------------------------------------------------------------------------------- /geosk/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/geosk/wsgi.py -------------------------------------------------------------------------------- /jetty-runner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/jetty-runner.xml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/manage.py -------------------------------------------------------------------------------- /manage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/manage.sh -------------------------------------------------------------------------------- /monitoring-cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/monitoring-cron -------------------------------------------------------------------------------- /package/support/geonode.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/package/support/geonode.binary -------------------------------------------------------------------------------- /package/support/geonode.updateip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/package/support/geonode.updateip -------------------------------------------------------------------------------- /pavement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/pavement.py -------------------------------------------------------------------------------- /paver.sh: -------------------------------------------------------------------------------- 1 | . $HOME/.override_env 2 | paver $@ 3 | -------------------------------------------------------------------------------- /playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/playbook.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/apache_starterkit_sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/samples/apache_starterkit_sample.conf -------------------------------------------------------------------------------- /samples/local_settings_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/samples/local_settings_sample.py -------------------------------------------------------------------------------- /scripts/docker/cron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/cron/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/cron/crontab_monitoring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/cron/crontab_monitoring -------------------------------------------------------------------------------- /scripts/docker/cron/docker_collectmetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/cron/docker_collectmetrics.py -------------------------------------------------------------------------------- /scripts/docker/env/production/django.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/env/production/django.env -------------------------------------------------------------------------------- /scripts/docker/env/production/geoserver.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/env/production/geoserver.env -------------------------------------------------------------------------------- /scripts/docker/env/production/nginx.env: -------------------------------------------------------------------------------- 1 | RESOLVER=127.0.0.11 2 | -------------------------------------------------------------------------------- /scripts/docker/misc/docker_geonode_updatelayers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/misc/docker_geonode_updatelayers.sh -------------------------------------------------------------------------------- /scripts/docker/misc/test_docker_dumpdata_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/misc/test_docker_dumpdata_settings.sh -------------------------------------------------------------------------------- /scripts/docker/misc/test_docker_loaddata_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/misc/test_docker_loaddata_settings.sh -------------------------------------------------------------------------------- /scripts/docker/misc/test_docker_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/docker/misc/test_docker_settings.sh -------------------------------------------------------------------------------- /scripts/misc/apache2/geonode.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/misc/apache2/geonode.conf.sample -------------------------------------------------------------------------------- /scripts/misc/cleanup_pyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/misc/cleanup_pyc.sh -------------------------------------------------------------------------------- /scripts/misc/insertsensor_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/misc/insertsensor_default.xml -------------------------------------------------------------------------------- /scripts/misc/jetty-runner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/scripts/misc/jetty-runner.xml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/tasks.py -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/uwsgi.ini -------------------------------------------------------------------------------- /wait-for-databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SP7-Ritmare/starterkit/HEAD/wait-for-databases.sh --------------------------------------------------------------------------------