blob: 7ea13800fa9a914b99593d6029381b86fd641fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
$lbHomepage = "http://libreboot.org/";
$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";
$lbFirmwareBackupGitRepoAddress = array(
"https://gitorious.org/libreboot-backup/libreboot.git",
"git://git.pehjota.net/libreboot-backup/libreboot.git"
);
$lbWebsiteBackupGitRepoAddress = array(
"https://gitorious.org/libreboot-backup/libreboot-website.git",
"git://git.pehjota.net/libreboot-backup/libreboot.org.git"
);
$lbBugTrackerAddress = "http://projects.mtjm.eu/projects/libreboot";
$userMailingListAddress = "https://lists.nongnu.org/mailman/listinfo/libreboot";
$devMailingListAddress = "https://lists.nongnu.org/mailman/listinfo/libreboot-dev";
$ircChannelName = "#libreboot (FreeNode IRC)";
$ircChannelAddress = "https://webchat.freenode.net/?channels=libreboot";
?>
|