mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 18:40:12 +01:00
import: add notabug.org
This commit is contained in:
parent
3c9eeff7f3
commit
39f7429c9b
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user