summaryrefslogtreecommitdiff
path: root/buildmaster
diff options
context:
space:
mode:
Diffstat (limited to 'buildmaster')
-rw-r--r--buildmaster/build-list.php2
-rw-r--r--buildmaster/todos.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/buildmaster/build-list.php b/buildmaster/build-list.php
index b4eec1b..1a545e4 100644
--- a/buildmaster/build-list.php
+++ b/buildmaster/build-list.php
@@ -74,7 +74,7 @@ $columns = array(
"mysql_query" =>
"IF(`ba_q`.`uses_modification`," .
"CONCAT(" .
- "\"<a href=\\\"https://github.com/archlinux32/packages/tree/\"," .
+ "\"<a href=\\\"https://git.archlinux32.org/archlinux32/packages/src/commit/\"," .
"`ba_q`.`mod_git_revision`," .
"\"/\"," .
"`ba_q`.`package_repository`," .
diff --git a/buildmaster/todos.php b/buildmaster/todos.php
index 427d2cc..3251778 100644
--- a/buildmaster/todos.php
+++ b/buildmaster/todos.php
@@ -76,7 +76,7 @@ if (isset($_GET["graph"])) {
while ($row = $result->fetch_assoc()) {
print "<a href=\"#TODO" . $row["id"] . "\" name=\"TODO" . $row["id"] ."\">TODO #" . $row["id"] . "</a>";
print " - ";
- print "<a href=\"https://github.com/archlinux32/builder/blob/master/" . $row["file"] . "#L" . $row["line"] . "\">" . $row["file"] . "(line " . $row["line"] . ")</a>";
+ print "<a href=\"https://git.archlinux32.org/archlinux32/builder/src/branch/master/" . $row["file"] . "#L" . $row["line"] . "\">" . $row["file"] . "(line " . $row["line"] . ")</a>";
print ":<br>\n";
print str_replace("\\n","<br>\n",$row["description"]);
print "<br>\n";