]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Add latex_documents configuration so readthedocs can build pdfs of the docs.
authorBen Darnell <ben@bendarnell.com>
Sat, 11 Aug 2012 16:07:33 +0000 (09:07 -0700)
committerBen Darnell <ben@bendarnell.com>
Sat, 11 Aug 2012 16:07:33 +0000 (09:07 -0700)
website/sphinx/conf.py

index 84f833e64fd53a6890aa7d5ec423c82e9291d4c3..d429c724153f34ddcc983a35139dc2f9181736e5 100644 (file)
@@ -48,7 +48,7 @@ coverage_ignore_functions = [
     "doctests",
     "main",
 ]
-    
+
 html_static_path = [os.path.abspath("../static")]
 html_style = "sphinx.css"
 highlight_language = "none"
@@ -74,3 +74,7 @@ html_theme_options = dict(
     headfont="Calibri, sans-serif",
     stickysidebar=True,
     )
+
+latex_documents = [
+    ('index', 'tornado', 'Tornado Documentation', 'Facebook', 'manual', False),
+    ]