Merge branch 'main' into 95-send-spots-to-xota

This commit is contained in:
Ian Renton
2026-06-21 21:28:20 +01:00
10 changed files with 17 additions and 17 deletions

View File

@@ -61,7 +61,7 @@ class APIOptionsHandler(tornado.web.RequestHandler):
"spot_sources": spot_sources,
"alert_sources": alert_sources,
"continents": CONTINENTS,
"propagation_modes": PROPAGATION_MODES.values(),
"propagation_modes": list(PROPAGATION_MODES.values()),
"max_spot_age": MAX_SPOT_AGE,
"spot_allowed": ALLOW_SPOTTING,
"spot_submit_providers": spot_submit_providers}

View File

@@ -76,7 +76,7 @@
</div>
<script src="/js/add-spot.js?v=1782036437"></script>
<script src="/js/add-spot.js?v=1782073685"></script>
<script>$(document).ready(function () {
$("#nav-link-add-spot").addClass("active");
}); <!-- highlight active page in nav --></script>

View File

@@ -75,7 +75,7 @@
</div>
<script src="/js/alerts.js?v=1782036437"></script>
<script src="/js/alerts.js?v=1782073685"></script>
<script>$(document).ready(function () {
$("#nav-link-alerts").addClass("active");
}); <!-- highlight active page in nav --></script>

View File

@@ -77,8 +77,8 @@
<script>
let spotProvidersEnabledByDefault = {% raw json_encode(web_ui_options["spot-providers-enabled-by-default"]) %};
</script>
<script src="/js/spotsbandsandmap.js?v=1782036437"></script>
<script src="/js/bands.js?v=1782036437"></script>
<script src="/js/spotsbandsandmap.js?v=1782073685"></script>
<script src="/js/bands.js?v=1782073685"></script>
<script>$(document).ready(function () {
$("#nav-link-bands").addClass("active");
}); <!-- highlight active page in nav --></script>

View File

@@ -1,6 +1,6 @@
{% extends "skeleton.html" %}
{% block head_extra %}
<link rel="stylesheet" href="/css/style.css?v=1782036437" type="text/css">
<link rel="stylesheet" href="/css/style.css?v=1782073685" type="text/css">
<link href="/vendor/css/bootstrap-5.3.8.min.css" rel="stylesheet">
<link href="/vendor/css/fontawesome-6.7.2.min.css" rel="stylesheet">
<link href="/vendor/css/solid-6.7.2.min.css" rel="stylesheet">
@@ -10,10 +10,10 @@
<script src="/vendor/js/bootstrap-5.3.8.bundle.min.js"></script>
<script src="/vendor/js/tinycolor2-1.6.0.min.js"></script>
<script src="/js/utils.js?v=1782036437"></script>
<script src="/js/ui-ham.js?v=1782036437"></script>
<script src="/js/geo.js?v=1782036437"></script>
<script src="/js/common.js?v=1782036437"></script>
<script src="/js/utils.js?v=1782073685"></script>
<script src="/js/ui-ham.js?v=1782073685"></script>
<script src="/js/geo.js?v=1782073685"></script>
<script src="/js/common.js?v=1782073685"></script>
{% end %}
{% block body %}
<div class="container">

View File

@@ -284,7 +284,7 @@
</div>
<script src="/vendor/js/chart-4.4.9.umd.min.js"></script>
<script src="/js/conditions.js?v=1782036437"></script>
<script src="/js/conditions.js?v=1782073685"></script>
<script>$(document).ready(function () {
$("#nav-link-conditions").addClass("active");
}); <!-- highlight active page in nav --></script>

View File

@@ -95,8 +95,8 @@
<script>
let spotProvidersEnabledByDefault = {% raw json_encode(web_ui_options["spot-providers-enabled-by-default"]) %};
</script>
<script src="/js/spotsbandsandmap.js?v=1782036437"></script>
<script src="/js/map.js?v=1782036437"></script>
<script src="/js/spotsbandsandmap.js?v=1782073685"></script>
<script src="/js/map.js?v=1782073685"></script>
<script>$(document).ready(function () {
$("#nav-link-map").addClass("active");
}); <!-- highlight active page in nav --></script>

View File

@@ -116,8 +116,8 @@
<script>
let spotProvidersEnabledByDefault = {% raw json_encode(web_ui_options["spot-providers-enabled-by-default"]) %};
</script>
<script src="/js/spotsbandsandmap.js?v=1782036437"></script>
<script src="/js/spots.js?v=1782036437"></script>
<script src="/js/spotsbandsandmap.js?v=1782073685"></script>
<script src="/js/spots.js?v=1782073685"></script>
<script>$(document).ready(function () {
$("#nav-link-spots").addClass("active");
}); <!-- highlight active page in nav --></script>

View File

@@ -59,7 +59,7 @@
</div>
</div>
<script src="/js/status.js?v=1782036437"></script>
<script src="/js/status.js?v=1782073685"></script>
<script>
$(document).ready(function () {
$("#nav-link-status").addClass("active");

View File

@@ -11,7 +11,7 @@ info:
Please note that the data coming out of Spothole is only as good as the data going in. People mis-hear and make typos when spotting callsigns all the time, and there are plenty of areas where Spothole's location data may be inaccurate. If you are doing something where accuracy is important, such as contesting, you should not rely on Spothole's data to fill in any gaps in your log.
Spothole's source code is located at https://git.ianrenton.com/ian/spothole and the README there provides setup instructions if you would like to run your own copy. A demonstration server of Spothole is located at https://spothole.app.
Spothole's source code is located at https://git.ianrenton.com/ian/spothole and the README there provides setup instructions if you would like to run your own copy. A demonstration server of Spothole is located at https://spothole.app. The README also contains some examples of how you could query the API of the demonstration server to integrate the data into your own apps.
## Changelog