diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-22 17:35:48 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-25 16:15:23 +0100 |
commit | 246a7fa1c7e692894f33c3d513779046759213ae (patch) | |
tree | bca22a0af0ff95c44c20798deca5692cbf1d8090 /exts/policyident.py | |
parent | ebuild-format: Require KEYWORDS to be on one line (diff) | |
download | policy-guide-246a7fa1c7e692894f33c3d513779046759213ae.tar.gz policy-guide-246a7fa1c7e692894f33c3d513779046759213ae.tar.bz2 policy-guide-246a7fa1c7e692894f33c3d513779046759213ae.zip |
Introduce PGnnnn identifiers for policies
Introduce stable numeric identifiers for policies, and create permalinks
from them.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'exts/policyident.py')
-rw-r--r-- | exts/policyident.py | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/exts/policyident.py b/exts/policyident.py new file mode 100644 index 0000000..6093c8c --- /dev/null +++ b/exts/policyident.py @@ -0,0 +1,48 @@ +# Handle :PG: policy identifiers for Policy Guide +# (c) 2020 Michał Górny +# 2-clause BSD license + +from docutils import nodes + +from sphinx.util import logging + + +logger = logging.getLogger(__name__) + + +def find_pg_id(section): + # first child should be title + title = section.children[0] + assert isinstance(title, nodes.title) + # second child should be field list + cl = section.children[1] + if not isinstance(cl, nodes.field_list): + return None + + for f in cl.traverse(nodes.field): + fn = next(iter(f.traverse(nodes.field_name))) + fv = next(iter(f.traverse(nodes.field_body))) + if fn.astext().upper() == 'PG': + if fn.astext() != 'PG': + raise RuntimeError('PG field must be uppercase') + iv = '{:04d}'.format(int(fv.astext(), 10)) + if fv.astext() != iv: + raise RuntimeError('PG value must be 4 digits, zero-padded ({})' + .format(iv)) + return iv + + logger.warning('%s: no PG identifier found', title.astext()) + + +def on_doctree_read(app, doctree): + for node in doctree.traverse(nodes.section): + pg_id = find_pg_id(node) + if pg_id is not None: + node['ids'].insert(0, 'pg' + pg_id) + + +def setup(app): + app.connect('doctree-read', on_doctree_read) + return { + 'version': '0', + } |