Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Website: more rss feeds #6579

Merged
merged 3 commits into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Pandapip1 marked this conversation as resolved.
Show resolved Hide resolved
</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>