summaryrefslogtreecommitdiff
path: root/templates/pages/changelog.mako
diff options
context:
space:
mode:
Diffstat (limited to 'templates/pages/changelog.mako')
-rw-r--r--templates/pages/changelog.mako19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/pages/changelog.mako b/templates/pages/changelog.mako
new file mode 100644
index 0000000..188b528
--- /dev/null
+++ b/templates/pages/changelog.mako
@@ -0,0 +1,19 @@
+<%!
+ title = "Changelog"
+ uses_toc = True
+%>
+
+<%inherit file="/page.mako" />
+<%def name="preface()">
+ <p>
+ This is a condensed changelog (starting with version <a href="#0.8.5">0.8.5</a>) for portato. The complete one can be found in the <a href="http://git.zakarum.de/portato.git/tree/doc/NEWS">sources</a>.
+ </p>
+
+ <p> <strong>Note:</strong> Releases with a forth version number (e.g. <em>0.9.0.2</em>) is a bugfix release and therefore not mentioned extra. From <a href="#0.10">0.10</a> onwards, the third part is omitted. This means, that now everything with a third number is a bugfix release.
+ </p>
+</%def>
+
+% for html, name in h.getChangelogs("/changelogs"):
+ <%self:h2 tag="h3">${name}</%self:h2>
+ ${html}
+% endfor