summaryrefslogtreecommitdiffstats
path: root/site/download/index.php
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-05-27 12:05:56 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-05-27 12:05:56 (EDT)
commit0e94461327c7c757793587703498b206934d0484 (patch)
tree8ec8dd73e0988391f91ea02531d11676ff6caf49 /site/download/index.php
parent9028420e4e48fa9d750a1dd43ab6bfe4cdf2ad47 (diff)
downloadlibreboot.org-0e94461327c7c757793587703498b206934d0484.zip
libreboot.org-0e94461327c7c757793587703498b206934d0484.tar.gz
libreboot.org-0e94461327c7c757793587703498b206934d0484.tar.bz2
download page: name each mirror
Diffstat (limited to 'site/download/index.php')
-rw-r--r--site/download/index.php50
1 files changed, 25 insertions, 25 deletions
diff --git a/site/download/index.php b/site/download/index.php
index 3e50b40..8de4669 100644
--- a/site/download/index.php
+++ b/site/download/index.php
@@ -94,9 +94,6 @@
<?php echo gettext("These releases are more rigorously tested."); ?>
<?php echo gettext("However, they might be out of date compared to the current development snapshots."); ?>
</p>
- <p>
- <?php echo gettext("These archives are not updated very often, and will not receive any further changes."); ?>
- </p>
<p>
<?php echo gettext("Download libreboot from one of these mirrors."); ?>
@@ -113,54 +110,57 @@
<?php
/* show HTTP mirrors */
- echo list_items($lbHttpMirror, gettext("HTTP mirrors not added yet."),0,count($lbHttpMirror));
+ echo mirrorList($lbHttpMirror, gettext("HTTP mirrors not added yet."),0,count($lbHttpMirror));
?>
<h2 id="ftp">FTP mirrors</h2>
<?php
- /* show HTTP mirrors */
- echo list_items($lbFtpMirror,gettext("FTP mirrors not added yet."),0,count($lbFtpMirror));
+ /* show FTP mirrors */
+ echo mirrorList($lbFtpMirror,gettext("FTP mirrors not added yet."),0,count($lbFtpMirror));
?>
-
- <h2 id="mirror"><?php echo gettext("Rsync mirrors (for mirroring libreboot)"); ?></h2>
- <p>
- <?php echo gettext("Create a directory in your web server document root (e.g. libreboot/), and add one of these to your crontab:"); ?>
- </p>
+ </div>
+
+ <div class="s">
+
+ <h1 id="mirror"><?php echo gettext("Rsync mirrors (for mirroring libreboot)"); ?></h1>
+ <p>
+ <?php echo gettext("Create a directory in your web server document root (e.g. libreboot/), and add one of these to your crontab:"); ?>
+ </p>
<?php
if (count($lbRsyncServer)>0) {
?>
- <h3><?php echo gettext("Main rsync mirror:"); ?></h3>
- <p>
- $ <b>rsync -avxP --delete --stats <?php echo $lbRsyncServer[0]; ?> /path/to/docroot/libreboot/</b>
- </p>
+ <h2><?php echo gettext("Main rsync mirror:"); ?></h2>
+ <p>
+ $ <b>rsync -avxP --delete --stats <?php echo $lbRsyncServer[0]; ?> /path/to/docroot/libreboot/</b>
+ </p>
<?php
if(count($lbRsyncServer)>1) {
?>
- <h3><?php echo gettext("Backup rsync mirrors:"); ?></h3>
- <p>
+ <h2><?php echo gettext("Backup rsync mirrors:"); ?></h2>
+ <p>
<?php
for ($server=1; $server<count($lbRsyncServer); $server++) {
?>
- $ <b>rsync -avxP --delete --stats <?php echo $lbRsyncServer[$server]; ?> /path/to/docroot/libreboot/</b><br/>
+ $ <b>rsync -avxP --delete --stats <?php echo $lbRsyncServer[$server]; ?> /path/to/docroot/libreboot/</b><br/>
<?php
}
?>
- </p>
+ </p>
<?php
}
} else {
?>
- <p>
- <b><?php echo gettext("No mirrors available yet."); ?></b>
- </p>
+ <p>
+ <b><?php echo gettext("No mirrors available yet."); ?></b>
+ </p>
<?php
}
?>
- <p>
- <?php echo gettext("Are you running a mirror? Contact the libreboot project (details are on the home page), and the link will be added here."); ?>
- </p>
+ <p>
+ <?php echo gettext("Are you running a mirror? Contact the libreboot project (details are on the home page), and the link will be added here."); ?>
+ </p>
</div>