summaryrefslogtreecommitdiff
path: root/Doc/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Revert "bpo-30487: automatically create a venv and install Sphinx when ↵Ned Deily2017-11-271-7/+5
| | | | | | running make (GH-4346)" (#4592) Fix breakage documented in bpo-32149. This reverts commit d8d6b9122134f040cd5a4f15f40f6c9e3386db4d.
* bpo-30487: automatically create a venv and install Sphinx when running make ↵Caleb Hattingh2017-11-261-5/+7
| | | | (GH-4346)
* bpo-31036: Allow sphinx and blurb to be found automatically (#3440)Ned Deily2017-09-071-6/+8
| | | | Rather than requiring the path to blurb and/or sphinx-build to be specified to the make rule, enhance the Doc/Makefile to look for each first in a virtual environment created by make venv and, if not found, look on the normal process PATH. This allows the Doc/Makefile to take advantage of an installed spinx-build or blurb and, thus, do the right thing most of the time. Also, make the directory for the venv be configurable and document the `make venv` target.
* Include additional changes to support blurbified NEWS (#3340)Ned Deily2017-09-051-1/+16
|
* bpo-31045: Language switch (#2652)Julien2017-08-071-2/+2
| | | | | | | | | | | | | | | | | | * Doc: Indicate the language * Renaming version_switcher to switchers (to add language_switcher). * Adding language switch. * Doc switchers: Enhance readability of regex parsing versions. * Doc switchers: Desambiguate the need of a replace(/\/+$/g, '') by proper naming. * Doc switchers: py3k can't reach js, it's redirected server-side by nginx. * Doc switchers: Examples matching actual regexes. * Doc switchers: Better fallback on unexisting translated version.
* bpo-30052: Always regenerate cross-references (#1339)Nick Coghlan2017-06-021-2/+7
| | | | | | | | | | | | | * bpo-30052: Always regenerate cross-references The patch for bpo-30052 changed the preferred link target for :func:`bytes` and :func`bytearray` references to be the respective type definitions rather than the corresponding builtin function entries. This patch changes the daily documentation builds to disable the output caching in Sphinx, in order to ensure that cross-reference changes like this one are reliably picked up and applied automatically after merging.
* Rename Doc/README.txt to Doc/README.rst and add formatting (#104)Roger2017-02-151-1/+1
| | | | | | | | | | | | | | | | * Reformat Doc/README.txt to Doc/README.rst * Update mention of Doc/README.rst * Update mention of README.txt to README.rst * Make line fold * rstlint ignore Doc/README.rst * conf.py ignore Doc/README.rst * Update issue tracker url in Docs/README.rst
* Doc/Makefile: set PYTHON to python3 (#124)Victor Stinner2017-02-151-1/+1
| | | | | | rstlint.py run by "make check" doesn't support Python 2. "make venv" runs "$(PYTHON) -m venv", whereas Python 2 doens't provide the venv module: it's a module of Python 3 standard library.
* Fix some sphinx warnings (#9)Ryan Gonzalez2017-02-111-1/+1
| | | | * Fix some deprecation warnings in Doc/conf.py * Fix an rst error in Misc/NEWS
* Issue #27896: Allow passing sphinx options to Doc/MakefileVictor Stinner2016-10-161-2/+2
| | | | Patch written by Julien Palard.
* merge with 3.5Georg Brandl2016-06-151-1/+8
|\
| * merge with 3.4Georg Brandl2016-06-151-1/+8
| |\
| | * Docs: add html-stable autobuild variantGeorg Brandl2016-06-151-1/+7
| | |
* | | Don't doc check the venv dirZachary Ware2016-03-241-1/+1
|/ /
* | Regenerated pydoc topic index in preparation for Python 3.5.0b2.Larry Hastings2015-05-301-2/+2
| |
* | merge 3.4Benjamin Peterson2014-12-101-1/+1
|\ \ | |/
| * fix path to patchlevel.pyBenjamin Peterson2014-12-101-1/+1
| |
| * Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵Georg Brandl2014-09-301-2/+2
| | | | | | | | nested subdirectory anymore.
* | Issue #22394: Add a 'venv' command to Doc/Makefile.Brett Cannon2014-12-051-3/+7
| | | | | | | | | | | | | | | | | | | | This will create a venv using the interpreter specified by the PYTHON variable for the Makefile that also install Sphinx. Typical usage is expected to be: cd Doc make venv PYTHON=../python make html PYTHON=venv/bin/python3
* | Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵Georg Brandl2014-09-301-2/+2
|/ | | | nested subdirectory anymore.
* Dont define an empty SPHINXOPTS, which overrides a definition from the ↵Georg Brandl2014-09-301-1/+0
| | | | environment.
* allow archives for rc releases to be built (closes #22484)Benjamin Peterson2014-09-241-2/+3
|
* Issue #15759: "make suspicious", "make linkcheck" and "make doctest" in Doc/Serhiy Storchaka2014-07-221-10/+16
| | | | now display special message when and only when there are failures.
* Issue #17386: List the 'htmlview' target in the Doc/Makefile help output.Zachary Ware2014-04-291-0/+1
|
* Doc: do not compress .epub for dist, it is already zipped.Georg Brandl2014-03-281-8/+2
|
* Remove references to make targets deleted in eef7899ea7abÉric Araujo2014-03-131-3/+2
|
* Doc: do not rely on checked-out Sphinx toolchain from svn.python.org anymoreGeorg Brandl2014-02-161-29/+2
| | | | | | | | | Nowadays it is likely that people will have Sphinx installed, and if not, they will know how to install it. This also simplifies life a lot for distribution packagers, who typically do not want the doc build process to connect to external web resources.
* Closes #20258: Sphinx toolchain: move back to Jinja2 2.3.1 with support for ↵Georg Brandl2014-01-141-1/+1
| | | | Py2.5.
* Update Sphinx toolchain.Georg Brandl2014-01-111-4/+4
|
* Doc/Makefile: also do "make suspicious" during daily autobuildGeorg Brandl2013-11-241-0/+1
|
* Add a autobuild-quick target that only rebuilds HTML.Georg Brandl2012-10-281-0/+5
|
* #8040: merge with 3.2.Ezio Melotti2012-10-271-1/+1
|\
| * #8040: enable the versionswitcher for the autobuild-dev target.Ezio Melotti2012-10-271-1/+1
| |
* | Use newer version of Pygments that handles "yield from".Georg Brandl2012-09-301-1/+1
|/
* Fix target path in message.Georg Brandl2011-07-031-1/+1
|
* Update to 1.0.7.Georg Brandl2011-01-151-1/+1
|
* #10130: Prepare for building epub-format docs.Georg Brandl2011-01-051-0/+16
|
* Switch to Sphinx 1.0.5.Georg Brandl2010-11-121-1/+1
|
* Update to Sphin 1.0.4.Georg Brandl2010-10-061-1/+1
|
* Fix the suspicious builder not to write CRLF, update suspicious file and add ↵Georg Brandl2010-10-061-5/+6
| | | | instructions to Makefile.
* Revert accidental commit, apologies for the noiseÉric Araujo2010-09-061-2/+2
|
* UpdateÉric Araujo2010-09-061-2/+2
|
* A couple of nits how to ignore errors.Georg Brandl2010-08-031-3/+3
|
* Update Sphinx to 1.0.1.Georg Brandl2010-07-271-1/+1
|
* Update to 1.0.Georg Brandl2010-07-231-1/+1
|
* Silence makeindex.Georg Brandl2010-07-111-0/+2
|
* Merged revisions 78921 via svnmerge fromGeorg Brandl2010-03-131-4/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78921 | georg.brandl | 2010-03-13 14:39:46 +0100 (Sa, 13 Mär 2010) | 1 line Change/fix handling of docs download location: for daily builds, put them right next to the HTML. ........
* Merged revisions 78908 via svnmerge fromGeorg Brandl2010-03-131-10/+31
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78908 | georg.brandl | 2010-03-13 11:12:39 +0100 (Sa, 13 Mär 2010) | 1 line Add Makefile targets for automatic doc build. Add script that will be used for daily build. ........
* Merged revisions 78910 via svnmerge fromGeorg Brandl2010-03-131-4/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78910 | georg.brandl | 2010-03-13 11:54:12 +0100 (Sa, 13 Mär 2010) | 1 line Bump externals versions for doc build. ........
* Merged revisions 78416,78430 via svnmerge fromR. David Murray2010-03-081-0/+4
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78416 | dirkjan.ochtman | 2010-02-23 23:12:11 -0500 (Tue, 23 Feb 2010) | 1 line Issue #8004: add a serve target to the Doc Makefile. ........ r78430 | dirkjan.ochtman | 2010-02-24 12:06:31 -0500 (Wed, 24 Feb 2010) | 1 line Add some notes about Tools/scripts/serve.py. ........