diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-05-15 08:02:50 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-05-15 08:02:50 (EDT) |
commit | 856f062df5d85afaa52cbe088afc3a9fa8a2d29b (patch) | |
tree | 1dec113095a068e87bc1f7e65c239ffcd9ebe472 /site/download/index.php | |
parent | 50cd1c3a2fc992f9e6a7ac140338fa4fee4e016c (diff) | |
download | libreboot.org-856f062df5d85afaa52cbe088afc3a9fa8a2d29b.zip libreboot.org-856f062df5d85afaa52cbe088afc3a9fa8a2d29b.tar.gz libreboot.org-856f062df5d85afaa52cbe088afc3a9fa8a2d29b.tar.bz2 |
Remove torrent-related items, rename torrent list to lbRelease
(and put it in variables.php)
Libreboot has enough mirrors now, to the point where torrents
are not needed for the time being. The plan to host libreboot via
bittorrent is therefore shelved.
Diffstat (limited to 'site/download/index.php')
-rw-r--r-- | site/download/index.php | 49 |
1 files changed, 7 insertions, 42 deletions
diff --git a/site/download/index.php b/site/download/index.php index 461cc95..ef3398e 100644 --- a/site/download/index.php +++ b/site/download/index.php @@ -19,7 +19,6 @@ ?> <?php include_once "../variables.php"; - include_once "../torrents.php"; include_once "../functions.php"; ?> <!DOCTYPE html> @@ -52,13 +51,7 @@ A copy of /docs/ can also be found in the release archives. </p> - <!-- <p> - TODO: set up RSS and Atom feeds for the bittorrent links (but not the HTTP mirrors). - The main gitweb page (for the main git repository) already generates atom/rss feeds. - </p> --> - <ul class="ulnav"> - <!-- <li><a href="#torrent">Bittorrent</a></li> --> <li><a href="#http">HTTP mirrors</a></li> <li><a href="#git">Git repositories (development)</a></li> </ul> @@ -86,50 +79,22 @@ </p> </div> - -<!-- - <div class="section" id="torrent"> - - <p><b>Torrent links do not work yet. Use the HTTP downloads.</b></p> - - <h1>Bittorrent</h1> - - <?php - /* Show current version */ - echo torrent_list($lbTorrentLink, 0, 1); - ?> - - <?php - /* Link to old releases */ - if (count($lbTorrentLink)>1) { - ?> - <p> - Torrents for older releases can be found at <a href="oldtorrent/">oldtorrent/</a>. - </p> -<?php - } -?> - - <p><b>Torrent links do not work yet. Use the HTTP downloads.</b></p> - - </div> ---> <div class="section" id="http"> <h1>HTTP mirrors</h1> -<!-- - <p> - These mirrors are intended mainly for those who cannot use - bittorrent. Otherwise, the <a href="#torrent">torrent links</a> - are highly recommended. - </p> ---> <p> Download libreboot from one of these mirrors. </p> + <p> + <b> + The latest release has a version number of <?php echo $lbRelease[0][0][0]; ?>, + and was released on <?php echo $lbRelease[0][0][1]; ?>. + </b> + </p> + <?php /* show HTTP mirrors */ echo list_items($lbHttpMirror,"HTTP mirrors not added yet.",0,count($lbHttpMirror)); |