dash-docs/en/rss/releases.rss
David A. Harding cbebe461ff Releases: Variablize Release Notes
Add additional variables to the release note files to allow setting the
version number and date.  The version number is required, and can be
used to automatically set the release notes title.  The date is optional
and can be set hours/days after the release.

Additionally, a Makefile test is added that checks whether the download
files exist on the Bitcoin.org server.  This can help prevent creating a
broken Download page.

* Set variables for all previous releases

* Document variables in README.md

* Update code and templates to use variables

* Add the Download page links to the "dl" CSS class. Also add newlines
  to make the HTML a bit easier to parse using sed

* Add a new Liquid plugin to print warnings. This is used to print a
  non-error warning if any release is created without the optional date
2015-02-27 08:15:50 -05:00

30 lines
1.2 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Bitcoin Core releases</title>
<link>https://bitcoin.org/en/version-history</link>
<description>This RSS feed allows to follow Bitcoin Core new releases.</description>
<image>
<title>Bitcoin Core releases</title>
<url>https://bitcoin.org/img/icons/logo_rss.png</url>
<link>https://bitcoin.org/en/version-history</link>
</image>
{% filter_for p in site.pages reversed sort_by:versionint category:release %}
<item>
<title>{{ p.title | htmlescape }}</title>
<link>https://bitcoin.org{{ p.url | replace:'.html','' }}</link>
<guid>https://bitcoin.org{{ p.url | replace:'.html','' }}</guid>
{% if p.optional_date %}
<pubDate>{{ p.optional_date | date: "%a, %d %b %Y" }} 00:00:00 GMT</pubDate>
{% else %}
<pubDate>{{ site.time | date: "%a, %d %b %Y" }} 00:00:00 GMT</pubDate>
{% warn "This release doesn't have optional_date set" %}
{% endif %}
</item>
{% endfilter_for %}
</channel>
</rss>