mirror of
https://github.com/status-im/EIPs.git
synced 2025-01-10 14:56:01 +00:00
e8b64f61e1
* Add new two-week review process to EIPs * Add ACCEPTED status, thanks @arachnid * Use last call, thanks @arachnid * Add other authors * Re-add "request to merge" * Add accepted as draft * Match statuses to words used in text * Match whitespace * Add last call RSS * add RSS link to EIP1 * Update deferred wording * Provide * "EIP authors can request" * Correct HTML error * review-period last date only * Briefer review end date name * alse * Fully document statuses and transitions * One implementation for draft * Focus on the goal * Use prior definition of final * Use Accepted * Use Accepted * PR is the preferred mechanism to request status changes * hide markdown formatting
23 lines
928 B
XML
23 lines
928 B
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" />
|
|
{% assign eips = site.pages|where:"status","Last Call"|sort:"eip" %}
|
|
{% for page in eips %}
|
|
<item>
|
|
<title>{{ page.title | xml_escape }}</title>
|
|
<description>{{ page.content | xml_escape }}</description>
|
|
<pubDate>{{ page.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
|
|
<link>{{ site.url }}/{{ page.url }}</link>
|
|
<guid isPermaLink="true">{{ site.url }}/{{ page.url }}</guid>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|