Lines Matching full:maintainers
7 maintainers-include
10 Implementation of the ``maintainers-include`` reST-directive.
15 The ``maintainers-include`` reST-directive performs extensive parsing
16 specific to the Linux kernel's standard "MAINTAINERS" file, in an
32 app.add_directive("maintainers-include", MaintainersInclude)
40 u"""MaintainersInclude (``maintainers-include``) directive"""
44 """Parse all the MAINTAINERS lines into ReST for human-readability"""
52 maintainers = False
67 if descriptions and line.startswith('Maintainers'):
73 # between the Maintainers heading and the first subsystem name.
74 if maintainers and not subsystems:
85 # maintainers.rst is in a subdirectory, so include "../".
157 if prev.startswith('Maintainers'):
158 maintainers = True
170 #print(output, file=open("/tmp/MAINTAINERS.rst", "w"))
176 """Include the MAINTAINERS file as part of this reST file."""
187 # Append "MAINTAINERS"
188 path = os.path.join(path, "MAINTAINERS")