sorted command index, better colification.
This commit is contained in:
parent
918cb16921
commit
41675e5ed6
@ -43,6 +43,8 @@
|
|||||||
import subprocess
|
import subprocess
|
||||||
from glob import glob
|
from glob import glob
|
||||||
|
|
||||||
|
# -- Spack customizations -----------------------------------------------------
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# If extensions (or modules to document with autodoc) are in another directory,
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
# add these directories to sys.path here. If the directory is relative to the
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||||
@ -60,6 +62,10 @@
|
|||||||
[spack_root + '/bin/spack', '-V'],
|
[spack_root + '/bin/spack', '-V'],
|
||||||
stderr=subprocess.PIPE).communicate()[1].strip().split('.')
|
stderr=subprocess.PIPE).communicate()[1].strip().split('.')
|
||||||
|
|
||||||
|
# Set an environment variable so that colify will print output like it would to
|
||||||
|
# a terminal.
|
||||||
|
os.environ['COLIFY_SIZE'] = '25x80'
|
||||||
|
|
||||||
#
|
#
|
||||||
# Generate package list using spack command
|
# Generate package list using spack command
|
||||||
#
|
#
|
||||||
@ -81,7 +87,7 @@
|
|||||||
shutil.copy('command_index.in', 'command_index.rst')
|
shutil.copy('command_index.in', 'command_index.rst')
|
||||||
with open('command_index.rst', 'a') as index:
|
with open('command_index.rst', 'a') as index:
|
||||||
index.write('\n')
|
index.write('\n')
|
||||||
for cmd in command_names:
|
for cmd in sorted(command_names):
|
||||||
index.write(' * :ref:`%s`\n' % cmd)
|
index.write(' * :ref:`%s`\n' % cmd)
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -106,10 +112,6 @@
|
|||||||
|
|
||||||
print line,
|
print line,
|
||||||
|
|
||||||
# Set an environment variable so that colify will print output like it would to
|
|
||||||
# a terminal.
|
|
||||||
os.environ['COLIFY_SIZE'] = '25x80'
|
|
||||||
|
|
||||||
# Enable todo items
|
# Enable todo items
|
||||||
todo_include_todos = True
|
todo_include_todos = True
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user