diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2017-02-09 15:09:03 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2017-02-09 15:09:03 (GMT) |
commit | c7a24a7330bc18b06bdcb76ab2141d5bbf41372c (patch) | |
tree | efdd92f4d7825babfde0600de79426b526f48f35 | |
parent | 12c5838dae390793009d73ba486b6b2be18cfd43 (diff) | |
parent | e1857579f8aefee8e3b671af422a5e728f6f6ce0 (diff) | |
download | cpython-c7a24a7330bc18b06bdcb76ab2141d5bbf41372c.zip cpython-c7a24a7330bc18b06bdcb76ab2141d5bbf41372c.tar.gz cpython-c7a24a7330bc18b06bdcb76ab2141d5bbf41372c.tar.bz2 |
Merge issue #26355 fix from 3.6
-rw-r--r-- | Doc/tools/templates/layout.html | 1 | ||||
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
3 files changed, 5 insertions, 0 deletions
diff --git a/Doc/tools/templates/layout.html b/Doc/tools/templates/layout.html index 5c180e7..640d8b3 100644 --- a/Doc/tools/templates/layout.html +++ b/Doc/tools/templates/layout.html @@ -38,6 +38,7 @@ {% endblock %} {% block extrahead %} <link rel="shortcut icon" type="image/png" href="{{ pathto('_static/py.png', 1) }}" /> + <link rel="canonical" href="https://docs.python.org/3/{{pagename}}.html" /> {% if builder != "htmlhelp" %} {% if not embedded %}<script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script>{% endif %} {% if versionswitcher is defined and not embedded %}<script type="text/javascript" src="{{ pathto('_static/version_switch.js', 1) }}"></script>{% endif %} @@ -220,6 +220,7 @@ Alastair Burt Tarn Weisner Burton Lee Busby Katherine Busch +Matthias Bussonnier Ralph Butler Laurent De Buyst Zach Byrne @@ -686,6 +686,9 @@ C API Documentation ------------- +- Issue #26355: Add canonical header link on each page to corresponding major + version of the documentation. Patch by Matthias Bussonnier. + - Issue #29349: Fix Python 2 syntax in code for building the documentation. - Issue #23722: The data model reference and the porting section in the |