Changelog and style fixes for PR#75.

This commit is contained in:
Georg Brandl
2012-10-28 17:57:40 +01:00
parent 5d7b75fbb0
commit 883887b57b
3 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
Release 1.2 (in development)
============================
* PR#75: Added ``--follow-links`` option to sphinx-apidoc.
* PR#45: The linkcheck builder now checks ``#anchor``\ s for existence.
* PR#28: Added Hungarian translation.

View File

@@ -236,6 +236,8 @@ The :program:`sphinx-apidoc` script has several options:
<http://pypi.python.org/pypi/collective.recipe.omelette/>`_.
By default, symbolic links are skipped.
.. versionadded:: 1.2
.. option:: -T, --no-toc
This prevents the generation of a table-of-contents file ``modules.rst``.

View File

@@ -249,8 +249,8 @@ Note: By default this script will not overwrite already created files.""")
help='Overwrite all files')
parser.add_option('-l', '--follow-links', action='store_true',
dest='followlinks', default=False,
help='Follow symbolic links. Powerful when combined ' \
'with collective.recipe.omelette.')
help='Follow symbolic links. Powerful when combined '
'with collective.recipe.omelette.')
parser.add_option('-n', '--dry-run', action='store_true', dest='dryrun',
help='Run the script without creating files')
parser.add_option('-T', '--no-toc', action='store_true', dest='notoc',