From a57f17b2765a7475eeaac27c8b72a539148c5d05 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 23 Jan 2018 09:35:41 +0100 Subject: [PATCH] wiki: include per-app link to all related activity on gitlab.com --- fdroidserver/update.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 9b97fdb0..0e46f7ac 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -140,7 +140,7 @@ def update_wiki(apps, sortedids, apks): requiresroot = 'Yes' else: requiresroot = 'No' - wikidata += '{{App|id=%s|name=%s|added=%s|lastupdated=%s|source=%s|tracker=%s|web=%s|changelog=%s|donate=%s|flattr=%s|liberapay=%s|bitcoin=%s|litecoin=%s|license=%s|root=%s|author=%s|email=%s}}\n' % ( + wikidata += '{{App|id=%s|name=%s|added=%s|lastupdated=%s|source=%s|tracker=%s|web=%s|changelog=%s|donate=%s|flattr=%s|liberapay=%s|bitcoin=%s|litecoin=%s|license=%s|root=%s|author=%s|email=%s|activity=%s}}\n' % ( appid, app.Name, app.added.strftime('%Y-%m-%d') if app.added else '', @@ -157,7 +157,9 @@ def update_wiki(apps, sortedids, apks): app.License, requiresroot, app.AuthorName, - app.AuthorEmail) + app.AuthorEmail, + 'https://gitlab.com/search?group_id=28397&scope=issues&search=' + appid, + ) if app.Provides: wikidata += "This app provides: %s" % ', '.join(app.Summary.split(','))