summaryrefslogtreecommitdiff
path: root/docs/source/generate_configs.py
blob: 7c9c42b2a7f7953e75b5ebc1f28e59657f4669c8 (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
import sys
import os
HERE = os.path.dirname(__file__)
sys.path.append(os.path.join(HERE, '..', '..', '..'))
from alot.commands import COMMANDS
from configobj import ConfigObj
import re

def rewrite_scalarcomments(config, path, sort=False):
    file = open(path, 'w')
    if sort:
        config.scalars.sort()
    for entry in config.scalars:
        description = '\n.. describe:: %s\n\n' % entry
        comments = [config.inline_comments[entry]] + config.comments[entry]
        for c in comments:
            if c:
                description += ' '*4 + re.sub('^\s*#\s*', '', c) + '\n'
        file.write(description)
    file.close()

if __name__ == "__main__":
    specpath = os.path.join(HERE, '..','..', 'alot', 'defaults', 'alot.rc.spec')
    config = ConfigObj(specpath)

    alotrc_table_file = os.path.join(HERE, 'configuration', 'alotrc_table.rst')
    rewrite_scalarcomments(config, alotrc_table_file, sort=True)

    rewrite_scalarcomments(config['accounts']['__many__'],
                           os.path.join(HERE, 'configuration',
                                        'accounts_table.rst'))