Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/pkginfo.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/packages/pkginfo.php b/packages/pkginfo.php
index a66fb68..a42b949 100644
--- a/packages/pkginfo.php
+++ b/packages/pkginfo.php
@@ -413,17 +413,20 @@ require_once BASE . "/lib/style.php";
<?php
if ($content["uses_upstream"]) {
print " <li>\n";
- print " <a href=\"https://projects.archlinux.org/svntogit/";
+ print " <a href=\"https://github.com/archlinux/svntogit-";
print $content["git_repo"];
- print ".git/tree/trunk?h=packages/";
+ print "/tree/packages/";
print $content["pkgbase"];
+ print "/trunk";
print "\" title=\"View upstream's source files for ";
print $content["pkgname"];
+
print "\">Upstream's Source Files</a> /\n";
- print " <a href=\"https://projects.archlinux.org/svntogit/";
+ print " <a href=\"https://github.com/archlinux/svntogit-";
print $content["git_repo"];
- print ".git/log/trunk?h=packages/";
+ print "/commits/packages/";
print $content["pkgbase"];
+ print "/trunk";
print "\" title=\"View upstream's changes for ";
print $content["pkgname"];
print "\">Upstream's Changes</a>\n";