index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-01-04 12:00:14 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-01-04 12:00:14 +0100 |
commit | 483a5fa0ca370be47ba35691b8037a7fa289f4a5 (patch) | |
tree | 11f31168c65b66fe35e6b53e53ddb29400a4dd2e /mirrors.php | |
parent | 92291b5afe66926f681e44dd96e9a71b5501b9b5 (diff) |
-rw-r--r-- | mirrors.php | 14 |
diff --git a/mirrors.php b/mirrors.php index dc69e7a..096f89c 100644 --- a/mirrors.php +++ b/mirrors.php @@ -275,8 +275,10 @@ EOF; <th>Mirror URL</th> <th>Protocol</td> <th>Country</th> + <th>Completion</th> + <th>Delay</th> + <th>Last Sync</th> EOF; -//protocol url country country_code last_sync start delay duration_avg duration_stddev isos ipv4 ipv6 active recently_active completion_pct count score print <<<EOF </tr> </thead> @@ -297,6 +299,15 @@ EOF; print " </span>\n"; print " " . $row["country"] . "\n"; print " </td>\n"; + print " <td>\n"; + print " " . $row["completion_pct"] . "\n"; + print " </td>\n"; + print " <td>\n"; + print " " . $row["delay"] . "\n"; + print " </td>\n"; + print " <td>\n"; + print " " . $row["last_sync"] . "\n"; + print " </td>\n"; print " </tr>\n"; if ($oddity == "odd") $oddity = "even"; @@ -313,6 +324,7 @@ EOF; <pre> EOF; } +// for debugging // print json_encode($content, JSON_PRETTY_PRINT); print <<<EOF </pre> |