diff options
Diffstat (limited to 'site/variables.template.php')
-rw-r--r-- | site/variables.template.php | 50 |
1 files changed, 49 insertions, 1 deletions
diff --git a/site/variables.template.php b/site/variables.template.php index 7ea1380..4a0cd63 100644 --- a/site/variables.template.php +++ b/site/variables.template.php @@ -1,11 +1,43 @@ <?php +/* + A number of variables that are used by the whole site + Copyright (C) 2015 Francis Rowe <info@gluglug.org.uk> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ +?> +<?php + /* Copy this to variables.php, and adapt for your needs */ + + /* Project name + * NOTE: Not all parts of the site use this, because + * parts of the site talking about things that are very + * specific to the libreboot project. Changing these + * variables is only the first step. + */ + $lbProjectName = "libreboot"; /* use all lower-case */ + $lbProjectNameCapitalized = "Libreboot"; /* Capitalized */ + + /* Project home page */ $lbHomepage = "http://libreboot.org/"; + /* Main git repositories */ $lbFirmwareGitRepoAddress = "http://libreboot.org/libreboot.git"; $lbFirmwareGitwebAddress = "http://libreboot.org/gitweb/?p=libreboot.git"; $lbWebsiteGitRepoAddress = "http://libreboot.org/libreboot.org.git"; $lbWebsiteGitwebAddress = "http://libreboot.org/gitweb/?p=libreboot.org.git"; - + /* Backup git repositories */ $lbFirmwareBackupGitRepoAddress = array( "https://gitorious.org/libreboot-backup/libreboot.git", "git://git.pehjota.net/libreboot-backup/libreboot.git" @@ -14,12 +46,28 @@ "https://gitorious.org/libreboot-backup/libreboot-website.git", "git://git.pehjota.net/libreboot-backup/libreboot.org.git" ); + + /* HTTP mirrors (for release archives) */ + $lbHttpMirror = array( + "../docs/release.html", + "http://www.libreboot.org/release/" + ); + /* Bug tracker URL */ $lbBugTrackerAddress = "http://projects.mtjm.eu/projects/libreboot"; + /* Links to mailing lists */ $userMailingListAddress = "https://lists.nongnu.org/mailman/listinfo/libreboot"; $devMailingListAddress = "https://lists.nongnu.org/mailman/listinfo/libreboot-dev"; + /* IRC channel */ $ircChannelName = "#libreboot (FreeNode IRC)"; $ircChannelAddress = "https://webchat.freenode.net/?channels=libreboot"; + + /* Footer text above the git clone link */ + /* footer.php will place this inside a <p></p>. */ + $lbFooterText = "This website is hosted on a Libreboot machine, powered by <a href=\"https://trisquel.info/\">Trisquel GNU/Linux-libre</a> and <a href=\"http://www.lighttpd.net/\">Lighttpd</a>."; + + $lbProjectGpgKeyInfo = "pub 4096R/656F212E 2014-07-04 Libreboot Releases (signing key) <releases@libreboot.org><br/>Fingerprint=C923 4BA3 200C F688 9CC0 764D 6E97 D575 656F 212E "; + $lbProjectGpgKeyID = "0x656F212E"; ?> |