(original) (raw)
changeset: 106473:c63b09833141 branch: 3.5 parent: 106463:514571268743 user: Nick Coghlan ncoghlan@gmail.com date: Thu Feb 09 16:03:59 2017 +0100 files: Doc/tools/templates/layout.html Misc/ACKS Misc/NEWS description: Issue #26355: Specify canonical URLs in docs pages Add canonical header link on each page to corresponding major version of the documentation. Patch by Matthias Bussonnier. diff -r 514571268743 -r c63b09833141 Doc/tools/templates/layout.html --- a/Doc/tools/templates/layout.html Tue Feb 07 11:27:09 2017 +0300 +++ b/Doc/tools/templates/layout.html Thu Feb 09 16:03:59 2017 +0100 @@ -38,6 +38,7 @@ {% endblock %} {% block extrahead %} + {% if builder != "htmlhelp" %} {% if not embedded %}{% endif %} {% if versionswitcher is defined and not embedded %}{% endif %} diff -r 514571268743 -r c63b09833141 Misc/ACKS --- a/Misc/ACKS Tue Feb 07 11:27:09 2017 +0300 +++ b/Misc/ACKS Thu Feb 09 16:03:59 2017 +0100 @@ -218,6 +218,7 @@ Tarn Weisner Burton Lee Busby Katherine Busch +Matthias Bussonnier Ralph Butler Laurent De Buyst Zach Byrne diff -r 514571268743 -r c63b09833141 Misc/NEWS --- a/Misc/NEWS Tue Feb 07 11:27:09 2017 +0300 +++ b/Misc/NEWS Thu Feb 09 16:03:59 2017 +0100 @@ -70,6 +70,9 @@ 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. /ncoghlan@gmail.com