Forgot ifconfig.

This commit is contained in:
Georg Brandl
2009-02-20 10:45:24 +01:00
parent 5b1415d16a
commit 98311e1779
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -600,6 +600,8 @@ Please indicate if you want to use one of the following Sphinx extensions:'''
if d['ext_pngmath'] and d['ext_jsmath']:
print '''Note: pngmath and jsmath cannot be enabled at the same time.
pngmath has been deselected.'''
do_prompt(d, 'ext_ifconfig', 'ifconfig: conditional inclusion of '
'content based on config values (y/N)', 'n', boolean)
print '''
A Makefile and a Windows command file can be generated for you so that you
only have to run e.g. `make html' instead of invoking sphinx-build
@@ -614,7 +616,7 @@ directly.'''
d['extensions'] = ', '.join(
repr('sphinx.ext.' + name)
for name in ('autodoc', 'doctest', 'intersphinx', 'todo', 'coverage',
'pngmath', 'jsmath')
'pngmath', 'jsmath', 'ifconfig')
if d['ext_' + name].upper() in ('Y', 'YES'))
d['copyright'] = time.strftime('%Y') + ', ' + d['author']
d['author_texescaped'] = unicode(d['author']).\
+1
View File
@@ -125,6 +125,7 @@ def test_quickstart_all_answers(tempdir):
'coverage': 'no',
'pngmath': 'N',
'jsmath': 'no',
'ifconfig': 'no',
'Create Makefile': 'no',
'Create Windows command file': 'no',
}