mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 11:00:10 +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.WebSite = url
|
||||||
app.SourceCode = url + '/tree/HEAD'
|
app.SourceCode = url + '/tree/HEAD'
|
||||||
app.IssueTracker = url + '/issues'
|
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/'):
|
elif url.startswith('https://bitbucket.org/'):
|
||||||
if url.endswith('/'):
|
if url.endswith('/'):
|
||||||
url = url[:-1]
|
url = url[:-1]
|
||||||
|
Loading…
Reference in New Issue
Block a user