diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-02-17 04:42:14 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-02-17 04:42:14 (EST) |
commit | df3351ca80ee49c8b587a1ea06cd8c83d9a99622 (patch) | |
tree | ea1a9a1a804fc0928aada6fe59cc10cce79ce91f /site | |
parent | 8f3c86dd23d6f2eea5605d0e8a3c12dab69f05dc (diff) | |
download | libreboot.org-df3351ca80ee49c8b587a1ea06cd8c83d9a99622.zip libreboot.org-df3351ca80ee49c8b587a1ea06cd8c83d9a99622.tar.gz libreboot.org-df3351ca80ee49c8b587a1ea06cd8c83d9a99622.tar.bz2 |
add new release page (template)
Diffstat (limited to 'site')
-rw-r--r-- | site/license.txt | 6 | ||||
-rw-r--r-- | site/release/index.php | 93 |
2 files changed, 98 insertions, 1 deletions
diff --git a/site/license.txt b/site/license.txt index d4cb6ee..028a78e 100644 --- a/site/license.txt +++ b/site/license.txt @@ -1,5 +1,9 @@ Copyright © 2015 Francis Rowe <info@gluglug.org.uk> -Applies to the following: variables.php, readme.txt, .gitignore, index.php, footer.php, contrib/, css/, vortex86ex/ + +Applies to the following: +variables.php, readme.txt, .gitignore, index.php, footer.php, +release/index.php, contrib/index.php, css/main.css, vortex86ex/ + ...released under the Creative Commons Attribution-ShareAlike 4.0 International Public License and all future versions. For a copy of that license, see https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/site/release/index.php b/site/release/index.php new file mode 100644 index 0000000..fe01ffa --- /dev/null +++ b/site/release/index.php @@ -0,0 +1,93 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="stylesheet" type="text/css" href="../css/main.css" /> + + <title>Download libreboot</title> + +</head> + +<?php + include_once "../variables.php"; +?> + +<body> + + <div class="contain"> + + <div id="libreboot" class="section intro"> + + <h1>Download libreboot</h1> + + <p> + Torrent (magnet) links to releases, and links to third-party HTTP mirrors. Use this page + to download libreboot. These are stable releases; for development (unstable) releases, + refer back to the home page. + </p> + + <p> + <b>This page isn't actually ready yet. For now, the official download page + is at <a href="../docs/release.html">../docs/release.html</a>. On the next release of libreboot after r20150208, + release archives will no longer be hosted on the libreboot.org HTTP server. Old releases + will be deleted and moved to bittorrent. New releases will also be hosted on bittorrent.</b> + </p> + + <p> + <b>Why bittorrent? As we all know, bittorrent is inherently more efficient than a HTTP server + for large files, due to its peer-to-peer distributed nature. Libreboot releases are actually much + more efficient now, where ROM images for each machine are separated into their own tar archives. + The old 'binary' archive is now named 'utils'. Documentation is also deleted from 'utils' and 'src' + and now available in a separate archive. All of this means that the user has a much more streamlined + way of getting libreboot releases, with less data to download. Bittorrent will improve this even + further, giving users faster download speeds.</b> + </p> + + <p> + <b>Bittorrent is also redundant. The libreboot project will not actually host its own tracker at all, + but it will instead use many public trackers and publish the magnet links. The website is also + hosted in git, which means that everything is easier to mirror. If libreboot.org is down, you'll + still be able to download libreboot so long as you have those magnet links.</b> + </p> + + <p> + Information about these releases can be found under docs/release.html in the libreboot_docs archive + or in the git git repository. See <a href="../docs/release.html">../docs/release.html</a>. + </p> + + <p> + <a href="../">Back to homepage</a> + </p> + + </div> + + <div class="section"> + + <h2>XXXXYYZZ</h2> + <p> + Next release. Date unknown. + </p> + <h2>r20150208</h2> + <p> + The magnet links for libreboot releases aren't actually available yet. + It will all be moved later. This page is just a template for the time being. + </p> + <h2>TODO: populate this page.</h2> + + </div> + + <div class="section footer"> + +<?php + include "../footer.php"; +?> + + </div> + + </div> + +</body> +</html> + |