Merge "Add signature links for independent deliverables"
This commit is contained in:
commit
802661cdb3
@ -321,27 +321,18 @@ class DeliverableDirectiveBase(rst.Directive):
|
|||||||
_add('')
|
_add('')
|
||||||
_add('Release Notes: %s' % notes_link)
|
_add('Release Notes: %s' % notes_link)
|
||||||
_add('')
|
_add('')
|
||||||
# We have signatures for artifacts only after newton
|
|
||||||
if series and series[0] >= 'o':
|
|
||||||
headers = ['Version', 'Signature', 'Repo', 'Git Commit']
|
headers = ['Version', 'Signature', 'Repo', 'Git Commit']
|
||||||
data = ((links.artifact_link(r.version, p, deliv),
|
data = ((links.artifact_link(r.version, p, deliv),
|
||||||
links.artifact_signature_link(r.version,
|
links.artifact_signature_link(r.version,
|
||||||
'pgp', p,
|
'pgp', p,
|
||||||
deliv),
|
deliv)
|
||||||
|
if (series and series[0] >= 'o') or deliv.is_independent
|
||||||
|
else '',
|
||||||
p.repo, p.hash)
|
p.repo, p.hash)
|
||||||
for r in reversed(deliv.releases)
|
for r in reversed(deliv.releases)
|
||||||
for p in r.projects
|
for p in r.projects
|
||||||
if not (r.is_eol or r.is_em))
|
if not (r.is_eol or r.is_em))
|
||||||
columns = [10, 10, 40, 50]
|
columns = [10, 10, 40, 50]
|
||||||
else:
|
|
||||||
headers = ['Version', 'Repo', 'Git Commit']
|
|
||||||
data = ((links.artifact_link(r.version, p,
|
|
||||||
deliv),
|
|
||||||
p.repo, p.hash)
|
|
||||||
for r in reversed(deliv.releases)
|
|
||||||
for p in r.projects
|
|
||||||
if not (r.is_eol or r.is_em))
|
|
||||||
columns = [10, 40, 50]
|
|
||||||
_list_table(
|
_list_table(
|
||||||
_add,
|
_add,
|
||||||
headers=headers,
|
headers=headers,
|
||||||
|
Loading…
Reference in New Issue
Block a user