DCIPs/rss/last-call.xml

34 lines
1.6 KiB
XML
Raw Normal View History

---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
2023-04-24 18:41:20 +00:00
<title>Decentralized Climate DCIPs - Last Call Review</title>
2023-04-17 17:13:40 +00:00
<description>All DCIPs which are in the two-week "last call" status, please help review these and provide your feedback!</description>
<link>{{ site.url }}</link>
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
2023-04-17 17:13:40 +00:00
{% assign dcips = site.pages | sort: 'dcip' %}
{% for dcip in dcips %}
{% if dcip.status == "Last Call" %}
{% capture description %}
2023-04-17 17:13:40 +00:00
<p><strong>DCIP #{{ dcip.dcip }} - {{dcip.title }}</strong> is in Last Call status. It is authored by {{ dcip.author }} and was originally created {{ dcip.created }}. It is in the {{ dcip.category }} category of type {{ dcip.type }}. Please review and note any changes that should block acceptance.</p>
{% if dcip.discussions-to %}
<p>The author has requested that discussions happen at the following URL: <a href="{{ dcip.discussions-to }}">{{ dcip.discussions-to }}</a></p>
{% endif %}
<hr />
2023-04-17 17:13:40 +00:00
{{ dcip.content }}
{% endcapture %}
<item>
2023-04-17 17:13:40 +00:00
<title>{{ dcip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
2023-04-17 17:13:40 +00:00
<pubDate>{{ dcip.created | date_to_rfc822 }}</pubDate>
<link>{{ site.url }}/{{ dcip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ dcip.url }}</guid>
</item>
{% endif %}
{% endfor %}
</channel>
</rss>