aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Fandrich <danf@mageia.org>2025-11-13 20:48:19 -0800
committerDan Fandrich <danf@mageia.org>2025-11-13 20:48:19 -0800
commit1926a14f6a7d48fa03e67835c472bc66cb89a291 (patch)
treef66ce8edefffbd81f96759c3fb6bc76679ca70b0
parent51b2171eb24069fded057f495784d2ec73b759ea (diff)
parent9254513331530ef339fd6364164da64596b07b5d (diff)
downloadmgamirrors-1926a14f6a7d48fa03e67835c472bc66cb89a291.tar
mgamirrors-1926a14f6a7d48fa03e67835c472bc66cb89a291.tar.gz
mgamirrors-1926a14f6a7d48fa03e67835c472bc66cb89a291.tar.bz2
mgamirrors-1926a14f6a7d48fa03e67835c472bc66cb89a291.tar.xz
mgamirrors-1926a14f6a7d48fa03e67835c472bc66cb89a291.zip
Merge remote-tracking branch 'origin/master'
Restore what looks like a force push that removed the 0.08 release.
-rw-r--r--root/html/includes/footer.tt2
-rw-r--r--root/html/includes/host_information.tt2
-rw-r--r--root/html/pages/report/index.tt8
3 files changed, 7 insertions, 5 deletions
diff --git a/root/html/includes/footer.tt b/root/html/includes/footer.tt
index 0ecf502..a6e9cd7 100644
--- a/root/html/includes/footer.tt
+++ b/root/html/includes/footer.tt
@@ -1,5 +1,5 @@
<!-- $Id$ -->
<hr>
-<p><a href="http://www.mageia.org/">Mageia.Org</a></p>
+<p><a href="https://www.mageia.org/">Mageia.Org</a></p>
</body>
</html>
diff --git a/root/html/includes/host_information.tt b/root/html/includes/host_information.tt
index 7ddef5b..7906fe1 100644
--- a/root/html/includes/host_information.tt
+++ b/root/html/includes/host_information.tt
@@ -120,7 +120,7 @@ your update request.<br>
</div>
<script type="text/javascript"
- src="http://maps.google.com/maps/api/js?sensor=false">
+ src="https://maps.google.com/maps/api/js?sensor=false">
</script>
<script type="text/javascript">
var map;
diff --git a/root/html/pages/report/index.tt b/root/html/pages/report/index.tt
index b52a1a8..ddb1871 100644
--- a/root/html/pages/report/index.tt
+++ b/root/html/pages/report/index.tt
@@ -1,6 +1,6 @@
<!-- $Id$ -->
<script type="text/javascript"
- src="http://maps.google.com/maps/api/js?sensor=false">
+ src="https://maps.google.com/maps/api/js?sensor=false">
</script>
<style>
div.infow { margin: 0; font-size: 70%; font-family: Helvetica, Arial, sans-serif; }
@@ -36,8 +36,10 @@ div.infow p { margin: 0; }
* @return integer
*/
function getStrokeWeight(bw) {
- var bws = { "1Mbits": 1, "10Mbits": 2, "100Mbits": 3,
- "1Gbits": 4, "2Gbits": 5
+ var bws = { "1Mbits": 1, "10Mbits": 1, "100Mbits": 1,
+ "1Gbits": 2, "2Gbits": 2,
+ "10Gbits": 3, "20Gbits": 3,
+ "100Gbits": 4, "200Gbits": 4
};
return (bw in bws) ? bws[bw] : 1;
}