man: add CONSTANTS section to systemd.directives(7)

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-06-26 19:48:19 -04:00
parent 74d005783e
commit 785a51eb68
1 changed files with 18 additions and 0 deletions

View File

@ -138,6 +138,14 @@ TEMPLATE = '''\
<variablelist id='options' />
</refsect1>
<refsect1>
<title>Constants</title>
<para>Various constant used and/or defined by systemd.</para>
<variablelist id='constants' />
</refsect1>
<refsect1>
<title>Miscellaneous options and directives</title>
@ -222,6 +230,16 @@ def _extract_directives(directive_groups, formatting, page):
storfile[text].append((pagename, section))
formatting[text] = name
storfile = directive_groups['constants']
for name in t.iterfind('.//constant'):
if name.attrib.get('noindex'):
continue
name.tail = ''
if name.text.startswith('('): # a cast, strip it
name.text = name.text.partition(' ')[2]
storfile[name.text].append((pagename, section))
formatting[name.text] = name
def _make_section(template, name, directives, formatting):
varlist = template.find(".//*[@id='{}']".format(name))
for varname, manpages in sorted(directives.items()):