Skip to content

Commit

Permalink
Website: more rss feeds (ethereum#6579)
Browse files Browse the repository at this point in the history
* add rss feeds

* Update rss/erc-last-call.xml

Co-authored-by: Sam Wilson <[email protected]>

* update anchor and titles

---------

Co-authored-by: Sam Wilson <[email protected]>
  • Loading branch information
2 people authored and axelcabee committed May 6, 2023
1 parent a03afaf commit 54ac09f
Show file tree
Hide file tree
Showing 6 changed files with 142 additions and 1 deletion.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ <h1 class="page-heading">EIPs
<a href="https://discord.io/EthCatHerders"><img src="https://dcbadge.vercel.app/api/server/Nz6rtfJ8Cu?style=flat" alt="Discord channel for ECH eip-editer"></a>
<a href="https://discord.gg/EVTQ9crVgQ"><img src="https://dcbadge.vercel.app/api/server/EVTQ9crVgQ?style=flat" alt="Discord channel for Eth R&D eip-editing"></a>
<a href="https://discord.gg/mRzPXmmYEA"><img src="https://dcbadge.vercel.app/api/server/mRzPXmmYEA?style=flat" alt="Discord server for discussions about proposals that impact Ethereum wallets"></a>
<a href="rss/all.xml"><img src="https://img.shields.io/badge/rss-Everything-red.svg" alt="RSS"></a>
<a href="rss/last-call.xml"><img src="https://img.shields.io/badge/rss-Last Calls-red.svg" alt="RSS"></a>
<a href="rss/nonerc.xml"><img src="https://img.shields.io/badge/rss-All except ERC-red.svg" alt="RSS"></a>
<a href="https://eepurl.com/ikqNIP"><img src="https://img.shields.io/badge/-email%20alerts-red.svg" alt="RSS"></a>
</h1>
<p>Ethereum Improvement Proposals (EIPs) describe standards for the Ethereum platform, including core protocol specifications, client APIs, and contract standards. Network upgrades are discussed separately in the <a target="_blank" href="https://github.com/ethereum/pm/">Ethereum Project Management</a> repository.</p>

Expand Down
35 changes: 35 additions & 0 deletions rss/erc-last-call.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
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 "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>
{% assign eips = site.pages | sort: 'eip' %}
{% for eip in eips %}
{% if eip.category == "ERC" %}
{% 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: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p>
{% endif %}
<hr />
{{ eip.content }}
{% endcapture %}
<item>
<title>{{ eip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate>
<link>{{ site.url }}/{{ eip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid>
</item>
{% endif %}
{% endif %}
{% endfor %}
</channel>
</rss>
33 changes: 33 additions & 0 deletions rss/erc.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Ethereum ERCs</title>
<description>All updates for ERCs</description>
<link>{{ site.url }}</link>
<atom:link href="{{ site.url }}/rss/erc.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% for eip in eips %}
{% if eip.category == "ERC" %}
{% capture description %}
<p><strong>EIP #{{ eip.eip }} - {{eip.title }}</strong> is in the {{ eip.category }} category of type {{ eip.type }} and was just updated.</p>
{% if eip.discussions-to %}
<p>The author has requested that discussions happen at the following URL: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p>
{% endif %}
<hr />
{{ eip.content }}
{% endcapture %}
<item>
<title>{{ eip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate>
<link>{{ site.url }}/{{ eip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid>
</item>
{% endif %}
{% endfor %}
</channel>
</rss>
2 changes: 1 addition & 1 deletion rss/last-call.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ layout: null
{% 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>
<p>The author has requested that discussions happen at the following URL: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p>
{% endif %}
<hr />
{{ eip.content }}
Expand Down
35 changes: 35 additions & 0 deletions rss/nonerc-last-call.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
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 }}/rss/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% for eip in eips %}
{% unless eip.category == "ERC" %}
{% 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: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p>
{% endif %}
<hr />
{{ eip.content }}
{% endcapture %}
<item>
<title>{{ eip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate>
<link>{{ site.url }}/{{ eip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid>
</item>
{% endif %}
{% endunless %}
{% endfor %}
</channel>
</rss>
35 changes: 35 additions & 0 deletions rss/nonerc.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
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</title>
<description>All EIPs that are not ERCs</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>
{% assign eips = site.pages | sort: 'eip' %}
{% for eip in eips %}
{% unless eip.category == "ERC" %}
{% 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: <a href="{{ eip.discussions-to }}">{{ eip.discussions-to }}</a></p>
{% endif %}
<hr />
{{ eip.content }}
{% endcapture %}
<item>
<title>{{ eip.title | xml_escape }}</title>
<description>{{ description | xml_escape }}</description>
<pubDate>{{ eip.created | date_to_rfc822 }}</pubDate>
<link>{{ site.url }}/{{ eip.url }}</link>
<guid isPermaLink="true">{{ site.url }}/{{ eip.url }}</guid>
</item>
{% endif %}
{% endunless %}
{% endfor %}
</channel>
</rss>

0 comments on commit 54ac09f

Please sign in to comment.