From 550ef2eeeb58a3899b612bf5f895b2ae962086a9 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 21 Sep 2010 18:58:34 -0500 Subject: Allow generated mirrorlist to take status info into account By using the mirror score we calculate, we can sort the mirrors in the generated mirrorlist for people. Signed-off-by: Dan McGee --- templates/mirrors/index.html | 4 +++- templates/mirrors/mirrorlist.txt | 10 +++++----- templates/mirrors/mirrorlist_status.txt | 13 +++++++++++++ 3 files changed, 21 insertions(+), 6 deletions(-) create mode 100644 templates/mirrors/mirrorlist_status.txt (limited to 'templates') diff --git a/templates/mirrors/index.html b/templates/mirrors/index.html index 8c193bae..1d620b14 100644 --- a/templates/mirrors/index.html +++ b/templates/mirrors/index.html @@ -31,7 +31,9 @@

Customized by country mirrorlist

pacman mirrorlist based on geography and desired protocol(s). Simply replace the contents of - /etc/pacman.d/mirrorlist with your generated list.

+ /etc/pacman.d/mirrorlist with your generated list. + Additionally, the mirror status data can be incorporated into the generated + mirror list and used to pre-order the mirrors.

{{ mirrorlist_form.as_p }} diff --git a/templates/mirrors/mirrorlist.txt b/templates/mirrors/mirrorlist.txt index 9d5b6919..2eedbd71 100644 --- a/templates/mirrors/mirrorlist.txt +++ b/templates/mirrors/mirrorlist.txt @@ -3,11 +3,11 @@ Yes, ugly templates are ugly, but in order to keep line breaks where we want them, sacrifices have to be made. If editing this template, it is easiest to forget about where line breaks are happening until you are done getting the content right, and then go back later to fix it all up. -{% endcomment %}{% autoescape off %}# -# Arch Linux repository mirrorlist -# Generated on {% now "Y-m-d" %} -#{% for mirror_url in mirror_urls %}{% ifchanged %} +{% endcomment %}{% autoescape off %}## +## Arch Linux repository mirrorlist +## Generated on {% now "Y-m-d" %} +##{% for mirror_url in mirror_urls %}{% ifchanged %} -# {{ mirror_url.mirror.country }}{% endifchanged %} +## {{ mirror_url.mirror.country }}{% endifchanged %} #Server = {{ mirror_url.url}}$repo/os/$arch{% endfor %} {% endautoescape %} diff --git a/templates/mirrors/mirrorlist_status.txt b/templates/mirrors/mirrorlist_status.txt new file mode 100644 index 00000000..e2fbc1e6 --- /dev/null +++ b/templates/mirrors/mirrorlist_status.txt @@ -0,0 +1,13 @@ +{% comment %} +Yes, ugly templates are ugly, but in order to keep line breaks where we want +them, sacrifices have to be made. If editing this template, it is easiest to +forget about where line breaks are happening until you are done getting the +content right, and then go back later to fix it all up. +{% endcomment %}{% autoescape off %}## +## Arch Linux repository mirrorlist +## Sorted by mirror score from mirror status page +## Generated on {% now "Y-m-d" %} +{% for mirror_url in mirror_urls %} +## Score: {{ mirror_url.score|floatformat:1|default:'unknown' }}, {{ mirror_url.mirror.country }} +#Server = {{ mirror_url.url}}$repo/os/$arch{% endfor %} +{% endautoescape %} -- cgit v1.2.3-54-g00ecf