From 952eba9625c5222e1eee77f711ecb3996998bafb Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 25 Apr 2012 02:20:45 -0500 Subject: Clean up mirrorlist generation form a bit Rename template since it really isn't an index of mirrors at all, and convert the form to use multiple checkboxes for both ftp/http and ipv4/ipv6 selection. Signed-off-by: Dan McGee --- templates/mirrors/index.html | 44 ------------------------------ templates/mirrors/mirrorlist_generate.html | 44 ++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 44 deletions(-) delete mode 100644 templates/mirrors/index.html create mode 100644 templates/mirrors/mirrorlist_generate.html (limited to 'templates/mirrors') diff --git a/templates/mirrors/index.html b/templates/mirrors/index.html deleted file mode 100644 index 49907b8..0000000 --- a/templates/mirrors/index.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "base.html" %} -{% load package_extras %} -{% block title %}Arch Linux - Pacman Mirrorlist Generator{% endblock %} - -{% block content %} -
- -

Pacman Mirrorlist Generator

- -

This page generates the most up-to-date mirrorlist possible for Arch - Linux. The data used here comes straight from the developers' internal - mirror database used to track mirror availability and tiering. There are - two main options: get a mirrorlist with every available mirror, or get a - mirrorlist tailored to your geography.

- -

Mirrorlist with all available mirrors

- -

An up-to-date mirrorlist is available containing all currently active - mirrors, optionally filtering by protocol. These URLs requires no GET or - POST parameters so they can be fetched from the command line if desired.

- -

- -

Customized by country mirrorlist

- -

The following form can generate a custom up-to-date - pacman mirrorlist based on geography and - desired protocol(s). Simply replace the contents of - /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 }} -

-
-
-{% endblock %} - diff --git a/templates/mirrors/mirrorlist_generate.html b/templates/mirrors/mirrorlist_generate.html new file mode 100644 index 0000000..e6f5e28 --- /dev/null +++ b/templates/mirrors/mirrorlist_generate.html @@ -0,0 +1,44 @@ +{% extends "base.html" %} +{% load package_extras %} +{% block title %}Arch Linux - Pacman Mirrorlist Generator{% endblock %} + +{% block content %} +
+ +

Pacman Mirrorlist Generator

+ +

This page generates the most up-to-date mirrorlist possible for Arch + Linux. The data used here comes straight from the developers' internal + mirror database used to track mirror availability and tiering. There are + two main options: get a mirrorlist with every available mirror, or get a + mirrorlist tailored to your geography.

+ +

Mirrorlist with all available mirrors

+ +

An up-to-date mirrorlist is available containing all currently active + mirrors, optionally filtering by protocol. These URLs requires no GET or + POST parameters so they can be fetched from the command line if desired.

+ +

+ +

Customized by country mirrorlist

+ +

The following form can generate a custom up-to-date + pacman mirrorlist based on geography and + desired protocol(s). Simply replace the contents of + /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_div }} +

+
+
+{% endblock %} + -- cgit v1.2.3-24-g4f1b