index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2018-06-04 21:17:32 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-06-04 21:17:32 +0200 |
commit | 742de15a7e761cb4e9f7544435188552dcf44ad4 (patch) | |
tree | 2cfefb7d326246edf36e3d9e6e08a72703d6a58f | |
parent | e9f68c699a6f94169c1191462dc649548d5c89f6 (diff) |
-rw-r--r-- | buildmaster/build-list.php | 2 | ||||
-rw-r--r-- | buildmaster/todos.php | 2 | ||||
-rw-r--r-- | packages/pkginfo.php | 4 |
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"; diff --git a/packages/pkginfo.php b/packages/pkginfo.php index 065d201..cfe3d0f 100644 --- a/packages/pkginfo.php +++ b/packages/pkginfo.php @@ -274,14 +274,14 @@ } if ($content["uses_modification"]) { print " <li>\n"; - print " <a href=\"https://github.com/archlinux32/packages/tree/master/"; + print " <a href=\"https://git.archlinux32.org/archlinux32/packages/src/branch/master/"; print $content["repo"]; print "/"; print $content["pkgbase"]; print "\" title=\"View archlinux32's source files for "; print $content["pkgname"]; print "\">Archlinux32's Source Files</a> /\n"; - print " <a href=\"https://github.com/archlinux32/packages/commits/master/"; + print " <a href=\"https://git.archlinux32.org/archlinux32/packages/commits/branch/master/"; print $content["repo"]; print "/"; print $content["pkgbase"]; |