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
65 if descriptions and line.startswith('Maintainers'):
71 # between the Maintainers heading and the first subsystem name.
72 if maintainers and not subsystems:
83 # maintainers.rst is in a subdirectory, so include "../".
155 if prev.startswith('Maintainers'):
156 maintainers = True
168 #print(output, file=open("/tmp/MAINTAINERS.rst", "w"))
174 """Include the MAINTAINERS file as part of this reST file."""
185 # Append "MAINTAINERS"
186 path = os.path.join(path, "MAINTAINERS")