[Python-checkins] r65269 - doctools/branches/0.4.x/sphinx/latexwriter.py
georg.brandl
python-checkins at python.org
Tue Jul 29 10:21:59 CEST 2008
Author: georg.brandl
Date: Tue Jul 29 10:21:59 2008
New Revision: 65269
Log:
Make the writer's settings public.
Modified:
doctools/branches/0.4.x/sphinx/latexwriter.py
Modified: doctools/branches/0.4.x/sphinx/latexwriter.py
==============================================================================
--- doctools/branches/0.4.x/sphinx/latexwriter.py (original)
+++ doctools/branches/0.4.x/sphinx/latexwriter.py Tue Jul 29 10:21:59 2008
@@ -55,7 +55,11 @@
supported = ('sphinxlatex',)
- settings_spec = ('No options here.', '', ())
+ settings_spec = ('LaTeX writer options', '', (
+ ('Document name', ['--docname'], {'default': ''}),
+ ('Document class', ['--docclass'], {'default': 'manual'}),
+ ('Author', ['--author'], {'default': ''}),
+ ))
settings_defaults = {}
output = None
More information about the Python-checkins
mailing list