This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 108
/
generate-docs.py
executable file
·73 lines (61 loc) · 2.1 KB
/
generate-docs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python3
import re
from subprocess import check_output
import click
from vcd_cli.vcd import vcd
command_list = []
def generate_index_page(commands):
last_level = 0
with open('docs/commands.md', 'w') as out:
out.write('<div class="clt">\n')
for cmd_str in commands:
page_name = cmd_str.replace(' ', '_')
tokens = cmd_str.split()
if len(tokens) > last_level:
out.write('<ul><li>\n')
elif len(tokens) < last_level:
out.write('</li>\n')
for n in range(last_level - len(tokens)):
out.write('</ul></li>\n')
out.write('<li>\n')
else:
out.write('</li><li>\n')
out.write('<a href="%s">%s</a>' % (page_name, tokens[-1]))
last_level = len(tokens)
for n in range(last_level):
out.write('</li></ul>\n')
out.write('</div>\n')
check_output(['git', 'add', 'docs/commands.md'])
def generate_page(cmd_str):
page_name = cmd_str.replace(' ', '_')
file_name = 'docs/%s.md' % page_name
with open(file_name, 'w') as out:
print('processing %s' % file_name)
tokens = (cmd_str + ' -h').split()
output = check_output(tokens)
out.write('```\n')
out.write(re.sub(r'(\r\n|\r|\n)', '\n', output.decode()))
out.write('\n```\n')
output = check_output(['git', 'add', file_name])
def process_command(cmd, ancestors=[]):
cmd_str = ''
for a in ancestors:
cmd_str += a.name + ' '
cmd_str += cmd.name
command_list.append(cmd_str)
if type(cmd) == click.core.Group:
for k in sorted(cmd.commands.keys()):
a = ancestors + [cmd]
process_command(cmd.commands[k], ancestors=a)
try:
output = check_output(['git', 'rm', '-rf', 'docs/vcd*.md'])
except Exception as e:
print(e)
try:
output = check_output(['git', 'rm', '-rf', 'docs/commands.md'])
except Exception as e:
print(e)
process_command(vcd)
generate_index_page(command_list)
for cmd_str in command_list:
generate_page(cmd_str)