chiark / gitweb /
Revert "wiki: include per-app link to all related activity on gitlab.com"
authorHans-Christoph Steiner <hans@eds.org>
Fri, 9 Feb 2018 17:17:35 +0000 (18:17 +0100)
committerHans-Christoph Steiner <hans@eds.org>
Mon, 12 Feb 2018 11:15:56 +0000 (12:15 +0100)
This reverts commit a57f17b2765a7475eeaac27c8b72a539148c5d05.

Turns out this was totally useless, this can be fully handled in
https://f-droid.org/wiki/page/Template:App since it already has the
Application ID there.

fdroidserver/update.py

index 0e46f7ac623c6e05b644a28c7d137979e583bcf3..9b97fdb04c59ee5706d89970b9e3beff7c2e29e0 100644 (file)
@@ -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|activity=%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}}\n' % (
             appid,
             app.Name,
             app.added.strftime('%Y-%m-%d') if app.added else '',
@@ -157,9 +157,7 @@ def update_wiki(apps, sortedids, apks):
             app.License,
             requiresroot,
             app.AuthorName,
-            app.AuthorEmail,
-            'https://gitlab.com/search?group_id=28397&scope=issues&search=' + appid,
-        )
+            app.AuthorEmail)
 
         if app.Provides:
             wikidata += "This app provides: %s" % ', '.join(app.Summary.split(','))