diff options
| author | Georg Brandl <georg@python.org> | 2010-04-22 23:20:47 +0000 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-04-22 23:20:47 +0000 |
| commit | 9b9e0a1b4b0a55d06c12cfda64ef5b05a68bf6cf (patch) | |
| tree | cc774e266a87a1f4807a62d711a3f03b3287de34 /Doc/tools | |
| parent | 0b79b76c2b8a4d4de7f29b8402def74fd63be706 (diff) | |
| download | cpython-git-9b9e0a1b4b0a55d06c12cfda64ef5b05a68bf6cf.tar.gz | |
Merged revisions 80390 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r80390 | georg.brandl | 2010-04-23 01:20:19 +0200 (Fr, 23 Apr 2010) | 9 lines
Merged revisions 80388 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80388 | georg.brandl | 2010-04-23 00:15:33 +0200 (Fr, 23 Apr 2010) | 1 line
Add "report a bug" links in some prominent places. Make it clear that doc bugs can be mailed to docs@python.org. Clarify tracker usage.
........
................
Diffstat (limited to 'Doc/tools')
| -rw-r--r-- | Doc/tools/sphinxext/indexsidebar.html | 1 | ||||
| -rw-r--r-- | Doc/tools/sphinxext/layout.html | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Doc/tools/sphinxext/indexsidebar.html b/Doc/tools/sphinxext/indexsidebar.html index 8724c7dbbf..b52226e107 100644 --- a/Doc/tools/sphinxext/indexsidebar.html +++ b/Doc/tools/sphinxext/indexsidebar.html @@ -19,4 +19,5 @@ <li><a href="http://wiki.python.org/moin/PythonBooks">Book List</a></li> <li><a href="http://www.python.org/doc/av/">Audio/Visual Talks</a></li> <li><a href="http://www.python.org/doc/other/">Other Doc Collections</a></li> + <li><a href="{{ pathto('bugs') }}">Report a Bug</a></li> </ul> diff --git a/Doc/tools/sphinxext/layout.html b/Doc/tools/sphinxext/layout.html index 42e18a402e..a256181130 100644 --- a/Doc/tools/sphinxext/layout.html +++ b/Doc/tools/sphinxext/layout.html @@ -16,6 +16,18 @@ <a href="http://www.python.org/psf/donations/">Please donate.</a> <br /> Last updated on {{ last_updated|e }}. + <a href="{{ pathto('bugs') }}">Found a bug</a>? + <br /> Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version|e }}. </div> {% endblock %} +{% block sidebarsourcelink %} +{%- if show_source and has_source and sourcename %} +<h3>{{ _('This Page') }}</h3> +<ul class="this-page-menu"> + <li><a href="{{ pathto('bugs') }}">Report a Bug</a></li> + <li><a href="{{ pathto('_sources/' + sourcename, true)|e }}" + rel="nofollow">Show Source</a></li> +</ul> +{%- endif %} +{% endblock %} |
