mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-03-18 06:58:26 -04:00
import: add notabug.org
This commit is contained in:
@@ -105,6 +105,15 @@ def get_metadata_from_url(app, url):
|
||||
app.WebSite = url
|
||||
app.SourceCode = url + '/tree/HEAD'
|
||||
app.IssueTracker = url + '/issues'
|
||||
elif url.startswith('https://notabug.org/'):
|
||||
projecttype = 'notabug'
|
||||
if url.endswith('.git'):
|
||||
url = url[:-4]
|
||||
repo = url + '.git'
|
||||
repotype = 'git'
|
||||
app.SourceCode = url
|
||||
app.IssueTracker = url + '/issues'
|
||||
app.WebSite = ""
|
||||
elif url.startswith('https://bitbucket.org/'):
|
||||
if url.endswith('/'):
|
||||
url = url[:-1]
|
||||
|
||||
Reference in New Issue
Block a user