diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-22 20:28:12 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-22 20:28:12 +0200 |
commit | 0dba93a9fc87d06cfb1e63e9f6a28f589819c38f (patch) | |
tree | 987381f5d896565680198a84a994a9a426b5c966 /templates/mirrors/status_table.html | |
parent | 550ef2eeeb58a3899b612bf5f895b2ae962086a9 (diff) | |
download | archweb-0dba93a9fc87d06cfb1e63e9f6a28f589819c38f.tar.gz archweb-0dba93a9fc87d06cfb1e63e9f6a28f589819c38f.tar.xz |
Switch mirror status delay display to average delay
This takes a bit more work to compute, but since we cache all of this anyway
it isn't too big of deal. Using average delay instead of last delay will be
a bit more fair on mirrors that have odd syncing schedules, as well as
exposing those that only sync once a day. Also fix an issue that will arise
with cutoff_time being calculated once, and adjust mirror score to treat
hours delay as a float rather than an integer.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/mirrors/status_table.html')
-rw-r--r-- | templates/mirrors/status_table.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/mirrors/status_table.html b/templates/mirrors/status_table.html index 90bbf6b..7515776 100644 --- a/templates/mirrors/status_table.html +++ b/templates/mirrors/status_table.html @@ -6,7 +6,7 @@ <th>Protocol</th> <th>Country</th> <th>Last Sync</th> - <th>Delay (hh:mm)</th> + <th>μ Delay (hh:mm)</th> <th>μ Duration (secs)</th> <th>σ Duration (secs)</th> <th>Mirror Score</th> @@ -22,7 +22,7 @@ <td>{{ m_url.delay|duration|default:'unknown' }}</td> <td>{{ m_url.duration_avg|floatformat:2|default:'unknown' }}</td> <td>{{ m_url.duration_stddev|floatformat:2|default:'unknown' }}</td> - <td>{{ m_url.score|floatformat:1|default:'unknown' }}</td> + <td>{{ m_url.score|floatformat:1|default:'∞' }}</td> </tr> {% endfor %} </tbody> |