pep8, include the misp-galaxy tag in the output

pull/309/head
Christophe Vandeplas 2018-12-02 11:35:49 +01:00
parent 3e5abbf998
commit bd1f22ad7d
1 changed files with 14 additions and 12 deletions

View File

@ -76,6 +76,7 @@ def header():
doc += "= MISP galaxy\n"
return doc
def asciidoc(content=False, t='title', title='', typename=''):
adoc = []
adoc += "\n"
@ -87,7 +88,7 @@ def asciidoc(content=False, t='title',title='', typename=''):
elif t == 'author':
output = '\nauthors:: {}\n'.format(' - '.join(content))
elif t == 'value':
output = '=== ' + content
output = '=== {}'.format(content)
elif t == 'description':
output = '\n{}\n'.format(content)
elif t == 'meta-synonyms':
@ -127,9 +128,10 @@ for cluster in clusters:
if 'authors' in c:
adoc += asciidoc(content=c['authors'], t='author', title=title)
for v in c['values']:
adoc += asciidoc(content=v['value'], t='value', title=title)
adoc += asciidoc(content=v['value'], t='value')
if 'description' in v:
adoc += asciidoc(content=v['description'], t='description')
adoc += asciidoc(content='The tag is: _misp-galaxy:{}="{}"_'.format(c['type'], v['value']), t='description')
if 'meta' in v:
adoc += asciidoc(content=v['meta'], t='meta-synonyms', title=v['value'])
if 'related' in v: