diff options
-rw-r--r-- | site/download/index.php | 19 | ||||
-rw-r--r-- | site/variables.template.php | 36 |
2 files changed, 41 insertions, 14 deletions
diff --git a/site/download/index.php b/site/download/index.php index d21da16..1026dd9 100644 --- a/site/download/index.php +++ b/site/download/index.php @@ -121,23 +121,18 @@ are highly recommended. </p> - <ul> <?php - if (count($lbHttpMirror)>0) { - for ($server=0; $server<count($lbHttpMirror); $server++) { + /* show HTTP mirrors */ + echo list_items($lbHttpMirror,"HTTP mirrors not added yet.",0,count($lbHttpMirror)); ?> - <li><a href="<?php echo $lbHttpMirror[$server]; ?>"><?php echo $lbHttpMirror[$server]; ?></a></li> + <h2 id="ftp">FTP mirrors</h2> <?php - } - } else { + /* show HTTP mirrors */ + echo list_items($lbFtpMirror,"FTP mirrors not added yet.",0,count($lbFtpMirror)); ?> - <li>HTTP mirrors not added yet.</li> -<?php - } -?> - </ul> + - <h2 id="mirror">Mirroring <?php echo $lbProjectName; ?></h2> + <h2 id="mirror">Rsync mirrors (for mirroring <?php echo $lbProjectName; ?>)</h2> <p> Create a directory in your web server document root (e.g. <?php echo $lbProjectName; ?>/), and add one of these to your crontab: diff --git a/site/variables.template.php b/site/variables.template.php index 98bda0b..54a95a1 100644 --- a/site/variables.template.php +++ b/site/variables.template.php @@ -20,6 +20,35 @@ <?php /* Copy this to variables.php, and adapt for your needs */ + /* + * ------FUNCTIONS: + */ + + /* Generic function for showing a list of URLs */ + function list_items($arrayMirrors,$strNotFoundMessage,$forIndexStart,$forIndexbelow) { +?> + <ul> +<?php + if (count($arrayMirrors)>0) { + for ($server=$forIndexStart; $server<$forIndexbelow; $server++) { +?> + <li><a href="<?php echo $arrayMirrors[$server]; ?>"><?php echo $arrayMirrors[$server]; ?></a></li> +<?php + } + } else { +?> + <li><?php echo strNotFoundMessage; ?></li> +<?php + } +?> + </ul> +<?php + } + + /* + * ------DATA: + */ + /* Project name * NOTE: Not all parts of the site use this, because * parts of the site talking about things that are very @@ -51,11 +80,14 @@ $lbHttpMirror = array( "http://www.libreboot.org/release/", "https://freedombox.org/libreboot/", - "http://www.mirrorservice.org/sites/libreboot.org/release/", + "http://www.mirrorservice.org/sites/libreboot.org/release/" + ); + /* HTTP mirrors (for release archives) */ + $lbFtpMirror = array( "ftp://ftp.mirrorservice.org/sites/libreboot.org/release/" ); - /* rsync servers. Put the main one first */ + /* rsync servers (for release archives). Put the main one first */ $lbRsyncServer = array ( "libreboot.org::mirrormirror", "rsync://rsync.mirrorservice.org/libreboot.org/release/" |