EIPs/last-call.xml

36 lines
1.7 KiB
XML

---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Ethereum EIPs Last Call Review</title>
<description>All EIPs 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 }}/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% for eip in eips %}
{% if eip.status == "Last Call" %}
{% capture description %}
<p><strong>EIP #{{ eip.eip }} - {{eip.title }}</strong> is in Last Call status. It is authored by {{ eip.author }} and was originally created {{ eip.created }}. It is in the {{ eip.category }} category of type {{ eip.type }}. Please review and note any changes that should block acceptance.</p>
{% if eip.discussions-to %}
<p>The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}</p>
{% else %}
<p>Please visit the [ethereum/EIPs issues to comment](https://github.com/ethereum/EIPs/issues/{{eip.eip}}).</p>
{% endif %}
<hr />
{{ eip.content }}
{% endcapture %}
<item>
<title>{{ eip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
<pubDate>{{ eip.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>{{ site.url }}/{{ eip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid>
</item>
{% endif %}
{% endfor %}
</channel>
</rss>