1
{% macro entries(changes) %}
2
<ul>{% for entry, docname, lineno in changes %}
3
<li><a href="rst/{{ docname }}.html#L{{ lineno-10 }}" target="src">{{ entry }}</a></li>
6
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
7
"http://www.w3.org/TR/html4/loose.dtd">
10
<link rel="stylesheet" href="default.css">
11
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
12
<title>{% trans version=version|e, docstitle=docstitle|e %}Changes in Version {{ version }} — {{ docstitle }}{% endtrans %}</title>
15
<div class="document">
17
<h1>{% trans version=version|e %}Automatically generated list of changes in version {{ version }}{% endtrans %}</h1>
18
<h2>{{ _('Library changes') }}</h2>
19
{% for modname, changes in libchanges %}
20
<h4>{{ modname }}</h4>
21
{{ entries(changes) }}
23
<h2>{{ _('C API changes') }}</h2>
24
{{ entries(apichanges) }}
25
<h2>{{ _('Other changes') }}</h2>
26
{% for (fn, title), changes in otherchanges %}
27
<h4>{{ title }} <span style="font-size: 50%">({{ fn }})</span></h4>
28
{{ entries(changes) }}