diff options
Diffstat (limited to 'site/download/index.php')
-rw-r--r-- | site/download/index.php | 50 |
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> |