summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-04-14 02:17:54 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-04-14 02:17:54 -0400
commit65e3ef63f7475a217da5205a788f52f3888ebea7 (patch)
treefb4a0428bf476bcc6d62824f000ec4f375de8b2c /packages
parent05a44e86fbb656e5a4f6228c28b61df740549b34 (diff)
Replace usage of parabolagnulinux.org with parabola.nu, also
replace repo.parabola.nu/isos/ with /iso/, in settings.py
Diffstat (limited to 'packages')
-rw-r--r--packages/templatetags/jinja2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/templatetags/jinja2.py b/packages/templatetags/jinja2.py
index c9d602a6..86bbd03e 100644
--- a/packages/templatetags/jinja2.py
+++ b/packages/templatetags/jinja2.py
@@ -33,13 +33,13 @@ def pgp_key_link(key_id, link_text=None):
def scm_link(package, operation):
parts = ("abslibre", operation, package.repo.name.lower(), package.pkgbase)
linkbase = (
- "https://projects.parabolagnulinux.org/%s.git/%s/%s/%s")
+ "https://projects.parabola.nu/%s.git/%s/%s/%s")
return linkbase % tuple(urlquote(part.encode('utf-8')) for part in parts)
@library.global_function
def wiki_link(package):
- url = "https://wiki.parabolagnulinux.org/index.php"
+ url = "https://wiki.parabola.nu/index.php"
data = {
'title': "Special:Search",
'search': package.pkgname,