summaryrefslogtreecommitdiff
path: root/docgen.py
blob: 5b970761a2bf9eccda9a51938e2c167572ab17a3 (plain)
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
from __future__ import unicode_literals
import os
import sys
import datetime
import codecs

# heeeheee
env = {"__name__":"__notmain__"}
exec(open("caja-dropbox").read(), env)
commands = env["commands"]

selfpath = os.path.abspath(sys.argv[0])
top_srcdir = os.path.dirname(selfpath)
with codecs.open(os.path.join(top_srcdir, "AUTHORS"), "r", "utf-8") as afile:
    authors = '| ' + afile.read().replace('\n', '\n| ')

with codecs.open(sys.argv[2], "r", encoding="utf-8") as infile:
    instr = infile.read()

formatted_commands = ""
for cmd in commands:
    split = commands[cmd].__doc__.split('\n', 2)
    formatted_commands += split[1].replace(cmd, "`%s`" % cmd).replace("dropbox", "``dropbox``")
    formatted_commands += split[2].replace('\n', '\n  | ')
    formatted_commands += '\n\n'

replace = {'@AUTHORS@': authors,
           '@DATE@': datetime.date.today().isoformat(),
           '@PACKAGE_VERSION@': sys.argv[1],
           '@SYNOPSIS@':  '| '+'\n| '.join(commands[cmd].__doc__.split('\n', 2)[1].replace(cmd, "`%s`" % cmd).replace("dropbox", "``dropbox``") for cmd in commands),
           '@COMMANDS@': formatted_commands}

for r in replace.keys():
    instr = instr.replace(r, replace[r])

with codecs.open(sys.argv[3], "w", encoding="utf-8") as outfile:
    outfile.write(instr)