diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-12-14 21:06:30 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-14 16:36:26 -0600 |
commit | 97e8489ecbfc85c3759afdbe59605f3c0ffb4ce5 (patch) | |
tree | dd103cad3f3e70abc007c319a231ff08ee3a6938 /main | |
parent | f63a1a9518ee3f1c3b980ba973392422f8ce82ca (diff) |
Get rid of all references to repos.archlinux.org
The packages/community repositories can now be viewed via cgit.
Point links to cgit instead of websvn, as websvn is buggy and
nobody wants to maintain it. This allows us to get rid of websvn
entirely.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main')
-rw-r--r-- | main/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py index b5c395a4..8858b17b 100644 --- a/main/models.py +++ b/main/models.py @@ -263,7 +263,7 @@ class Package(models.Model): repo__testing=self.repo.testing, pkgbase=self.pkgbase).exclude(id=self.id) def get_svn_link(self, svnpath): - linkbase = "http://repos.archlinux.org/wsvn/%s/%s/%s/" + linkbase = "http://projects.archlinux.org/svntogit/%s.git/tree/%s/%s/" return linkbase % (self.repo.svn_root, self.pkgbase, svnpath) def get_arch_svn_link(self): |