summaryrefslogtreecommitdiffstats
path: root/packages/templatetags
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-04-03 14:55:27 -0500
committerDan McGee <dan@archlinux.org>2012-04-03 14:55:27 -0500
commitee2a587738f3e571f4e0e61153061ba6853475eb (patch)
tree2a51800c7a08a35ee1c3ce71f62f8a5d473ab95a /packages/templatetags
parent51526a44ef0ab586c6b2204aa0989a669dcf99a2 (diff)
downloadarchweb-ee2a587738f3e571f4e0e61153061ba6853475eb.tar.gz
archweb-ee2a587738f3e571f4e0e61153061ba6853475eb.zip
Use https:// links for all internal sites
We already use HTTPS exclusively for wiki, bugs, forums, etc. and we have it available for our other sites, so link only to the https:// protocol locations when pointing users at other sites. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'packages/templatetags')
-rw-r--r--packages/templatetags/package_extras.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/templatetags/package_extras.py b/packages/templatetags/package_extras.py
index 975f59f1..9daecd96 100644
--- a/packages/templatetags/package_extras.py
+++ b/packages/templatetags/package_extras.py
@@ -93,7 +93,7 @@ def packager_link(user):
def scm_link(package, operation):
parts = (package.repo.svn_root, operation, package.pkgbase)
linkbase = (
- "http://projects.archlinux.org/svntogit/%s.git/%s/trunk?"
+ "https://projects.archlinux.org/svntogit/%s.git/%s/trunk?"
"h=packages/%s")
return linkbase % tuple(urlquote(part) for part in parts)