2008-03-09 16:32:24 -05:00
|
|
|
{% extends "!layout.html" %}
|
|
|
|
|
2009-11-16 07:48:52 -06:00
|
|
|
{% block extrahead %}
|
2009-12-29 05:32:42 -06:00
|
|
|
{{ super() }}
|
2009-12-28 10:16:19 -06:00
|
|
|
{%- if not embedded %}
|
2009-11-16 07:48:52 -06:00
|
|
|
<style type="text/css">
|
|
|
|
table.right { float: right; margin-left: 20px; }
|
|
|
|
table.right td { border: 1px solid #ccc; }
|
|
|
|
</style>
|
2009-12-29 05:32:42 -06:00
|
|
|
{%- endif %}
|
2009-11-16 07:48:52 -06:00
|
|
|
{% endblock %}
|
|
|
|
|
2008-03-09 16:32:24 -05:00
|
|
|
{% block rootrellink %}
|
2009-02-22 07:46:47 -06:00
|
|
|
<li><a href="{{ pathto('index') }}">Sphinx home</a> | </li>
|
2010-01-14 14:33:30 -06:00
|
|
|
<li><a href="{{ pathto('contents') }}">Documentation</a>
|
|
|
|
»</li>
|
2008-03-09 16:32:24 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
2009-01-10 13:45:45 -06:00
|
|
|
{% block header %}
|
2008-03-09 16:32:24 -05:00
|
|
|
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
|
Merged revisions 64703-64708,64710-64712 via svnmerge from
svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x
........
r64703 | georg.brandl | 2008-07-04 19:24:00 +0200 (Fri, 04 Jul 2008) | 2 lines
Fix linkcheck builder crash for malformed URLs.
........
r64704 | georg.brandl | 2008-07-04 19:32:40 +0200 (Fri, 04 Jul 2008) | 2 lines
Add 0.5 compatibility for more admonitions.
........
r64705 | georg.brandl | 2008-07-04 19:38:37 +0200 (Fri, 04 Jul 2008) | 2 lines
Remove silly "rubric" restriction in latex writer.
........
r64706 | georg.brandl | 2008-07-04 19:41:44 +0200 (Fri, 04 Jul 2008) | 2 lines
Document rubric:: Footnotes behavior.
........
r64707 | georg.brandl | 2008-07-04 19:45:28 +0200 (Fri, 04 Jul 2008) | 2 lines
Fix XHTML.
........
r64708 | georg.brandl | 2008-07-04 19:50:56 +0200 (Fri, 04 Jul 2008) | 2 lines
More XHTML fixes.
........
r64710 | georg.brandl | 2008-07-04 19:59:56 +0200 (Fri, 04 Jul 2008) | 2 lines
Copy the html_logo to the output static dir.
........
r64711 | georg.brandl | 2008-07-04 20:37:43 +0200 (Fri, 04 Jul 2008) | 2 lines
Fix latex code for module names with underscores that have platforms.
........
r64712 | georg.brandl | 2008-07-04 20:46:40 +0200 (Fri, 04 Jul 2008) | 2 lines
Fix a crash with nonlocal image URIs.
........
2008-07-04 13:49:39 -05:00
|
|
|
<img src="{{ pathto("_static/sphinx.png", 1) }}" alt="Sphinx logo" />
|
2008-03-09 16:32:24 -05:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|