[Python-checkins] r62439 - in doctools/trunk: CHANGES sphinx/quickstart.py

georg.brandl python-checkins at python.org
Mon Apr 21 18:14:55 CEST 2008


Author: georg.brandl
Date: Mon Apr 21 18:14:16 2008
New Revision: 62439

Log:
Create a sensible default latex_documents setting.


Modified:
   doctools/trunk/CHANGES
   doctools/trunk/sphinx/quickstart.py

Modified: doctools/trunk/CHANGES
==============================================================================
--- doctools/trunk/CHANGES	(original)
+++ doctools/trunk/CHANGES	Mon Apr 21 18:14:16 2008
@@ -78,6 +78,8 @@
 
 * sphinx.environment: Don't swallow TOC entries when resolving subtrees.
 
+* sphinx.quickstart: Create a sensible default latex_documents setting.
+
 * sphinx.builder, sphinx.environment: Gracefully handle some user error
   cases.
 

Modified: doctools/trunk/sphinx/quickstart.py
==============================================================================
--- doctools/trunk/sphinx/quickstart.py	(original)
+++ doctools/trunk/sphinx/quickstart.py	Mon Apr 21 18:14:16 2008
@@ -141,7 +141,9 @@
 
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, document class [howto/manual]).
-#latex_documents = []
+latex_documents = [
+  ('%(master)s', '%(project)s.tex', '%(project)s Documentation', '%(author)s', 'manual'),
+]
 
 # Additional stuff for the LaTeX preamble.
 #latex_preamble = ''


More information about the Python-checkins mailing list