~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to docs/en/theme/lm-basic (copy)/changes/versionchanges.html

  • Committer: Cecilio Salmeron
  • Date: 2012-11-25 14:37:10 UTC
  • Revision ID: s.cecilios@gmail.com-20121125143710-ohccpjc3pk7ut3u1
Added script po-statistics.pl to maintain website translations page. * Restored exercise modes (learning, practise, exam and quiz). * Added DlgExerciseMode. * Restored right/wrong sounds when answering an exercise. * Fixed bug #1074909. * Fixed bug #1082637.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>
 
4
{% endfor %}</ul>
 
5
{% endmacro -%}
 
6
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 
7
  "http://www.w3.org/TR/html4/loose.dtd">
 
8
<html>
 
9
  <head>
 
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 }} &mdash; {{ docstitle }}{% endtrans %}</title>
 
13
  </head>
 
14
  <body>
 
15
    <div class="document">
 
16
      <div class="body">
 
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) }}
 
22
    {% endfor %}
 
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) }}
 
29
    {% endfor %}
 
30
      </div>
 
31
    </div>
 
32
  </body>
 
33
</html>