##// END OF EJS Templates
Remove generation of unnecessary generated.rst file
Remove generation of unnecessary generated.rst file

File last commit:

r22483:32cc988e
r22483:32cc988e
Show More
autogen_config.py
28 lines | 939 B | text/x-python | PythonLexer
/ docs / autogen_config.py
Yaroslav Halchenko
ENH: list generated config files in generated, and rm them upon clean
r16197 #!/usr/bin/env python
Min RK
abspath fixes for autogen scripts
r21590 from os.path import join, dirname, abspath
Thomas Kluyver
Generate docs for config options.
r13459 from IPython.terminal.ipapp import TerminalIPythonApp
Thomas Kluyver
Use new traitlets API to generate config docs...
r21400 from ipykernel.kernelapp import IPKernelApp
Thomas Kluyver
Generate docs for config options.
r13459
Min RK
abspath fixes for autogen scripts
r21590 here = abspath(dirname(__file__))
options = join(here, 'source', 'config', 'options')
Thomas Kluyver
Use new traitlets API to generate config docs...
r21400 def write_doc(name, title, app, preamble=None):
Yaroslav Halchenko
ENH: list generated config files in generated, and rm them upon clean
r16197 filename = '%s.rst' % name
Min RK
abspath fixes for autogen scripts
r21590 with open(join(options, filename), 'w') as f:
Thomas Kluyver
Generate docs for config options.
r13459 f.write(title + '\n')
f.write(('=' * len(title)) + '\n')
f.write('\n')
if preamble is not None:
f.write(preamble + '\n\n')
Thomas Kluyver
Use new traitlets API to generate config docs...
r21400 f.write(app.document_config_options())
Yaroslav Halchenko
ENH: list generated config files in generated, and rm them upon clean
r16197
Thomas Kluyver
Generate docs for config options.
r13459
if __name__ == '__main__':
Yaroslav Halchenko
ENH: list generated config files in generated, and rm them upon clean
r16197
Thomas Kluyver
Use new traitlets API to generate config docs...
r21400 write_doc('terminal', 'Terminal IPython options', TerminalIPythonApp())
write_doc('kernel', 'IPython kernel options', IPKernelApp(),
preamble=("These options can be used in :file:`ipython_kernel_config.py`. "
"The kernel also respects any options in `ipython_config.py`"),
MinRK
remove references to kernel config in parent config files...
r18030 )