variables.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. /*
  3. A number of variables that are used by the whole site
  4. Copyright (C) 2015, 2016 Leah Woods <info@minifree.org>
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU Affero General Public License as
  7. published by the Free Software Foundation, either version 3 of the
  8. License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU Affero General Public License for more details.
  13. You should have received a copy of the GNU Affero General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. ?>
  17. <?php
  18. /* Project home page */
  19. $lbHomepage = "https://libreboot.org/";
  20. $mumbleServerAddress = "libreboot.org";
  21. $mumbleServerPort = "64738";
  22. /* Main git repositories */
  23. $lbFirmwareGitRepoAddress = "git://git.savannah.gnu.org/libreboot.git";
  24. $lbFirmwareGitwebAddress = "http://git.savannah.gnu.org/cgit/libreboot.git";
  25. $lbWebsiteGitRepoAddress = "https://notabug.org/vimuser/libreboot-website.git";
  26. $lbWebsiteGitwebAddress = "https://notabug.org/vimuser/libreboot-website";
  27. /* Backup git repositories */
  28. $lbFirmwareBackupGitRepoAddress = array(
  29. "https://notabug.org/vimuser/libreboot.git",
  30. "git://git.pehjota.net/libreboot-backup/libreboot.git"
  31. );
  32. $lbWebsiteBackupGitRepoAddress = array(
  33. "git://git.pehjota.net/libreboot-backup/libreboot.org.git"
  34. );
  35. /* HTTPS mirrors (for release archives) */
  36. $lbHttpsMirror = array(
  37. array("https://www.mirrorservice.org/sites/libreboot.org/release/","University of Kent, UK"),
  38. array("https://ginette.swordarmor.fr/libreboot/","swordarmor.fr, France"),
  39. array("https://mirror.se.partyvan.eu/pub/libreboot/","partyvan.eu, Sweden"),
  40. array("https://elgrande74.net/libreboot/","elgrande74.net, France"),
  41. array("https://nedson.net/libreboot","nedson.net, USA")
  42. );
  43. $lbHttpMirror = array(
  44. array("http://mirrors.mit.edu/libreboot/","MIT, USA"),
  45. array("http://tpvj6abq225m5pcf.onion/pub/libreboot/","Tor hidden server, Undisclosed location"),
  46. array("http://mirror.linux.ro/libreboot/","linux.ro, Romania"),
  47. array("http://mirror.helium.in-berlin.de/libreboot/","in-berlin.de, Germany"),
  48. array("http://libreboot.mirror.si/","mirror.si, Slovenia")
  49. );
  50. /* FTP mirrors (for release archives) */
  51. $lbFtpMirror = array(
  52. array("ftp://ftp.mirrorservice.org/sites/libreboot.org/release/","University of Kent, UK"),
  53. array("ftp://ftp.linux.ro/libreboot/","linux.ro, Romania"),
  54. array("ftp://libreboot.mirror.si/libreboot","mirror.si, Slovenia")
  55. );
  56. /* rsync servers (for release archives). Put the main one first */
  57. $lbRsyncServer = array (
  58. array("rsync.libreboot.org::mirrormirror","Libreboot project, UK (main rsync mirror)"),
  59. array("rsync://rsync.mirrorservice.org/libreboot.org/release/","University of Kent, UK (backup mirror)"),
  60. array("rsync://ftp.linux.ro/libreboot/","linux.ro, Romania (backup mirror)"),
  61. array("rsync://mirror.se.partyvan.eu/pub/libreboot/","partyvan.eu, Sweden (backup mirror)"),
  62. array("rsync://libreboot.mirror.si/libreboot","mirror.si, Slovenia (backup mirror)")
  63. );
  64. /* Bug tracker URL */
  65. $lbBugTrackerAddress = "http://projects.mtjm.eu/projects/libreboot";
  66. /* Links to mailing lists */
  67. $userMailingListAddress = "https://lists.gnu.org/mailman/listinfo/libreboot";
  68. $devMailingListAddress = "https://lists.gnu.org/mailman/listinfo/libreboot-dev";
  69. /* Mailing list email addresses */
  70. $userMailingListEmail = "libreboot@gnu.org";
  71. $devMailingListEmail = "libreboot-dev@gnu.org";
  72. /* IRC channel */
  73. $ircChannelName = "#libreboot chat (FreeNode IRC)";
  74. $ircChannelAddress = "https://webchat.freenode.net/?channels=libreboot";
  75. /* GPG key info */
  76. $lbProjectGpgKeyInfo = "pub&nbsp; 4096R/656F212E 2014-07-04 Libreboot Releases (signing key) &lt;releases@libreboot.org&gt;<br/>Fingerprint=C923 4BA3 200C F688 9CC0&nbsp; 764D 6E97 D575 656F 212E ";
  77. $lbProjectGpgKeyID = "0x656F212E";
  78. /* release list. format is: version number, then date of release */
  79. /* latest releases first, earlier releases are at the bottom */
  80. $lbRelease = array (
  81. array (
  82. array("20150518", "2015-05-18")
  83. ),
  84. array (
  85. array("20150208", "2015-02-08")
  86. ),
  87. array (
  88. array("20150126", "2015-01-26")
  89. ),
  90. array (
  91. array("20150124", "2015-01-24")
  92. ),
  93. array (
  94. array("20141015", "2014-10-15")
  95. ),
  96. array ( /* old name: Release 6, beta 7 */
  97. array("20140911", "2014-09-11")
  98. ),
  99. array ( /* old name: Release 6, beta 6 */
  100. array("20140903", "2014-09-03")
  101. ),
  102. array ( /* old name: Release 6, beta 5 */
  103. array("20140811", "2014-08-11")
  104. ),
  105. array ( /* old name: Release 6, beta 4 */
  106. array("20140729", "2014-07-29")
  107. ),
  108. array ( /* old name: Release 6, beta 3 */
  109. array("20140720", "2014-07-20")
  110. ),
  111. array ( /* old name: Release 6, beta 2 */
  112. array("20140716", "2014-07-16")
  113. ),
  114. array ( /* old name: Release 6, beta 1 */
  115. array("20140711", "2014-07-11")
  116. ),
  117. array ( /* old name: Release 5 */
  118. array("20140622", "2014-06-22")
  119. ),
  120. array ( /* old name: Release 4 */
  121. array("20140221", "2014-02-21")
  122. ),
  123. array ( /* old name: Release 3 */
  124. array("20131214", "2013-12-14")
  125. ),
  126. array ( /* old name: Release 2 */
  127. array("20131213", "2013-12-13")
  128. ),
  129. array ( /* old name: Release 1 */
  130. array("20131212", "2013-12-12")
  131. )
  132. );
  133. ?>