summaryrefslogtreecommitdiffstats
path: root/Doc/tools
Commit message (Collapse)AuthorAgeFilesLines
* bpo-31146: Don't fallback switcher to english on not-yet pusblished ↵Miss Islington (bot)2018-11-211-0/+6
| | | | | | | languages. (GH-10558) (cherry picked from commit 6b73bb523a176123a819e4ebac3727d31d861515) Co-authored-by: Julien Palard <julien@palard.fr>
* [3.6] bpo-32613: Update window FAQ (GH-5552). (GH-10545)Julien Palard2018-11-141-1/+1
| | | | | | | | | (cherry picked from commit 64313478bcbd0a708c3ce5d4d14f977da56e4be9) Co-authored-by: Julien Palard <julien@palard.fr> https://bugs.python.org/issue32613
* [3.6] Doc: Make all versions sidebars the same for consistency. (GH-10288) ↵Miss Islington (bot)2018-11-091-2/+3
| | | | | | | | (GH-10404) (cherry picked from commit 556d50d03dd1d457c01ab552c8bc81f3431a0746) Co-authored-by: Julien Palard <julien@palard.fr>
* bpo-35075: Fix broken url in the pprint documentation (GH-10201)Miss Islington (bot)2018-11-011-1/+9
| | | | | | https://bugs.python.org/issue35075 (cherry picked from commit bf46a09dec372b85846216bd692d648dac08ac36) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
* bpo-34967: Sphinx is deprecating add_description_unit, use add_object_type ↵Miss Islington (bot)2018-10-161-5/+3
| | | | | | | (GH-9827) (cherry picked from commit e385d0661ecf8bc9ba95c4395d9a11262c2cbfec) Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
* bpo-32174: Let .chm document display non-ASCII characters properly (GH-9758)Miss Islington (bot)2018-10-081-0/+39
| | | | | | | | Let .chm document display non-ASCII characters properly Escape the `body` part of .chm source file to 7-bit ASCII, to fix visual effect on some MBCS Windows systems. (cherry picked from commit 6261ae9b01fb8429b779169f8de37ff567c144e8) Co-authored-by: animalize <animalize@users.noreply.github.com>
* 3.6.6 finalv3.6.6Ned Deily2018-06-262-3/+3
|
* bpo-33378: Add Korean to the language switcher. (GH-6627)Miss Islington (bot)2018-05-011-0/+1
| | | | | (cherry picked from commit 577948329976985ea9bef23d9a6c3dd7108211bf) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
* fix pydoc-topics to work with Sphinx 1.7 (GH-6475)Miss Islington (bot)2018-04-171-4/+8
| | | | | | In fact, we now require a newer Sphinx version because APIs have moved around. (cherry picked from commit acfb087f9f5590e5174a30eced3c2fe911f49d70) Co-authored-by: Benjamin Peterson <benjamin@python.org>
* bpo-32087: Doc: Make "deprecated-removed" directive translatable (GH-4473)Miss Islington (bot)2018-02-232-5/+8
| | | | | (cherry picked from commit 0febc053736112d7bb9081742b3ac0ece7b973e7) Co-authored-by: cocoatomo <cocoatomo77@gmail.com>
* Update Doc build for split off of 3.7 branchNed Deily2018-02-032-2/+4
|
* bpo-31766: restore 3.5 to docs version switchers (#3970)Ned Deily2017-10-122-1/+3
|
* Remove retired and security branches from active docs (#3880)Ned Deily2017-10-042-4/+0
|
* [3.6] Docs: correct hashlib.blake2 keyed hashing example (bpo-31560)Miss Islington (bot)2017-09-231-3/+0
| | | (cherry picked from commit aecc08ac3a14a73aa353655bb65ff8d965e935a0)
* Blurbify 3.6. (#3287)larryhastings2017-09-041-1/+0
| | | Blurbify 3.6.
* Fix broken `Show Source` links on documentation pages (GH-3113) (GH-3125)Mariatta2017-08-181-1/+1
| | | | | | The `Show Source` was broken because of a change made in sphinx 1.5.1 In Sphinx 1.4.9, the sourcename was "index.txt". In Sphinx 1.5.1+, it is now "index.rst.txt". (cherry picked from commit b9ff498793611d1c6a9b99df464812931a1e2d69)
* Update the language selection in the docs language switch. (GH-3114) (#3115)Julien Palard2017-08-171-1/+1
| | | | Change the option for `Français` into `French` to be consistent with the other language selections that are already in English. (cherry picked from commit b616b972999cdd5fe54ef8a43c131a27ca538dee)
* bpo-31159: fix language switch regex on unknown yet built languages. … (#3051)Julien Palard2017-08-101-2/+3
| | | | | | | | | | | | | | * bpo-31159: fix language switch regex on unknown yet built languages. (#3039) This fix a regex issue (a missing non-matching group around an 'or' list) and the specific possible case where a translation is built but not yet in known by the picker, but not explicitly listing possible languages in the regex. (cherry picked from commit 122081deef86174beee965be1207fa46ea23533d) * bpo-31149: Doc: Add Japanese to the language switcher. (#3028) (cherry picked from commit c82b7f332aff606af6c9c163da75f1e86514125e)
* bpo-31045: Language switch (#2652) (#3023)Julien Palard2017-08-083-69/+149
| | | | | | | | | | | | | | | | | | | * 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. (cherry picked from commit dff9b5f9d62aa0b23f8a255867d09d11890efd1b)
* Update doc download files size estimates. (#2771) (#2772)Ned Deily2017-07-201-9/+9
|
* bpo-30939: Avoid Sphinx deprecation warning in docs build. (#2721) (#2722)Ned Deily2017-07-151-1/+1
| | | (cherry picked from commit 50f58163a69abe2f35e91044d1df165ee7bdbb42)
* [3.6] bpo-30380: Fix Sphinx 1.6.1 warnings. (GH-1613) (#1614)Serhiy Storchaka2017-05-161-4/+3
| | | | | | | | | * Use explicit numbering for footnotes referred by explicit number. * Restore missed footnote reference in stdtypes.rst. * Fix literal strings formatting in howto/urllib2.rst. * Update susp-ignored.csv for zipapp.rst. * Fix suspicious mark up in Misc/NEWS.. (cherry picked from commit d97b7dc94b19063f0589d401bdc4aaadc7030762)
* bpo-30021: Add examples for re.escape(). (#1048) (#1115)Serhiy Storchaka2017-04-131-0/+2
| | | | | And fix the parameter name. (cherry picked from commit 8fc7bc2b7631ee819ee614e47b6f44bacebe1574)
* Treat Sphinx warnings as errors (GH-832) (GH-834)Zachary Ware2017-03-271-2/+0
| | | | | | | | * Treat Sphinx warnings as errors (GH-832) (cherry picked from commit 334e9ec938ea9876baadef15edb135d6d2aff30c) * Remove unused suspicious rules
* bpo-29888: Fix the link referring to the "Python download page" (GH-824) ↵Ned Deily2017-03-261-1/+1
| | | | | (GH-826) (cherry picked from commit f8beb9831acd5cf80b9c56aea5864e16118c5400)
* bpo-28331: fix impl-detail label is removed when content is translated. (GH-769)INADA Naoki2017-03-222-2/+18
| | | (cherry picked from commit c351ce6a2c923c5016e48ecbf7b1e4833031d154)
* bpo-29520: doc: fix deprecation warning from 'defindex' template (GH-178)INADA Naoki2017-02-201-2/+9
|
* [backport to 3.6] bpo-28929: Link the documentation to its source file on ↵Mariatta2017-02-121-2/+5
| | | | | | | | | | | | | GitHub (#37) * bpo-28929: Link the documentation to its source file on GitHub Change the documentation's `Show Source` link on the left menu to GitHub source file. (cherry picked from commit 23bafa294c75c20cb85ae5d97d7571a3a0ad8dd3) * remove if statement
* [backport to 3.6] Support "bpo-" in Misc/NEWS (#42)Mariatta2017-02-121-4/+4
| | | | (cherry picked from commit 79ab8be05fb4ffb5c258d2ca49be5fc2d4880431)
* Merge issue #26355 fix from Python 3.5Nick Coghlan2017-02-091-0/+1
|\
| * Issue #26355: Specify canonical URLs in docs pagesNick Coghlan2017-02-091-0/+1
| | | | | | | | | | | | | | Add canonical header link on each page to corresponding major version of the documentation. Patch by Matthias Bussonnier.
* | Issues #29349: Merge Py 2.6+ compatibility from 3.5Martin Panter2017-01-291-0/+2
|\ \ | |/
| * Issue #29349: Use __future__ print_function; Sphinx may use Python 2.6+Martin Panter2017-01-291-0/+2
| |
* | Issues #29349: Merge Py 2 fix 3.5Martin Panter2017-01-291-2/+2
|\ \ | |/
| * Issue #29349: Fix Python 2 syntax in documentation build codeMartin Panter2017-01-291-2/+2
| |
| * Update documentation index sidebar for 3.6.0 release.Ned Deily2016-12-231-1/+1
| |
* | Issue #29062: Doc: Fix make suspiciousINADA Naoki2017-01-141-4/+4
| |
* | Issue #28900: Update documentation sidebar for 3.6.0rc.Ned Deily2016-12-081-1/+2
|\ \ | |/
| * Issue #28900: Update documentation sidebar for 3.6.0rc.Ned Deily2016-12-081-1/+2
| |
* | Ignore newly added suspicious lineZachary Ware2016-11-181-0/+1
| |
* | Ignore harmless suspicious markupZachary Ware2016-10-261-0/+1
| |
* | Issue #28251: Improvements to help manuals on Windows.Steve Dower2016-09-231-1/+5
|\ \ | |/
| * Issue #28251: Improvements to help manuals on Windows.Steve Dower2016-09-231-1/+5
| |
* | Make 3.7 the current dev version in the html version of the docs.Ned Deily2016-09-201-3/+2
|\ \ | |/
| * Make 3.7 the current dev version in the html version of the docs.Ned Deily2016-09-201-3/+2
| |
* | Change SOURCE_URI for pydoc source URLs to point to 3.6 branchNed Deily2016-09-121-1/+1
| |
* | Add some additional suspicious exemption rules for recent doc changes.Ned Deily2016-09-111-0/+25
| |
* | Actually fix suspicious markup, I ignored it too readilyZachary Ware2016-09-101-1/+0
| |
* | Remove line numbers from suspicious rulesZachary Ware2016-09-101-16/+16
| |
* | Fix suspicious markupZachary Ware2016-09-091-0/+4
| |