summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-01-28 22:13:53 +0100
committerDan McGee <dan@archlinux.org>2013-01-28 22:13:53 +0100
commitbc539b6ed174fed1545aabaa4ceb7a7f925cbbed (patch)
tree075c71853c0d236cf7a6060e87fb15b38157929f /releng
parent7d4a8b9adf353d7adce4c3c22101e774092eb4de (diff)
downloadarchweb-bc539b6ed174fed1545aabaa4ceb7a7f925cbbed.tar.gz
archweb-bc539b6ed174fed1545aabaa4ceb7a7f925cbbed.tar.xz
Extract torrent trackers into a settings variable
This allows them to be overridden and changed in a central location, like we do with the SVN URL, PXE boot URL, etc. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'releng')
-rw-r--r--releng/models.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/releng/models.py b/releng/models.py
index dd034e7..b95f7d5 100644
--- a/releng/models.py
+++ b/releng/models.py
@@ -5,6 +5,7 @@ import hashlib
import markdown
from pytz import utc
+from django.conf import settings
from django.core.urlresolvers import reverse
from django.db import models
from django.db.models.signals import pre_save
@@ -146,9 +147,9 @@ class Release(models.Model):
def magnet_uri(self):
query = [
('dn', "archlinux-%s-dual.iso" % self.version),
- ('tr', "udp://tracker.archlinux.org:6969"),
- ('tr', "http://tracker.archlinux.org:6969/announce"),
]
+ if settings.TORRENT_TRACKERS:
+ query.extend(('tr', uri) for uri in settings.TORRENT_TRACKERS)
if self.torrent_infohash:
query.insert(0, ('xt', "urn:btih:%s" % self.torrent_infohash))
return "magnet:?%s" % '&'.join(['%s=%s' % (k, v) for k, v in query])