#19266 closed New feature (fixed)
Add documentation target for texinfo format
Reported by: | Matthias Meulien | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.4 |
Severity: | Normal | Keywords: | documentation texinfo |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Sphinx has a builder for texinfo format. It builds a correct version of the documentation in texinfo format after editing docs/conf.py in the following way. It would be usefull to have a targets in docs/Makefile and docs/make.bat that build that documentation.
diff --git a/docs/conf.py b/docs/conf.py
index ced3fef..f4c13cf 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -286,3 +286,9 @@ epub_copyright = '2010, Django Software Foundation'
# Allow duplicate toc entries.
#epub_tocdup = True
+
+# -- Options for Texinfo output ------------------------------------------------
+
+# List of tuples (startdocname, targetname, title, author, dir_entry,
+# description, category, toctree_only)
+texinfo_documents=[(master_doc, "django", "", "", "Django", "Documentation of the Django framework", "Web development", False)]
In a79d920a56e7200b6259e60f7811162c07c7651d: